;;; loaddefs.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- ;; Generated by the `loaddefs-generate' function. ;; This file is part of GNU Emacs. ;;; Commentary: ;; This file will be copied to ldefs-boot.el and checked in ;; periodically. ;;; Code: ;;; Generated autoloads from play/5x5.el (autoload '5x5 "5x5" "\ Play 5x5. The object of 5x5 is very simple, by moving around the grid and flipping squares you must fill the grid. 5x5 keyboard bindings are: \\<5x5-mode-map> Flip \\[5x5-flip-current] Move up \\[5x5-up] Move down \\[5x5-down] Move left \\[5x5-left] Move right \\[5x5-right] Start new game \\[5x5-new-game] New game with random grid \\[5x5-randomize] Random cracker \\[5x5-crack-randomly] Mutate current cracker \\[5x5-crack-mutating-current] Mutate best cracker \\[5x5-crack-mutating-best] Mutate xor cracker \\[5x5-crack-xor-mutate] Solve with Calc \\[5x5-solve-suggest] Rotate left Calc Solutions \\[5x5-solve-rotate-left] Rotate right Calc Solutions \\[5x5-solve-rotate-right] Quit current game \\[5x5-quit-game] (fn &optional SIZE)" t) (autoload '5x5-crack-randomly "5x5" "\ Attempt to crack 5x5 using random solutions." t) (autoload '5x5-crack-mutating-current "5x5" "\ Attempt to crack 5x5 by mutating the current solution." t) (autoload '5x5-crack-mutating-best "5x5" "\ Attempt to crack 5x5 by mutating the best solution." t) (autoload '5x5-crack-xor-mutate "5x5" "\ Attempt to crack 5x5 by xoring the current and best solution. Mutate the result." t) (autoload '5x5-crack "5x5" "\ Attempt to find a solution for 5x5. `5x5-crack' takes the argument BREEDER which should be a function that takes two parameters, the first will be a grid vector array that is the current solution and the second will be the best solution so far. The function should return a grid vector array that is the new solution. (fn BREEDER)" t) (register-definition-prefixes "5x5" '("5x5-")) ;;; Generated autoloads from vc/add-log.el (put 'change-log-default-name 'safe-local-variable #'string-or-null-p) (defvar add-log-current-defun-function nil "\ If non-nil, function to guess name of surrounding function. It is called by `add-log-current-defun' with no argument, and should return the function's name as a string, or nil if point is outside a function.") (custom-autoload 'add-log-current-defun-function "add-log" t) (defvar add-log-full-name nil "\ Full name of user, for inclusion in ChangeLog daily headers. This defaults to the value returned by the function `user-full-name'.") (custom-autoload 'add-log-full-name "add-log" t) (defvar add-log-mailing-address nil "\ Email addresses of user, for inclusion in ChangeLog headers. This defaults to the value of `user-mail-address'. In addition to being a simple string, this value can also be a list. All elements will be recognized as referring to the same user; when creating a new ChangeLog entry, one element will be chosen at random.") (custom-autoload 'add-log-mailing-address "add-log" t) (autoload 'prompt-for-change-log-name "add-log" "\ Prompt for a change log name.") (autoload 'find-change-log "add-log" "\ Find a change log file for \\[add-change-log-entry] and return the name. Optional arg FILE-NAME specifies the file to use. If FILE-NAME is nil, use the value of `change-log-default-name'. If `change-log-default-name' is nil, behave as though it were \"ChangeLog\" (or whatever we use on this operating system). If `change-log-default-name' contains a leading directory component, then simply find it in the current directory. Otherwise, search in the current directory and its successive parents for a file so named. Stop at the first such file that exists (or has a buffer visiting it), or the first directory that contains any of `change-log-directory-files'. If no match is found, use the current directory. To override the choice of this function, simply create an empty ChangeLog file first by hand in the desired place. Once a file is found, `change-log-default-name' is set locally in the current buffer to the complete file name. Optional arg BUFFER-FILE overrides `buffer-file-name'. (fn &optional FILE-NAME BUFFER-FILE)") (autoload 'add-change-log-entry "add-log" "\ Find ChangeLog buffer, add an entry for today and an item for this file. Optional arg WHOAMI (interactive prefix) non-nil means prompt for user name and email (stored in `add-log-full-name' and `add-log-mailing-address'). Second arg CHANGELOG-FILE-NAME is the file name of the change log. If nil, use the value of `change-log-default-name'. If the file thus named exists, it is used for the new entry. If it doesn't exist, it is created, unless `add-log-dont-create-changelog-file' is t, in which case a suitably named buffer that doesn't visit any file is used for keeping entries pertaining to CHANGELOG-FILE-NAME's directory. Third arg OTHER-WINDOW non-nil means visit in other window. Fourth arg NEW-ENTRY non-nil means always create a new entry at the front; never append to an existing entry. Option `add-log-keep-changes-together' otherwise affects whether a new entry is created. Fifth arg PUT-NEW-ENTRY-ON-NEW-LINE non-nil means that if a new entry is created, put it on a new line by itself, do not put it after a comma on an existing line. Option `add-log-always-start-new-record' non-nil means always create a new record, even when the last record was made on the same date and by the same person. The change log file can start with a copyright notice and a copying permission notice. The first blank line indicates the end of these notices. Today's date is calculated according to `add-log-time-zone-rule' if non-nil, otherwise in local time. (fn &optional WHOAMI CHANGELOG-FILE-NAME OTHER-WINDOW NEW-ENTRY PUT-NEW-ENTRY-ON-NEW-LINE)" t) (autoload 'add-change-log-entry-other-window "add-log" "\ Find change log file in other window and add entry and item. This is just like `add-change-log-entry' except that it displays the change log file in another window. (fn &optional WHOAMI FILE-NAME)" t) (autoload 'change-log-mode "add-log" "\ Major mode for editing change logs; like Indented Text mode. Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74. New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window]. Each entry behaves as a paragraph, and the entries for one day as a page. Runs `change-log-mode-hook'. \\{change-log-mode-map} (fn)" t) (autoload 'add-log-current-defun "add-log" "\ Return name of function definition point is in, or nil. Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...), Texinfo (@node titles) and Perl. Other modes are handled by a heuristic that looks in the 10K before point for uppercase headings starting in the first column or identifiers followed by `:' or `='. See variables `add-log-current-defun-header-regexp' and `add-log-current-defun-function'. Has a preference of looking backwards.") (autoload 'change-log-merge "add-log" "\ Merge the contents of change log file OTHER-LOG with this buffer. Both must be found in Change Log mode (since the merging depends on the appropriate motion commands). OTHER-LOG can be either a file name or a buffer. Entries are inserted in chronological order. Both the current and old-style time formats for entries are supported. (fn OTHER-LOG)" t) (register-definition-prefixes "add-log" '("add-log-" "change-log-")) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action 'warn "\ Defines what to do with redefinitions during Advice de/activation. Redefinition occurs if a previously activated function that already has an original definition associated with it gets redefined and then de/activated. In such a case we can either accept the current definition as the new original definition, discard the current definition and replace it with the old original, or keep it and raise an error. The values `accept', `discard', `error' or `warn' govern what will be done. `warn' is just like `accept' but it additionally prints a warning message. All other values will be interpreted as `error'.") (custom-autoload 'ad-redefinition-action "advice" t) (defvar ad-default-compilation-action 'maybe "\ Defines whether to compile advised definitions during activation. A value of `always' will result in unconditional compilation, `never' will always avoid compilation, `maybe' will compile if the byte-compiler is already loaded, and `like-original' will compile if the original definition of the advised function is compiled or a built-in function. Every other value will be interpreted as `maybe'. This variable will only be considered if the COMPILE argument of `ad-activate' was supplied as nil.") (custom-autoload 'ad-default-compilation-action "advice" t) (autoload 'ad-enable-advice "advice" "\ Enables the advice of FUNCTION with CLASS and NAME. (fn FUNCTION CLASS NAME)" t) (autoload 'ad-disable-advice "advice" "\ Disable the advice of FUNCTION with CLASS and NAME. (fn FUNCTION CLASS NAME)" t) (autoload 'ad-add-advice "advice" "\ Add a piece of ADVICE to FUNCTION's list of advices in CLASS. ADVICE has the form (NAME PROTECTED ENABLED DEFINITION), where NAME is the advice name; PROTECTED is a flag specifying whether to protect against non-local exits; ENABLED is a flag specifying whether to initially enable the advice; and DEFINITION has the form (advice . LAMBDA), where LAMBDA is a lambda expression. If FUNCTION already has a piece of advice with the same name, then POSITION is ignored, and the old advice is overwritten with the new one. If FUNCTION already has one or more pieces of advice of the specified CLASS, then POSITION determines where the new piece goes. POSITION can either be `first', `last' or a number (where 0 corresponds to `first', and numbers outside the valid range are mapped to the closest extremal position). If FUNCTION was not advised already, its advice info will be initialized. Redefining a piece of advice whose name is part of the cache-id will clear the cache. (fn FUNCTION ADVICE CLASS POSITION)") (autoload 'ad-activate "advice" "\ Activate all the advice information of an advised FUNCTION. If FUNCTION has a proper original definition then an advised definition will be generated from FUNCTION's advice info and the definition of FUNCTION will be replaced with it. If a previously cached advised definition was available, it will be used. The optional COMPILE argument determines whether the resulting function or a compilable cached definition will be compiled. If it is negative no compilation will be performed, if it is positive or otherwise non-nil the resulting function will be compiled, if it is nil the behavior depends on the value of `ad-default-compilation-action' (which see). Activation of an advised function that has an advice info but no actual pieces of advice is equivalent to a call to `ad-unadvise'. Activation of an advised function that has actual pieces of advice but none of them are enabled is equivalent to a call to `ad-deactivate'. The current advised definition will always be cached for later usage. (fn FUNCTION &optional COMPILE)" t) (autoload 'defadvice "advice" "\ Define a piece of advice for FUNCTION (a symbol). The syntax of `defadvice' is as follows: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) [DOCSTRING] [INTERACTIVE-FORM] BODY...) FUNCTION ::= Name of the function to be advised. CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'. NAME ::= Non-nil symbol that names this piece of advice. POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first', see also `ad-add-advice'. ARGLIST ::= An optional argument list to be used for the advised function instead of the argument list of the original. The first one found in before/around/after-advices will be used. FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'. All flags can be specified with unambiguous initial substrings. DOCSTRING ::= Optional documentation for this piece of advice. INTERACTIVE-FORM ::= Optional interactive form to be used for the advised function. The first one found in before/around/after-advices will be used. BODY ::= Any s-expression. Semantics of the various flags: `protect': The piece of advice will be protected against non-local exits in any code that precedes it. If any around-advice of a function is protected then automatically all around-advices will be protected (the complete onion). `activate': All advice of FUNCTION will be activated immediately if FUNCTION has been properly defined prior to this application of `defadvice'. `compile': In conjunction with `activate' specifies that the resulting advised function should be compiled. `disable': The defined advice will be disabled, hence, it will not be used during activation until somebody enables it. `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile time. This generates a compiled advised definition according to the current advice state that will be used during activation if appropriate. Only use this if the `defadvice' gets actually compiled. usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) [DOCSTRING] [INTERACTIVE-FORM] BODY...) (fn FUNCTION ARGS &rest BODY)" nil t) (function-put 'defadvice 'doc-string-elt 3) (function-put 'defadvice 'lisp-indent-function 2) (make-obsolete 'defadvice '"use `advice-add' or `define-advice'" "30.1") (register-definition-prefixes "advice" '("ad-")) ;;; Generated autoloads from align.el (autoload 'align "align" "\ Attempt to align a region based on a set of alignment rules. Interactively, BEG and END are the mark/point of the current region. Many modes define specific alignment rules, and some of these rules in some modes react to the current prefix argument. For instance, in `text-mode', \\`M-x align' will align into columns based on space delimiters, while \\`C-u -' \\`M-x align' will align into columns based on the \"$\" character. See the `align-rules-list' variable definition for the specific rules. Also see `align-regexp', which will guide you through various parameters for aligning text. Non-interactively, if BEG and END are nil, the beginning and end of the current alignment section will be calculated based on the location of point, and the value of `align-region-separate' (or possibly each rule's `separate' attribute). If SEPARATE is non-nil, it overrides the value of `align-region-separate' for all rules, except those that have their `separate' attribute set. RULES and EXCLUDE-RULES, if either is non-nil, will replace the default rule lists defined in `align-rules-list' and `align-exclude-rules-list'. See `align-rules-list' for more details on the format of these lists. (fn BEG END &optional SEPARATE RULES EXCLUDE-RULES)" t) (autoload 'align-regexp "align" "\ Align the current region using an ad-hoc rule read from the minibuffer. BEG and END mark the limits of the region. Interactively, this function prompts for the regular expression REGEXP to align with. Interactively, if you specify a prefix argument, the function will guide you through entering the full regular expression, and then prompts for which subexpression parenthesis GROUP (default 1) within REGEXP to modify, the amount of SPACING (default `align-default-spacing') to use, and whether or not to REPEAT the rule throughout the line. See `align-rules-list' for more information about these options. For example, let's say you had a list of phone numbers, and wanted to align them so that the opening parentheses would line up: Fred (123) 456-7890 Alice (123) 456-7890 Mary-Anne (123) 456-7890 Joe (123) 456-7890 There is no predefined rule to handle this, but interactively, all you would have to do is to mark the region, call `align-regexp' and enter \"(\". REGEXP must contain at least one parenthesized subexpression, typically whitespace of the form \"\\\\(\\\\s-*\\\\)\", but in interactive use, this is automatically added to the start of your regular expression after you enter it. Interactively, you only need to supply the characters to be lined up, and any preceding whitespace is replaced. Non-interactively, you must enter the full regular expression, including the subexpression. The non-interactive form of the previous example would look something like: (align-regexp (point-min) (point-max) \"\\\\(\\\\s-*\\\\)(\") This function is a nothing more than a small wrapper that helps you construct a rule to pass to `align-region', which does the real work. (fn BEG END REGEXP &optional GROUP SPACING REPEAT)" t) (autoload 'align-entire "align" "\ Align the selected region as if it were one alignment section. BEG and END mark the extent of the region. If RULES or EXCLUDE-RULES is set to a list of rules (see `align-rules-list'), it can be used to override the default alignment rules that would have been used to align that section. (fn BEG END &optional RULES EXCLUDE-RULES)" t) (autoload 'align-current "align" "\ Call `align' on the current alignment section. This function assumes you want to align only the current section, and so saves you from having to specify the region. If RULES or EXCLUDE-RULES is set to a list of rules (see `align-rules-list'), it can be used to override the default alignment rules that would have been used to align that section. (fn &optional RULES EXCLUDE-RULES)" t) (autoload 'align-highlight-rule "align" "\ Highlight the whitespace which a given rule would have modified. BEG and END mark the extent of the region. TITLE identifies the rule that should be highlighted. If RULES or EXCLUDE-RULES is set to a list of rules (see `align-rules-list'), it can be used to override the default alignment rules that would have been used to identify the text to be colored. (fn BEG END TITLE &optional RULES EXCLUDE-RULES)" t) (autoload 'align-unhighlight-rule "align" "\ Remove any highlighting that was added by `align-highlight-rule'." t) (autoload 'align-newline-and-indent "align" "\ A replacement function for `newline-and-indent', aligning as it goes. The alignment is done by calling `align' on the region that was indented." t) (register-definition-prefixes "align" '("align-")) ;;; Generated autoloads from allout.el (push (purecopy '(allout 2 3)) package--builtin-versions) (autoload 'allout-auto-activation-helper "allout" "\ Institute `allout-auto-activation'. Intended to be used as the `allout-auto-activation' :set function. (fn VAR VALUE)") (autoload 'allout-setup "allout" "\ Do fundamental Emacs session for allout auto-activation. Establishes allout processing as part of visiting a file if `allout-auto-activation' is non-nil, or removes it otherwise. The proper way to use this is through customizing the setting of `allout-auto-activation'.") (defvar allout-auto-activation nil "\ Configure allout outline mode auto-activation. Control whether and how allout outline mode is automatically activated when files are visited with non-nil buffer-specific file variable `allout-layout'. When `allout-auto-activation' is \"On\" (t), allout mode is activated in buffers with non-nil `allout-layout', and the specified layout is applied. With value \"ask\", auto-mode-activation is enabled, and endorsement for performing auto-layout is asked of the user each time. With value \"activate\", only auto-mode-activation is enabled. Auto-layout is not. With value nil, inhibit any automatic allout-mode activation.") (custom-autoload 'allout-auto-activation "allout" nil) (put 'allout-use-hanging-indents 'safe-local-variable #'booleanp) (put 'allout-reindent-bodies 'safe-local-variable (lambda (x) (memq x '(nil t text force)))) (put 'allout-show-bodies 'safe-local-variable #'booleanp) (put 'allout-header-prefix 'safe-local-variable #'stringp) (put 'allout-primary-bullet 'safe-local-variable #'stringp) (put 'allout-plain-bullets-string 'safe-local-variable #'stringp) (put 'allout-distinctive-bullets-string 'safe-local-variable #'stringp) (put 'allout-use-mode-specific-leader 'safe-local-variable (lambda (x) (or (memq x '(t nil allout-mode-leaders comment-start)) (stringp x)))) (put 'allout-old-style-prefixes 'safe-local-variable #'booleanp) (put 'allout-stylish-prefixes 'safe-local-variable #'booleanp) (put 'allout-numbered-bullet 'safe-local-variable #'string-or-null-p) (put 'allout-file-xref-bullet 'safe-local-variable #'string-or-null-p) (put 'allout-presentation-padding 'safe-local-variable #'integerp) (put 'allout-layout 'safe-local-variable (lambda (x) (or (numberp x) (listp x) (memq x '(: * + -))))) (autoload 'allout-mode-p "allout" "\ Return t if `allout-mode' is active in current buffer." nil t) (autoload 'allout-mode "allout" "\ Toggle Allout outline mode. \\ Allout outline mode is a minor mode that provides extensive outline oriented formatting and manipulation. It enables structural editing of outlines, as well as navigation and exposure. It also is specifically aimed at accommodating syntax-sensitive text like programming languages. (For example, see the allout code itself, which is organized as an allout outline.) In addition to typical outline navigation and exposure, allout includes: - topic-oriented authoring, including keystroke-based topic creation, repositioning, promotion/demotion, cut, and paste - incremental search with dynamic exposure and reconcealment of hidden text - adjustable format, so programming code can be developed in outline-structure - easy topic encryption and decryption, symmetric or key-pair - \"Hot-spot\" operation, for single-keystroke maneuvering and exposure control - integral outline layout, for automatic initial exposure when visiting a file - independent extensibility, using comprehensive exposure and authoring hooks and many other features. Below is a description of the key bindings, and then description of special `allout-mode' features and terminology. See also the outline menubar additions for quick reference to many of the features. Customize `allout-auto-activation' to prepare your Emacs session for automatic activation of `allout-mode'. The bindings are those listed in `allout-prefixed-keybindings' and `allout-unprefixed-keybindings'. We recommend customizing `allout-command-prefix' to use just `\\C-c' as the command prefix, if the allout bindings don't conflict with any personal bindings you have on \\C-c. In any case, outline structure navigation and authoring is simplified by positioning the cursor on an item's bullet character, the \"hot-spot\" -- then you can invoke allout commands with just the un-prefixed, un-control-shifted command letters. This is described further in the HOT-SPOT Operation section. Exposure Control: ---------------- \\[allout-hide-current-subtree] `allout-hide-current-subtree' \\[allout-show-children] `allout-show-children' \\[allout-show-current-subtree] `allout-show-current-subtree' \\[allout-show-current-entry] `allout-show-current-entry' \\[allout-show-all] `allout-show-all' Navigation: ---------- \\[allout-next-visible-heading] `allout-next-visible-heading' \\[allout-previous-visible-heading] `allout-previous-visible-heading' \\[allout-up-current-level] `allout-up-current-level' \\[allout-forward-current-level] `allout-forward-current-level' \\[allout-backward-current-level] `allout-backward-current-level' \\[allout-end-of-entry] `allout-end-of-entry' \\[allout-beginning-of-current-entry] `allout-beginning-of-current-entry' (alternately, goes to hot-spot) \\[allout-beginning-of-line] `allout-beginning-of-line' -- like regular beginning-of-line, but if immediately repeated cycles to the beginning of the current item and then to the hot-spot (if `allout-beginning-of-line-cycles' is set). Topic Header Production: ----------------------- \\[allout-open-sibtopic] `allout-open-sibtopic' Create a new sibling after current topic. \\[allout-open-subtopic] `allout-open-subtopic' ... an offspring of current topic. \\[allout-open-supertopic] `allout-open-supertopic' ... a sibling of the current topic's parent. Topic Level and Prefix Adjustment: --------------------------------- \\[allout-shift-in] `allout-shift-in' Shift current topic and all offspring deeper \\[allout-shift-out] `allout-shift-out' ... less deep \\[allout-rebullet-current-heading] `allout-rebullet-current-heading' Prompt for alternate bullet for current topic \\[allout-rebullet-topic] `allout-rebullet-topic' Reconcile bullets of topic and its offspring -- distinctive bullets are not changed, others are alternated according to nesting depth. \\[allout-number-siblings] `allout-number-siblings' Number bullets of topic and siblings -- the offspring are not affected. With repeat count, revoke numbering. Topic-oriented Killing and Yanking: ---------------------------------- \\[allout-kill-topic] `allout-kill-topic' Kill current topic, including offspring. \\[allout-copy-topic-as-kill] `allout-copy-topic-as-kill' Copy current topic, including offspring. \\[allout-kill-line] `allout-kill-line' Kill line, attending to outline structure. \\[allout-copy-line-as-kill] `allout-copy-line-as-kill' Copy line but don't delete it. \\[allout-yank] `allout-yank' Yank, adjusting depth of yanked topic to depth of heading if yanking into bare topic heading (ie, prefix sans text). \\[allout-yank-pop] `allout-yank-pop' Is to `allout-yank' as `yank-pop' is to `yank'. Topic-oriented Encryption: ------------------------- \\[allout-toggle-current-subtree-encryption] `allout-toggle-current-subtree-encryption' Encrypt/Decrypt topic content Misc commands: ------------- \\[allout-outlinify-sticky] Activate outline mode for current buffer, and establish a default file-var setting for `allout-layout'. \\[allout-mark-topic] `allout-mark-topic' \\[allout-copy-exposed-to-buffer] `allout-copy-exposed-to-buffer' Duplicate outline, sans concealed text, to buffer with name derived from derived from that of current buffer -- \"*BUFFERNAME exposed*\". \\[allout-flatten-exposed-to-buffer] `allout-flatten-exposed-to-buffer' Like above `copy-exposed', but convert topic prefixes to section.subsection... numeric format. \\[customize-variable] allout-auto-activation Prepare Emacs session for allout outline mode auto-activation. Topic Encryption Outline mode supports gpg encryption of topics, with support for symmetric and key-pair modes, and auto-encryption of topics pending encryption on save. Topics pending encryption are, by default, automatically encrypted during file saves, including checkpoint saves, to avoid exposing the plain text of encrypted topics in the file system. If the content of the topic containing the cursor was encrypted for a save, it is automatically decrypted for continued editing. NOTE: A few GnuPG v2 versions improperly preserve incorrect symmetric decryption keys, preventing entry of the correct key on subsequent decryption attempts until the cache times-out. That can take several minutes. (Decryption of other entries is not affected.) Upgrade your EasyPG version, if you can, and you can deliberately clear your gpg-agent's cache by sending it a `-HUP' signal. See `allout-toggle-current-subtree-encryption' function docstring and `allout-encrypt-unencrypted-on-saves' customization variable for details. HOT-SPOT Operation Hot-spot operation provides a means for easy, single-keystroke outline navigation and exposure control. When the text cursor is positioned directly on the bullet character of a topic, regular characters (a to z) invoke the commands of the corresponding allout-mode keymap control chars. For example, \"f\" would invoke the command typically bound to \"C-cC-f\" (\\[allout-forward-current-level] `allout-forward-current-level'). Thus, by positioning the cursor on a topic bullet, you can execute the outline navigation and manipulation commands with a single keystroke. Regular navigation keys (eg, \\[forward-char], \\[next-line]) don't get this special translation, so you can use them to get out of the hot-spot and back to normal editing operation. In allout-mode, the normal beginning-of-line command (\\[allout-beginning-of-line]) is replaced with one that makes it easy to get to the hot-spot. If you repeat it immediately it cycles (if `allout-beginning-of-line-cycles' is set) to the beginning of the item and then, if you hit it again immediately, to the hot-spot. Similarly, `allout-beginning-of-current-entry' (\\[allout-beginning-of-current-entry]) moves to the hot-spot when the cursor is already located at the beginning of the current entry. Extending Allout Allout exposure and authoring activities all have associated hooks, by which independent code can cooperate with allout without changes to the allout core. Here are key ones: `allout-mode-hook' `allout-mode-off-hook' `allout-exposure-change-functions' `allout-structure-added-functions' `allout-structure-deleted-functions' `allout-structure-shifted-functions' `allout-after-copy-or-kill-hook' `allout-post-undo-hook' Terminology Topic hierarchy constituents -- TOPICS and SUBTOPICS: ITEM: A unitary outline element, including the HEADER and ENTRY text. TOPIC: An ITEM and any ITEMs contained within it, ie having greater DEPTH and with no intervening items of lower DEPTH than the container. CURRENT ITEM: The visible ITEM most immediately containing the cursor. DEPTH: The degree of nesting of an ITEM; it increases with containment. The DEPTH is determined by the HEADER PREFIX. The DEPTH is also called the: LEVEL: The same as DEPTH. ANCESTORS: Those ITEMs whose TOPICs contain an ITEM. PARENT: An ITEM's immediate ANCESTOR. It has a DEPTH one less than that of the ITEM. OFFSPRING: The ITEMs contained within an ITEM's TOPIC. SUBTOPIC: An OFFSPRING of its ANCESTOR TOPICs. CHILD: An immediate SUBTOPIC of its PARENT. SIBLINGS: TOPICs having the same PARENT and DEPTH. Topic text constituents: HEADER: The first line of an ITEM, include the ITEM PREFIX and HEADER text. ENTRY: The text content of an ITEM, before any OFFSPRING, but including the HEADER text and distinct from the ITEM PREFIX. BODY: Same as ENTRY. PREFIX: The leading text of an ITEM which distinguishes it from normal ENTRY text. Allout recognizes the outline structure according to the strict PREFIX format. It consists of a PREFIX-LEAD string, PREFIX-PADDING, and a BULLET. The BULLET might be followed by a number, indicating the ordinal number of the topic among its siblings, or an asterisk indicating encryption, plus an optional space. After that is the ITEM HEADER text, which is not part of the PREFIX. The relative length of the PREFIX determines the nesting DEPTH of the ITEM. PREFIX-LEAD: The string at the beginning of a HEADER PREFIX, by default a `.'. It can be customized by changing the setting of `allout-header-prefix' and then reinitializing `allout-mode'. When the PREFIX-LEAD is set to the comment-string of a programming language, outline structuring can be embedded in program code without interfering with processing of the text (by Emacs or the language processor) as program code. This setting happens automatically when allout mode is used in programming-mode buffers. See `allout-use-mode-specific-leader' docstring for more detail. PREFIX-PADDING: Spaces or asterisks which separate the PREFIX-LEAD and the bullet, determining the ITEM's DEPTH. BULLET: A character at the end of the ITEM PREFIX, it must be one of the characters listed on `allout-plain-bullets-string' or `allout-distinctive-bullets-string'. When creating a TOPIC, plain BULLETs are by default used, according to the DEPTH of the TOPIC. Choice among the distinctive BULLETs is offered when you provide a universal argument (\\[universal-argument]) to the TOPIC creation command, or when explicitly rebulleting a TOPIC. The significance of the various distinctive bullets is purely by convention. See the documentation for the above bullet strings for more details. EXPOSURE: The state of a TOPIC which determines the on-screen visibility of its OFFSPRING and contained ENTRY text. CONCEALED: TOPICs and ENTRY text whose EXPOSURE is inhibited. Concealed text is represented by \"...\" ellipses. CONCEALED TOPICs are effectively collapsed within an ANCESTOR. CLOSED: A TOPIC whose immediate OFFSPRING and body-text is CONCEALED. OPEN: A TOPIC that is not CLOSED, though its OFFSPRING or BODY may be. This is a minor mode. If called interactively, toggle the `Allout mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `allout-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (define-obsolete-function-alias 'outlinify-sticky #'allout-outlinify-sticky "29.1") (define-obsolete-function-alias 'outlineify-sticky #'allout-outlinify-sticky "29.1") (autoload 'allout-outlinify-sticky "allout" "\ Activate outline mode and establish file var so it is started subsequently. See `allout-layout' and customization of `allout-auto-activation' for details on preparing Emacs for automatic allout activation. (fn &optional ARG)" t) (register-definition-prefixes "allout" '("allout-")) ;;; Generated autoloads from allout-widgets.el (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) (autoload 'allout-widgets-setup "allout-widgets" "\ Commission or decommission allout-widgets-mode along with allout-mode. Meant to be used by customization of `allout-widgets-auto-activation'. (fn VARNAME VALUE)") (defvar allout-widgets-auto-activation nil "\ Activate to enable allout icon graphics wherever allout mode is active. Also enable `allout-auto-activation' for this to take effect upon visiting an outline. When this is set you can disable allout widgets in select files by setting `allout-widgets-mode-inhibit'. Instead of setting `allout-widgets-auto-activation' you can explicitly invoke `allout-widgets-mode' in allout buffers where you want allout widgets operation. See `allout-widgets-mode' for allout widgets mode features.") (custom-autoload 'allout-widgets-auto-activation "allout-widgets" nil) (put 'allout-widgets-mode-inhibit 'safe-local-variable #'booleanp) (autoload 'allout-widgets-mode "allout-widgets" "\ Toggle Allout Widgets mode. Allout Widgets mode is an extension of Allout mode that provides graphical decoration of outline structure. It is meant to operate along with `allout-mode', via `allout-mode-hook'. The graphics include: - guide lines connecting item bullet-icons with those of their subitems. - icons for item bullets, varying to indicate whether or not the item has subitems, and if so, whether or not the item is expanded. - cue area between the bullet-icon and the start of the body headline, for item numbering, encryption indicator, and distinctive bullets. The bullet-icon and guide line graphics provide keybindings and mouse bindings for easy outline navigation and exposure control, extending outline hot-spot navigation (see `allout-mode'). This is a minor mode. If called interactively, toggle the `Allout-Widgets mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `allout-widgets-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "allout-widgets" '("allout-")) ;;; Generated autoloads from cedet/semantic/analyze.el (register-definition-prefixes "semantic/analyze" '("semantic-a")) ;;; Generated autoloads from net/ange-ftp.el (define-obsolete-function-alias 'ange-ftp-re-read-dir #'ange-ftp-reread-dir "29.1") (autoload 'ange-ftp-reread-dir "ange-ftp" "\ Reread remote directory DIR to update the directory cache. The implementation of remote FTP file names caches directory contents for speed. Therefore, when new remote files are created, Emacs may not know they exist. You can use this command to reread a specific directory, so that Emacs will know its current contents. (fn &optional DIR)" t) (autoload 'ange-ftp-hook-function "ange-ftp" "\ (fn OPERATION &rest ARGS)") (register-definition-prefixes "ange-ftp" '("ange-ftp-" "ftp-error" "internal-ange-ftp-mode")) ;;; Generated autoloads from play/animate.el (autoload 'animate-string "animate" "\ Display STRING animations starting at position VPOS, HPOS. The characters start at randomly chosen places, and all slide in parallel to their final positions, passing through `animate-n-steps' positions before the final ones. If HPOS is nil (or omitted), center the string horizontally in the current window. (fn STRING VPOS &optional HPOS)") (autoload 'animate-sequence "animate" "\ Display animation strings from LIST-OF-STRING with buffer *Animation*. Strings will be separated from each other by SPACE lines. When the variable `animation-buffer-name' is non-nil display animation in the buffer named by variable's value, creating the buffer if one does not exist. (fn LIST-OF-STRINGS SPACE)") (autoload 'animate-birthday-present "animate" "\ Return a birthday present in the buffer *Birthday-Present*. When optional arg NAME is non-nil or called-interactively, prompt for NAME of birthday present receiver and return a birthday present in the buffer *Birthday-Present-for-Name*. (fn &optional NAME)" t) (register-definition-prefixes "animate" '("animat")) ;;; Generated autoloads from ansi-color.el (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) (autoload 'ansi-color-for-comint-mode-on "ansi-color" "\ Set `ansi-color-for-comint-mode' to t." t) (autoload 'ansi-color-process-output "ansi-color" "\ Maybe translate SGR control sequences of comint output into text properties. Depending on variable `ansi-color-for-comint-mode' the comint output is either not processed, SGR control sequences are filtered using `ansi-color-filter-region', or SGR control sequences are translated into text properties using `ansi-color-apply-on-region'. The comint output is assumed to lie between the marker `comint-last-output-start' and the process-mark. This is a good function to put in `comint-output-filter-functions'. (fn IGNORED)") (autoload 'ansi-color-compilation-filter "ansi-color" "\ Maybe translate SGR control sequences into text properties. This function depends on the `ansi-color-for-compilation-mode' variable, and is meant to be used in `compilation-filter-hook'.") (register-definition-prefixes "ansi-color" '("ansi-color-")) ;;; Generated autoloads from ansi-osc.el (autoload 'ansi-osc-compilation-filter "ansi-osc" "\ Maybe collect OSC control sequences. This function depends on the variable `ansi-osc-for-compilation-buffer', and is meant to be used in `compilation-filter-hook'.") (register-definition-prefixes "ansi-osc" '("ansi-osc-")) ;;; Generated autoloads from progmodes/antlr-mode.el (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions) (autoload 'antlr-show-makefile-rules "antlr-mode" "\ Show Makefile rules for all grammar files in the current directory. If the `major-mode' of the current buffer has the value `makefile-mode', the rules are directory inserted at point. Otherwise, a *Help* buffer is shown with the rules which are also put into the `kill-ring' for \\[yank]. This command considers import/export vocabularies and grammar inheritance and provides a value for the \"-glib\" option if necessary. Customize variable `antlr-makefile-specification' for the appearance of the rules. If the file for a super-grammar cannot be determined, special file names are used according to variable `antlr-unknown-file-formats' and a commentary with value `antlr-help-unknown-file-text' is added. The *Help* buffer always starts with the text in `antlr-help-rules-intro'." t) (autoload 'antlr-mode "antlr-mode" "\ Major mode for editing ANTLR grammar files. (fn)" t) (autoload 'antlr-set-tabs "antlr-mode" "\ Use ANTLR's convention for TABs according to `antlr-tab-offset-alist'. Used in `antlr-mode'. Also a useful function in `java-mode-hook'.") (register-definition-prefixes "antlr-mode" '("antlr-")) ;;; Generated autoloads from calendar/appt.el (autoload 'appt-add "appt" "\ Add an appointment for today at TIME with message MSG. The time should be in either 24 hour format or am/pm format. Optional argument WARNTIME is an integer (or string) giving the number of minutes before the appointment at which to start warning. The default is `appt-message-warning-time'. (fn TIME MSG &optional WARNTIME)" t) (autoload 'appt-activate "appt" "\ Toggle checking of appointments. With optional numeric argument ARG, turn appointment checking on if ARG is positive, otherwise off. (fn &optional ARG)" t) (register-definition-prefixes "appt" '("appt-")) ;;; Generated autoloads from apropos.el (autoload 'apropos-read-pattern "apropos" "\ Read an apropos pattern, either a word list or a regexp. Returns the user pattern, either a list of words which are matched literally, or a string which is used as a regexp to search for. SUBJECT is a string that is included in the prompt to identify what kind of objects to search. (fn SUBJECT)") (autoload 'apropos-user-option "apropos" "\ Show user options that match PATTERN. PATTERN can be a word, a list of words (separated by spaces), or a regexp (using some regexp special characters). If it is a word, search for matches for that word as a substring. If it is a list of words, search for matches for any two (or more) of those words. With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also show variables, not just user options. (fn PATTERN &optional DO-ALL)" t) (autoload 'apropos-variable "apropos" "\ Show variables that match PATTERN. With the optional argument DO-NOT-ALL non-nil (or when called interactively with the prefix \\[universal-argument]), show user options only, i.e. behave like `apropos-user-option'. (fn PATTERN &optional DO-NOT-ALL)" t) (autoload 'apropos-local-variable "apropos" "\ Show buffer-local variables that match PATTERN. Optional arg BUFFER (default: current buffer) is the buffer to check. The output includes variables that are not yet set in BUFFER, but that will be buffer-local when set. (fn PATTERN &optional BUFFER)" t) (autoload 'apropos-function "apropos" "\ Show functions that match PATTERN. PATTERN can be a word, a list of words (separated by spaces), or a regexp (using some regexp special characters). If it is a word, search for matches for that word as a substring. If it is a list of words, search for matches for any two (or more) of those words. This is the same as running `apropos-command' with a \\[universal-argument] prefix, or a non-nil `apropos-do-all' argument. (fn PATTERN)" t) (defalias 'command-apropos #'apropos-command) (autoload 'apropos-command "apropos" "\ Show commands (interactively callable functions) that match PATTERN. PATTERN can be a word, a list of words (separated by spaces), or a regexp (using some regexp special characters). If it is a word, search for matches for that word as a substring. If it is a list of words, search for matches for any two (or more) of those words. With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also show noninteractive functions. If VAR-PREDICATE is non-nil, show only variables, and only those that satisfy the predicate VAR-PREDICATE. When called from a Lisp program, a string PATTERN is used as a regexp, while a list of strings is used as a word list. (fn PATTERN &optional DO-ALL VAR-PREDICATE)" t) (autoload 'apropos-documentation-property "apropos" "\ Like (documentation-property SYMBOL PROPERTY RAW) but handle errors. (fn SYMBOL PROPERTY RAW)") (autoload 'apropos "apropos" "\ Show all meaningful Lisp symbols whose names match PATTERN. Symbols are shown if they are defined as functions, variables, or faces, or if they have nonempty property lists, or if they are known keywords. PATTERN can be a word, a list of words (separated by spaces), or a regexp (using some regexp special characters). If it is a word, search for matches for that word as a substring. If it is a list of words, search for matches for any two (or more) of those words. With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, consider all symbols (if they match PATTERN). Return list of symbols and documentation found. The *Apropos* window will be selected if `help-window-select' is non-nil. (fn PATTERN &optional DO-ALL)" t) (autoload 'apropos-library "apropos" "\ List the variables and functions defined by library FILE. FILE should be one of the libraries currently loaded and should thus be found in `load-history'. If `apropos-do-all' is non-nil, the output includes key-bindings of commands. (fn FILE)" t) (autoload 'apropos-value "apropos" "\ Show all symbols whose value's printed representation matches PATTERN. PATTERN can be a word, a list of words (separated by spaces), or a regexp (using some regexp special characters). If it is a word, search for matches for that word as a substring. If it is a list of words, search for matches for any two (or more) of those words. With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also looks at function definitions (arguments, documentation and body) and at the names and values of properties. Returns list of symbols and values found. (fn PATTERN &optional DO-ALL)" t) (autoload 'apropos-local-value "apropos" "\ Show buffer-local variables whose values match PATTERN. This is like `apropos-value', but only for buffer-local variables. Optional arg BUFFER (default: current buffer) is the buffer to check. (fn PATTERN &optional BUFFER)" t) (autoload 'apropos-documentation "apropos" "\ Show symbols whose documentation contains matches for PATTERN. PATTERN can be a word, a list of words (separated by spaces), or a regexp (using some regexp special characters). If it is a word, search for matches for that word as a substring. If it is a list of words, search for matches for any two (or more) of those words. Note that by default this command only searches in the functions predefined at Emacs startup, i.e., the primitives implemented in C or preloaded in the Emacs dump image. With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, it searches all currently defined documentation strings. Returns list of symbols and documentation found. (fn PATTERN &optional DO-ALL)" t) (register-definition-prefixes "apropos" '("apropos-")) ;;; Generated autoloads from arc-mode.el (autoload 'archive-mode "arc-mode" "\ Major mode for viewing an archive file in a dired-like way. You can move around using the usual cursor motion commands. Letters no longer insert themselves.\\ Type \\[archive-extract] to pull a file out of the archive and into its own buffer; or click mouse-2 on the file's line in the archive mode buffer. If you edit a sub-file of this archive (as with the \\[archive-extract] command) and save it, the contents of that buffer will be saved back into the archive. \\{archive-mode-map} (fn &optional FORCE)") (register-definition-prefixes "arc-mode" '("arc")) ;;; Generated autoloads from cedet/srecode/args.el (register-definition-prefixes "srecode/args" '("srecode-")) ;;; Generated autoloads from array.el (autoload 'array-mode "array" "\ Major mode for editing arrays. Array mode is a specialized mode for editing arrays. An array is considered to be a two-dimensional set of strings. The strings are NOT recognized as integers or real numbers. The array MUST reside at the top of the buffer. TABs are not respected, and may be converted into spaces at any time. Setting the variable `array-respect-tabs' to non-nil will prevent TAB conversion, but will cause many functions to give errors if they encounter one. Upon entering array mode, you will be prompted for the values of several variables. Others will be calculated based on the values you supply. These variables are all local to the buffer. Other buffer in array mode may have different values assigned to the variables. The variables are: Variables you assign: `array-max-row': The number of rows in the array. `array-max-column': The number of columns in the array. `array-columns-per-line': The number of columns in the array per line of buffer. `array-field-width': The width of each field, in characters. `array-rows-numbered': A logical variable describing whether to ignore row numbers in the buffer. Variables which are calculated: `array-line-length': The number of characters in a buffer line. `array-lines-per-row': The number of buffer lines used to display each row. The following commands are available (an asterisk indicates it may take a numeric prefix argument): * \\\\[array-forward-column] Move forward one column. * \\[array-backward-column] Move backward one column. * \\[array-next-row] Move down one row. * \\[array-previous-row] Move up one row. * \\[array-copy-forward] Copy current field into the column to the right. * \\[array-copy-backward] Copy current field into the column to the left. * \\[array-copy-down] Copy current field into the row below. * \\[array-copy-up] Copy current field into the row above. * \\[array-copy-column-forward] Copy current column into the column to the right. * \\[array-copy-column-backward] Copy current column into the column to the left. * \\[array-copy-row-down] Copy the current row into the row below. * \\[array-copy-row-up] Copy the current row into the row above. \\[array-fill-rectangle] Copy field at mark into every cell with row and column between that of point and mark. \\[array-what-position] Display the current array row and column. \\[array-goto-cell] Go to a particular array cell. \\[array-make-template] Make a template for a new array. \\[array-reconfigure-rows] Reconfigure the array. \\[array-expand-rows] Expand the array (remove row numbers and newlines inside rows) \\[array-display-local-variables] Display current values of local variables. Entering array mode calls the function `array-mode-hook'. (fn)" t) (register-definition-prefixes "array" '("array-")) ;;; Generated autoloads from textmodes/artist.el (autoload 'artist-mode "artist" "\ Toggle Artist mode. Artist lets you draw lines, squares, rectangles and poly-lines, ellipses and circles with your mouse and/or keyboard. How to quit Artist mode Type \\[artist-mode-off] to quit artist-mode. How to submit a bug report Type \\[artist-submit-bug-report] to submit a bug report. Drawing with the mouse: mouse-2 shift mouse-2 Pops up a menu where you can select what to draw with mouse-1, and where you can do some settings (described below). mouse-1 shift mouse-1 Draws lines, rectangles or poly-lines, erases, cuts, copies or pastes: Operation Not shifted Shifted -------------------------------------------------------------- Pen fill-char at point line from last point to new point -------------------------------------------------------------- Line Line in any direction Straight line -------------------------------------------------------------- Rectangle Rectangle Square -------------------------------------------------------------- Poly-line Poly-line in any dir Straight poly-lines -------------------------------------------------------------- Ellipses Ellipses Circles -------------------------------------------------------------- Text Text (see thru) Text (overwrite) -------------------------------------------------------------- Spray-can Spray-can Set size for spray -------------------------------------------------------------- Erase Erase character Erase rectangle -------------------------------------------------------------- Vaporize Erase single line Erase connected lines -------------------------------------------------------------- Cut Cut rectangle Cut square -------------------------------------------------------------- Copy Copy rectangle Copy square -------------------------------------------------------------- Paste Paste Paste -------------------------------------------------------------- Flood-fill Flood-fill Flood-fill -------------------------------------------------------------- * Straight lines can only go horizontally, vertically or diagonally. * Poly-lines are drawn while holding mouse-1 down. When you release the button, the point is set. If you want a segment to be straight, hold down shift before pressing the mouse-1 button. Click mouse-2 or mouse-3 to stop drawing poly-lines. * See thru for text means that text already in the buffer will be visible through blanks in the text rendered, while overwrite means the opposite. * Vaporizing connected lines only vaporizes lines whose _endpoints_ are connected. See also the variable `artist-vaporize-fuzziness'. * Cut copies, then clears the rectangle/square. * When drawing lines or poly-lines, you can set arrows. See below under \"Arrows\" for more info. * The mode line shows the currently selected drawing operation. In addition, if it has an asterisk (*) at the end, you are currently drawing something. * Be patient when flood-filling -- large areas take quite some time to fill. mouse-3 Erases character under pointer shift mouse-3 Erases rectangle Settings Set fill Sets the character used when filling rectangles/squares Set line Sets the character used when drawing lines Erase char Sets the character used when erasing Rubber-banding Toggles rubber-banding Trimming Toggles trimming of line-endings (that is: when the shape is drawn, extraneous white-space at end of lines is removed) Borders Toggles the drawing of line borders around filled shapes Drawing with keys \\[artist-key-set-point] Does one of the following: For lines/rectangles/squares: sets the first/second endpoint For poly-lines: sets a point (use \\[universal-argument] \\[artist-key-set-point] to set last point) When erase characters: toggles erasing When cutting/copying: Sets first/last endpoint of rect/square When pasting: Pastes \\[artist-select-operation] Selects what to draw Move around with \\[artist-next-line], \\[artist-previous-line], \\[artist-forward-char] and \\[artist-backward-char]. \\[artist-select-fill-char] Sets the character to use when filling \\[artist-select-line-char] Sets the character to use when drawing \\[artist-select-erase-char] Sets the character to use when erasing \\[artist-toggle-rubber-banding] Toggles rubber-banding \\[artist-toggle-trim-line-endings] Toggles trimming of line-endings \\[artist-toggle-borderless-shapes] Toggles borders on drawn shapes Arrows \\[artist-toggle-first-arrow] Sets/unsets an arrow at the beginning of the line/poly-line \\[artist-toggle-second-arrow] Sets/unsets an arrow at the end of the line/poly-line Selecting operation There are some keys for quickly selecting drawing operations: \\[artist-select-op-line] Selects drawing lines \\[artist-select-op-straight-line] Selects drawing straight lines \\[artist-select-op-rectangle] Selects drawing rectangles \\[artist-select-op-square] Selects drawing squares \\[artist-select-op-poly-line] Selects drawing poly-lines \\[artist-select-op-straight-poly-line] Selects drawing straight poly-lines \\[artist-select-op-ellipse] Selects drawing ellipses \\[artist-select-op-circle] Selects drawing circles \\[artist-select-op-text-see-thru] Selects rendering text (see thru) \\[artist-select-op-text-overwrite] Selects rendering text (overwrite) \\[artist-select-op-spray-can] Spray with spray-can \\[artist-select-op-spray-set-size] Set size for the spray-can \\[artist-select-op-erase-char] Selects erasing characters \\[artist-select-op-erase-rectangle] Selects erasing rectangles \\[artist-select-op-vaporize-line] Selects vaporizing single lines \\[artist-select-op-vaporize-lines] Selects vaporizing connected lines \\[artist-select-op-cut-rectangle] Selects cutting rectangles \\[artist-select-op-copy-rectangle] Selects copying rectangles \\[artist-select-op-paste] Selects pasting \\[artist-select-op-flood-fill] Selects flood-filling Variables This is a brief overview of the different variables. For more info, see the documentation for the variables (type \\[describe-variable] RET). `artist-rubber-banding' Interactively do rubber-banding or not `artist-first-char' What to set at first/second point... `artist-second-char' ...when not rubber-banding `artist-interface-with-rect' Should cut/copy/paste interface with rect `artist-arrows' The arrows to use when drawing arrows `artist-aspect-ratio' Character height-to-width for squares `artist-trim-line-endings' Trimming of line endings `artist-flood-fill-right-border' Right border when flood-filling `artist-flood-fill-show-incrementally' Update display while filling `artist-pointer-shape' Pointer shape to use while drawing `artist-ellipse-left-char' Character to use for narrow ellipses `artist-ellipse-right-char' Character to use for narrow ellipses `artist-borderless-shapes' If shapes should have borders `artist-picture-compatibility' Picture mode compatibility on or off `artist-vaporize-fuzziness' Tolerance when recognizing lines `artist-spray-interval' Seconds between repeated sprayings `artist-spray-radius' Size of the spray-area `artist-spray-chars' The spray-\"color\" `artist-spray-new-char' Initial spray-\"color\" Hooks Turning the mode on or off runs `artist-mode-hook'. Keymap summary \\{artist-mode-map} This is a minor mode. If called interactively, toggle the `Artist mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `artist-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "artist" '("artist-")) ;;; Generated autoloads from progmodes/asm-mode.el (autoload 'asm-mode "asm-mode" "\ Major mode for editing typical assembler code. Features a private abbrev table and the following bindings: \\[asm-colon] outdent a preceding label, tab to next tab stop. \\[tab-to-tab-stop] tab to next tab stop. \\[newline-and-indent] newline, then tab to next tab stop. \\[asm-comment] smart placement of assembler comments. The character used for making comments is set by the variable `asm-comment-char' (which defaults to `?\\;'). Alternatively, you may set this variable in `asm-mode-set-comment-hook', which is called near the beginning of mode initialization. Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. Special commands: \\{asm-mode-map} (fn)" t) (register-definition-prefixes "asm-mode" '("asm-")) ;;; Generated autoloads from auth-source.el (defvar auth-source-cache-expiry 7200 "\ How many seconds passwords are cached, or nil to disable expiring. Overrides `password-cache-expiry' through a let-binding.") (custom-autoload 'auth-source-cache-expiry "auth-source" t) (autoload 'auth-source-netrc-parse-all "auth-source" "\ Parse FILE and return all entries. (fn FILE)") (autoload 'authinfo-mode "auth-source" "\ Mode for editing .authinfo/.netrc files. This is just like `fundamental-mode', but has basic syntax highlighting and hides passwords. Passwords are revealed when point is moved into the passwords (see `authinfo-hide-elements'). \\{authinfo-mode-map} (fn)" t) (autoload 'read-passwd "auth-source" "\ Read a password, prompting with PROMPT, and return it. If optional CONFIRM is non-nil, read the password twice to make sure. Optional DEFAULT is a default password to use instead of empty input. This function echoes `*' for each character that the user types. You could let-bind `read-hide-char' to another hiding character, though. Once the caller uses the password, it can erase the password by doing (clear-string STRING). (fn PROMPT &optional CONFIRM DEFAULT)") (register-definition-prefixes "auth-source" '("auth" "read-passwd-")) ;;; Generated autoloads from auth-source-pass.el (push (purecopy '(auth-source-pass 5 0 0)) package--builtin-versions) (autoload 'auth-source-pass-enable "auth-source-pass" "\ Enable auth-source-password-store.") (autoload 'auth-source-pass-get "auth-source-pass" "\ Return the value associated to KEY in the password-store entry ENTRY. ENTRY is the name of a password-store entry. The key used to retrieve the password is the symbol `secret'. The convention used as the format for a password-store file is the following (see URL `https://www.passwordstore.org/#organization'): secret key1: value1 key2: value2 (fn KEY ENTRY)") (register-definition-prefixes "auth-source-pass" '("auth-source-pass-")) ;;; Generated autoloads from cedet/ede/auto.el (autoload 'ede-add-project-autoload "ede/auto" "\ Add PROJAUTO, an EDE autoload definition to `ede-project-class-files'. Optional argument FLAG indicates how this autoload should be added. Possible values are: `generic' - A generic project type. Keep this at the very end. `unique' - A unique project type for a specific project. Keep at the very front of the list so more generic projects don't get priority. (fn PROJAUTO &optional FLAG)") (register-definition-prefixes "ede/auto" '("ede-")) ;;; Generated autoloads from progmodes/autoconf.el (autoload 'autoconf-mode "autoconf" "\ Major mode for editing Autoconf configure.ac files. (fn)" t) (register-definition-prefixes "autoconf" '("autoconf-")) ;;; Generated autoloads from cedet/ede/autoconf-edit.el (register-definition-prefixes "ede/autoconf-edit" '("autoconf-")) ;;; Generated autoloads from autoinsert.el (put 'auto-insert 'safe-local-variable #'null) (autoload 'auto-insert "autoinsert" "\ Insert default contents into new files if variable `auto-insert' is non-nil. Matches the visited file name against the elements of `auto-insert-alist'." t) (autoload 'define-auto-insert "autoinsert" "\ Associate CONDITION with (additional) ACTION in `auto-insert-alist'. Optional AFTER means to insert action after all existing actions for CONDITION, or if CONDITION had no actions, after all other CONDITIONs. (fn CONDITION ACTION &optional AFTER)") (function-put 'define-auto-insert 'lisp-indent-function 'defun) (defvar auto-insert-mode nil "\ Non-nil if Auto-Insert mode is enabled. See the `auto-insert-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `auto-insert-mode'.") (custom-autoload 'auto-insert-mode "autoinsert" nil) (autoload 'auto-insert-mode "autoinsert" "\ Toggle Auto-insert mode, a global minor mode. When Auto-insert mode is enabled, when new files are created you can insert a template for the file depending on the mode of the buffer. This is a global minor mode. If called interactively, toggle the `Auto-Insert mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='auto-insert-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "autoinsert" '("auto-insert")) ;;; Generated autoloads from autorevert.el (autoload 'auto-revert-mode "autorevert" "\ Toggle reverting buffer when the file changes (Auto-Revert Mode). Auto-Revert Mode is a minor mode that affects only the current buffer. When enabled, it reverts the buffer when the file on disk changes. When a buffer is reverted, a message is generated. This can be suppressed by setting `auto-revert-verbose' to nil. Reverting can sometimes fail to preserve all the markers in the buffer. To avoid that, set `revert-buffer-insert-file-contents-function' to the slower function `revert-buffer-insert-file-contents-delicately'. Use `global-auto-revert-mode' to automatically revert all buffers. Use `auto-revert-tail-mode' if you know that the file will only grow without being changed in the part that is already in the buffer. This is a minor mode. If called interactively, toggle the `Auto-Revert mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `auto-revert-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'turn-on-auto-revert-mode "autorevert" "\ Turn on Auto-Revert Mode. This function is designed to be added to hooks, for example: (add-hook \\='c-mode-hook #\\='turn-on-auto-revert-mode)") (autoload 'auto-revert-tail-mode "autorevert" "\ Toggle reverting tail of buffer when the file grows. When Auto-Revert Tail Mode is enabled, the tail of the file is constantly followed, as with the shell command `tail -f'. This means that whenever the file grows on disk (presumably because some background process is appending to it from time to time), this is reflected in the current buffer. You can edit the buffer and turn this mode off and on again as you please. But make sure the background process has stopped writing before you save the file! When a buffer is reverted, a message is generated. This can be suppressed by setting `auto-revert-verbose' to nil. Use `auto-revert-mode' for changes other than appends! This is a minor mode. If called interactively, toggle the `Auto-Revert-Tail mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `auto-revert-tail-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'turn-on-auto-revert-tail-mode "autorevert" "\ Turn on Auto-Revert Tail Mode. This function is designed to be added to hooks, for example: (add-hook \\='my-logfile-mode-hook #\\='turn-on-auto-revert-tail-mode)") (defvar global-auto-revert-mode nil "\ Non-nil if Global Auto-Revert mode is enabled. See the `global-auto-revert-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-auto-revert-mode'.") (custom-autoload 'global-auto-revert-mode "autorevert" nil) (autoload 'global-auto-revert-mode "autorevert" "\ Toggle Global Auto-Revert Mode. Global Auto-Revert Mode is a global minor mode that reverts any buffer associated with a file when the file changes on disk. Use `auto-revert-mode' to revert a particular buffer. If `global-auto-revert-non-file-buffers' is non-nil, this mode may also revert some non-file buffers, as described in the documentation of that variable. It ignores buffers with modes matching `global-auto-revert-ignore-modes', and buffers with a non-nil value of `global-auto-revert-ignore-buffer'. When a buffer is reverted, a message is generated. This can be suppressed by setting `auto-revert-verbose' to nil. This function calls the hook `global-auto-revert-mode-hook'. It displays the text that `global-auto-revert-mode-text' specifies in the mode line. This is a global minor mode. If called interactively, toggle the `Global Auto-Revert mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='global-auto-revert-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "autorevert" '("auto-revert-" "global-auto-revert-")) ;;; Generated autoloads from emacs-lisp/avl-tree.el (register-definition-prefixes "avl-tree" '("avl-tree-")) ;;; Generated autoloads from avoid.el (defvar mouse-avoidance-mode nil "\ Activate Mouse Avoidance mode. See function `mouse-avoidance-mode' for possible values. Setting this variable directly does not take effect; use either \\[customize] or \\[mouse-avoidance-mode].") (custom-autoload 'mouse-avoidance-mode "avoid" nil) (autoload 'mouse-avoidance-mode "avoid" "\ Set Mouse Avoidance mode to MODE. MODE should be one of the symbols `banish', `exile', `jump', `animate', `cat-and-mouse', `proteus', or `none'. If MODE is nil, toggle mouse avoidance between `none' and `banish' modes. Positive numbers and symbols other than the above are treated as equivalent to `banish'; negative numbers and `-' are equivalent to `none'. Effects of the different modes: * banish: Move the mouse to the upper-right corner on any keypress. * exile: Move the mouse to the corner only if the cursor gets too close, and allow it to return once the cursor is out of the way. * jump: If the cursor gets too close to the mouse, displace the mouse a random distance & direction. * animate: As `jump', but shows steps along the way for illusion of motion. * cat-and-mouse: Same as `animate'. * proteus: As `animate', but changes the shape of the mouse pointer too. (See `mouse-avoidance-threshold' for definition of \"too close\", and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for definition of \"random distance\".) (fn &optional MODE)" t) (register-definition-prefixes "avoid" '("mouse-avoidance-")) ;;; Generated autoloads from emacs-lisp/backtrace.el (push (purecopy '(backtrace 1 0)) package--builtin-versions) (autoload 'backtrace "backtrace" "\ Print a trace of Lisp function calls currently active. Output stream used is value of `standard-output'.") (register-definition-prefixes "backtrace" '("backtrace-")) ;;; Generated autoloads from cedet/ede/base.el (register-definition-prefixes "ede/base" '("ede-")) ;;; Generated autoloads from progmodes/bat-mode.el (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode)) (autoload 'bat-mode "bat-mode" "\ Major mode for editing DOS/Windows batch files. Start a new script from `bat-template'. Read help pages for DOS commands with `bat-cmd-help'. Navigate between sections using `imenu'. Run script using `bat-run' and `bat-run-args'. \\{bat-mode-map} (fn)" t) (register-definition-prefixes "bat-mode" '("bat-")) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) (autoload 'battery "battery" "\ Display battery status information in the echo area. The text being displayed in the echo area is controlled by the variables `battery-echo-area-format' and `battery-status-function'." t) (defvar display-battery-mode nil "\ Non-nil if Display-Battery mode is enabled. See the `display-battery-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `display-battery-mode'.") (custom-autoload 'display-battery-mode "battery" nil) (autoload 'display-battery-mode "battery" "\ Toggle battery status display in mode line (Display Battery mode). The text displayed in the mode line is controlled by `battery-mode-line-format' and `battery-status-function'. The mode line is be updated every `battery-update-interval' seconds. The function which updates the mode-line display will call the functions in `battery-update-functions', which can be used to trigger actions based on battery-related events. This is a global minor mode. If called interactively, toggle the `Display-Battery mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='display-battery-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "battery" '("battery-")) ;;; Generated autoloads from emacs-lisp/benchmark.el (autoload 'benchmark-call "benchmark" "\ Measure the run time of calling FUNC a number REPETITIONS of times. The result is a list (TIME GC GCTIME) where TIME is the total time it took, in seconds. GCTIME is the amount of time that was spent in the GC and GC is the number of times the GC was called. REPETITIONS can also be a floating point number, in which case it specifies a minimum number of seconds that the benchmark execution should take. In that case the return value is prepended with the number of repetitions actually used. (fn FUNC &optional REPETITIONS)") (autoload 'benchmark-run "benchmark" "\ Time execution of FORMS. If REPETITIONS is supplied as a number, run FORMS that many times, accounting for the overhead of the resulting loop. Otherwise run FORMS once. Return a list of the total elapsed time for execution, the number of garbage collections that ran, and the time taken by garbage collection. See also `benchmark-run-compiled'. (fn &optional REPETITIONS &rest FORMS)" nil t) (function-put 'benchmark-run 'lisp-indent-function 1) (autoload 'benchmark-run-compiled "benchmark" "\ Time execution of compiled version of FORMS. This is like `benchmark-run', but what is timed is a funcall of the byte code obtained by wrapping FORMS in a `lambda' and compiling the result. The overhead of the `lambda's is accounted for. (fn &optional REPETITIONS &rest FORMS)" nil t) (function-put 'benchmark-run-compiled 'lisp-indent-function 1) (autoload 'benchmark "benchmark" "\ Print the time taken for REPETITIONS executions of FORM. Interactively, REPETITIONS is taken from the prefix arg, and the command prompts for the form to benchmark. For non-interactive use see also `benchmark-run' and `benchmark-run-compiled'. FORM can also be a function in which case we measure the time it takes to call it without any argument. (fn REPETITIONS FORM)" t) (autoload 'benchmark-progn "benchmark" "\ Evaluate BODY and message the time taken. The return value is the value of the final form in BODY. (fn &rest BODY)" nil t) (function-put 'benchmark-progn 'lisp-indent-function 0) (register-definition-prefixes "benchmark" '("benchmark-")) ;;; Generated autoloads from textmodes/bib-mode.el (register-definition-prefixes "bib-mode" '("bib-")) ;;; Generated autoloads from textmodes/bibtex.el (autoload 'bibtex-initialize "bibtex" "\ (Re)Initialize BibTeX buffers. Visit the BibTeX files defined by `bibtex-files' and return a list of corresponding buffers. Initialize in these buffers `bibtex-reference-keys' if not yet set. List of BibTeX buffers includes current buffer if CURRENT is non-nil and the current buffer visits a file using `bibtex-mode'. If FORCE is non-nil, (re)initialize `bibtex-reference-keys' even if already set. If SELECT is non-nil interactively select a BibTeX buffer. When called interactively, FORCE is t, CURRENT is t if current buffer visits a file using `bibtex-mode', and SELECT is t if current buffer does not use `bibtex-mode'. (fn &optional CURRENT FORCE SELECT)" t) (autoload 'bibtex-mode "bibtex" "\ Major mode for editing BibTeX files. General information on working with BibTeX mode: Use commands such as \\\\[bibtex-Book] to get a template for a specific entry. Then fill in all desired fields using \\[bibtex-next-field] to jump from field to field. After having filled in all desired fields in the entry, clean the new entry with the command \\[bibtex-clean-entry]. Some features of BibTeX mode are available only by setting the variable `bibtex-maintain-sorted-entries' to non-nil. However, then BibTeX mode works only with buffers containing valid (syntactically correct) and sorted entries. This is usually the case, if you have created a buffer completely with BibTeX mode and finished every new entry with \\[bibtex-clean-entry]. For third party BibTeX files, call the command \\[bibtex-convert-alien] to fully take advantage of all features of BibTeX mode. Special information: A command such as \\[bibtex-Book] outlines the fields for a BibTeX book entry. The names of optional fields start with the string OPT, and are thus ignored by BibTeX. The names of alternative fields from which only one is required start with the string ALT. The OPT or ALT string may be removed from the name of a field with \\[bibtex-remove-OPT-or-ALT]. \\[bibtex-make-field] inserts a new field after the current one. \\[bibtex-kill-field] kills the current field entirely. \\[bibtex-yank] yanks the last recently killed field after the current field. \\[bibtex-remove-delimiters] removes the double-quotes or braces around the text of the current field. \\[bibtex-empty-field] replaces the text of the current field with the default \"\" or {}. \\[bibtex-find-text] moves point to the end of the current field. \\[completion-at-point] completes word fragment before point according to context. The command \\[bibtex-clean-entry] cleans the current entry, i.e. it removes OPT/ALT from the names of all non-empty optional or alternative fields, checks that no required fields are empty, and does some formatting dependent on the value of `bibtex-entry-format'. Furthermore, it can automatically generate a key for the BibTeX entry, see `bibtex-generate-autokey'. Note: some functions in BibTeX mode depend on entries being in a special format (all fields beginning on separate lines), so it is usually a bad idea to remove `realign' from `bibtex-entry-format'. BibTeX mode supports Imenu and hideshow minor mode (`hs-minor-mode'). ---------------------------------------------------------- Entry to BibTeX mode calls the value of `bibtex-mode-hook' if that value is non-nil. \\{bibtex-mode-map} (fn)" t) (autoload 'bibtex-search-entry "bibtex" "\ Move point to the beginning of BibTeX entry named KEY. Return position of entry if KEY is found or nil if not found. With GLOBAL non-nil, search KEY in `bibtex-files'. Otherwise the search is limited to the current buffer. Optional arg START is buffer position where the search starts. If it is nil, start search at beginning of buffer. If DISPLAY is non-nil, display the buffer containing KEY. Otherwise, use `set-buffer'. When called interactively, START is nil, DISPLAY is t. Also, GLOBAL is t if the current mode is not `bibtex-mode' or `bibtex-search-entry-globally' is non-nil. A prefix arg negates the value of `bibtex-search-entry-globally'. (fn KEY &optional GLOBAL START DISPLAY)" t) (register-definition-prefixes "bibtex" '("bibtex-")) ;;; Generated autoloads from textmodes/bibtex-style.el (autoload 'bibtex-style-mode "bibtex-style" "\ Major mode for editing BibTeX style files. (fn)" t) (register-definition-prefixes "bibtex-style" '("bibtex-style-")) ;;; Generated autoloads from bind-key.el (push (purecopy '(bind-key 2 4 1)) package--builtin-versions) (defvar personal-keybindings nil "\ List of bindings performed by `bind-key'. Elements have the form ((KEY . [MAP]) CMD ORIGINAL-CMD)") (autoload 'bind-key "bind-key" "\ Bind KEY-NAME to COMMAND in KEYMAP (`global-map' if not passed). KEY-NAME may be a vector, in which case it is passed straight to `define-key'. Or it may be a string to be interpreted as spelled-out keystrokes, e.g., \"C-c C-z\". See the documentation of `edmacro-mode' for details. COMMAND must be an interactive function or lambda form. KEYMAP, if present, should be a keymap variable or symbol. For example: (bind-key \"M-h\" #\\='some-interactive-function my-mode-map) (bind-key \"M-h\" #\\='some-interactive-function \\='my-mode-map) If PREDICATE is non-nil, it is a form evaluated to determine when a key should be bound. It must return non-nil in such cases. Emacs can evaluate this form at any time that it does redisplay or operates on menu data structures, so you should write it so it can safely be called at any time. (fn KEY-NAME COMMAND &optional KEYMAP PREDICATE)" nil t) (autoload 'unbind-key "bind-key" "\ Unbind the given KEY-NAME, within the KEYMAP (if specified). See `bind-key' for more details. (fn KEY-NAME &optional KEYMAP)" nil t) (autoload 'bind-key* "bind-key" "\ Similar to `bind-key', but overrides any mode-specific bindings. (fn KEY-NAME COMMAND &optional PREDICATE)" nil t) (autoload 'bind-keys "bind-key" "\ Bind multiple keys at once. Accepts keyword arguments: :map MAP - a keymap into which the keybindings should be added :prefix KEY - prefix key for these bindings :prefix-map MAP - name of the prefix map that should be created for these bindings :prefix-docstring STR - docstring for the prefix-map variable :menu-name NAME - optional menu string for prefix map :repeat-docstring STR - docstring for the repeat-map variable :repeat-map MAP - name of the repeat map that should be created for these bindings. If specified, the `repeat-map' property of each command bound (within the scope of the `:repeat-map' keyword) is set to this map. :exit BINDINGS - Within the scope of `:repeat-map' will bind the key in the repeat map, but will not set the `repeat-map' property of the bound command. :continue BINDINGS - Within the scope of `:repeat-map' forces the same behavior as if no special keyword had been used (that is, the command is bound, and it's `repeat-map' property set) :filter FORM - optional form to determine when bindings apply The rest of the arguments are conses of keybinding string and a function symbol (unquoted). (fn &rest ARGS)" nil t) (autoload 'bind-keys* "bind-key" "\ Bind multiple keys at once, in `override-global-map'. Accepts the same keyword arguments as `bind-keys' (which see). This binds keys in such a way that bindings are not overridden by other modes. See `override-global-mode'. (fn &rest ARGS)" nil t) (autoload 'describe-personal-keybindings "bind-key" "\ Display all the personal keybindings defined by `bind-key'." t) (register-definition-prefixes "bind-key" '("bind-key" "override-global-m")) ;;; Generated autoloads from emacs-lisp/bindat.el (register-definition-prefixes "bindat" '("bindat-")) ;;; Generated autoloads from mail/binhex.el (defconst binhex-begin-line "^:...............................................................$" "\ Regular expression matching the start of a BinHex encoded region.") (autoload 'binhex-decode-region-internal "binhex" "\ Binhex decode region between START and END without using an external program. If HEADER-ONLY is non-nil only decode header and return filename. (fn START END &optional HEADER-ONLY)" t) (autoload 'binhex-decode-region-external "binhex" "\ Binhex decode region between START and END using external decoder. (fn START END)" t) (autoload 'binhex-decode-region "binhex" "\ Binhex decode region between START and END. (fn START END)" t) (register-definition-prefixes "binhex" '("binhex-")) ;;; Generated autoloads from play/blackbox.el (autoload 'blackbox "blackbox" "\ Play blackbox. Optional prefix argument is the number of balls; the default is 4. What is blackbox? Blackbox is a game of hide and seek played on an 8 by 8 grid (the Blackbox). Your opponent (Emacs, in this case) has hidden several balls (usually 4) within this box. By shooting rays into the box and observing where they emerge it is possible to deduce the positions of the hidden balls. The fewer rays you use to find the balls, the lower your score. Overview of play: \\To play blackbox, type \\[blackbox]. An optional prefix argument specifies the number of balls to be hidden in the box; the default is four. The cursor can be moved around the box with the standard cursor movement keys. To shoot a ray, move the cursor to the edge of the box and press SPC. The result will be determined and the playfield updated. You may place or remove balls in the box by moving the cursor into the box and pressing \\[bb-romp]. When you think the configuration of balls you have placed is correct, press \\[bb-done]. You will be informed whether you are correct or not, and be given your score. Your score is the number of letters and numbers around the outside of the box plus five for each incorrectly placed ball. If you placed any balls incorrectly, they will be indicated with `x', and their actual positions indicated with `o'. Details: There are three possible outcomes for each ray you send into the box: Detour: the ray is deflected and emerges somewhere other than where you sent it in. On the playfield, detours are denoted by matching pairs of numbers -- one where the ray went in, and the other where it came out. Reflection: the ray is reflected and emerges in the same place it was sent in. On the playfield, reflections are denoted by the letter `R'. Hit: the ray strikes a ball directly and is absorbed. It does not emerge from the box. On the playfield, hits are denoted by the letter `H'. The rules for how balls deflect rays are simple and are best shown by example. As a ray approaches a ball it is deflected ninety degrees. Rays can be deflected multiple times. In the diagrams below, the dashes represent empty box locations and the letter `O' represents a ball. The entrance and exit points of each ray are marked with numbers as described under \"Detour\" above. Note that the entrance and exit points are always interchangeable. `*' denotes the path taken by the ray. Note carefully the relative positions of the ball and the ninety degree deflection it causes. 1 - * - - - - - - - - - - - - - - - - - - - - - - - * - - - - - - - - - - - - - - - - - - - - - - 1 * * - - - - - - - - - - - - - - - O - - - - O - - - O - - - - - - - O - - - - - - - * * * * - - - - - - - - - - - - - * * * * * 2 3 * * * - - * - - - - - - - - - - - - - * - - - - - - - O - * - - - - - - - - - - - - - * - - - - - - - - * * - - - - - - - - - - - - - * - - - - - - - - * - O - 2 3 As mentioned above, a reflection occurs when a ray emerges from the same point it was sent in. This can happen in several ways: - - - - - - - - - - - - - - - - - - - - - - - - - - - - O - - - - - O - O - - - - - - - - - - - R * * * * - - - - - - - * - - - - O - - - - - - - - - - - O - - - - - - * - - - - R - - - - - - - - - - - - - - - - - - - * - - - - - - - - - - - - - - - - - - - - - - - * - - - - - - - - - - - - - - - - - - - - R * * * * - - - - - - - - - - - - - - - - - - - - - - - - O - - - - - - - - - - - In the first example, the ray is deflected downwards by the upper ball, then left by the lower ball, and finally retraces its path to its point of origin. The second example is similar. The third example is a bit anomalous but can be rationalized by realizing the ray never gets a chance to get into the box. Alternatively, the ray can be thought of as being deflected downwards and immediately emerging from the box. A hit occurs when a ray runs straight into a ball: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - O - - - - - - - - - - - - - - - O - - - H * * * * - - - - - - - - - - - - H * * * * O - - - - - - * - - - - - - - - - - - - - - - - O - - - - - - O - - - - H * * * O - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Be sure to compare the second example of a hit with the first example of a reflection. (fn NUM)" t) (register-definition-prefixes "blackbox" '("bb-" "blackbox-")) ;;; Generated autoloads from bookmark.el (keymap-set ctl-x-r-map "b" #'bookmark-jump) (keymap-set ctl-x-r-map "m" #'bookmark-set) (keymap-set ctl-x-r-map "M" #'bookmark-set-no-overwrite) (keymap-set ctl-x-r-map "l" #'bookmark-bmenu-list) (defvar-keymap bookmark-map :doc "\ Keymap containing bindings to bookmark functions. It is not bound to any key by default: to bind it so that you have a bookmark prefix, just use `global-set-key' and bind a key of your choice to variable `bookmark-map'. All interactive bookmark functions have a binding in this keymap." "x" #'bookmark-set "m" #'bookmark-set "M" #'bookmark-set-no-overwrite "j" #'bookmark-jump "g" #'bookmark-jump "o" #'bookmark-jump-other-window "5" #'bookmark-jump-other-frame "i" #'bookmark-insert "e" #'edit-bookmarks "f" #'bookmark-insert-location "r" #'bookmark-rename "d" #'bookmark-delete "D" #'bookmark-delete-all "l" #'bookmark-load "w" #'bookmark-write "s" #'bookmark-save) (fset 'bookmark-map bookmark-map) (autoload 'bookmark-set "bookmark" "\ Set a bookmark named NAME at the current location. If NAME is nil, then prompt the user. With a prefix arg (non-nil NO-OVERWRITE), do not overwrite any existing bookmark that has the same name as NAME, but instead push the new bookmark onto the bookmark alist. The most recently set bookmark with name NAME is thus the one in effect at any given time, but the others are still there, should the user decide to delete the most recent one. To yank words from the text of the buffer and use them as part of the bookmark name, type \\\\[bookmark-yank-word] while setting a bookmark. Successive \\[bookmark-yank-word]'s yank successive words. Typing \\[universal-argument] inserts (at the bookmark name prompt) the name of the last bookmark used in the document where the new bookmark is being set; this helps you use a single bookmark name to track progress through a large document. If there is no prior bookmark for this document, then \\[universal-argument] inserts an appropriate name based on the buffer or file. Use \\[bookmark-delete] to remove bookmarks (you give it a name and it removes only the first instance of a bookmark with that name from the list of bookmarks.) (fn &optional NAME NO-OVERWRITE)" t) (autoload 'bookmark-set-no-overwrite "bookmark" "\ Set a bookmark named NAME at the current location. If NAME is nil, then prompt the user. If a bookmark named NAME already exists and prefix argument PUSH-BOOKMARK is non-nil, then push the new bookmark onto the bookmark alist. Pushing it means that among bookmarks named NAME, this one becomes the one in effect, but the others are still there, in order, and become effective again if the user ever deletes the most recent one. Otherwise, if a bookmark named NAME already exists but PUSH-BOOKMARK is nil, raise an error. To yank words from the text of the buffer and use them as part of the bookmark name, type \\\\[bookmark-yank-word] while setting a bookmark. Successive \\[bookmark-yank-word]'s yank successive words. Typing \\[universal-argument] inserts (at the bookmark name prompt) the name of the last bookmark used in the document where the new bookmark is being set; this helps you use a single bookmark name to track progress through a large document. If there is no prior bookmark for this document, then \\[universal-argument] inserts an appropriate name based on the buffer or file. Use \\[bookmark-delete] to remove bookmarks (you give it a name and it removes only the first instance of a bookmark with that name from the list of bookmarks.) (fn &optional NAME PUSH-BOOKMARK)" t) (autoload 'bookmark-jump "bookmark" "\ Jump to bookmark BOOKMARK (a point in some file). You may have a problem using this function if the value of variable `bookmark-alist' is nil. If that happens, you need to load in some bookmarks. See help on function `bookmark-load' for more about this. If the file pointed to by BOOKMARK no longer exists, you will be asked if you wish to give the bookmark a new location, and `bookmark-jump' will then jump to the new location, as well as recording it in place of the old one in the permanent bookmark record. BOOKMARK is usually a bookmark name (a string). It can also be a bookmark record, but this is usually only done by programmatic callers. If DISPLAY-FUNC is non-nil, it is a function to invoke to display the bookmark. It defaults to `pop-to-buffer-same-window'. A typical value for DISPLAY-FUNC would be `switch-to-buffer-other-window'. (fn BOOKMARK &optional DISPLAY-FUNC)" t) (autoload 'bookmark-jump-other-window "bookmark" "\ Jump to BOOKMARK in another window. See `bookmark-jump' for more. (fn BOOKMARK)" t) (autoload 'bookmark-jump-other-frame "bookmark" "\ Jump to BOOKMARK in another frame. See `bookmark-jump' for more. (fn BOOKMARK)" t) (autoload 'bookmark-relocate "bookmark" "\ Relocate BOOKMARK-NAME to another file, reading file name with minibuffer. This makes an already existing bookmark point to that file, instead of the one it used to point at. Useful when a file has been renamed after a bookmark was set in it. (fn BOOKMARK-NAME)" t) (autoload 'bookmark-insert-location "bookmark" "\ Insert the name of the file associated with BOOKMARK-NAME. Optional second arg NO-HISTORY means don't record this in the minibuffer history list `bookmark-history'. (fn BOOKMARK-NAME &optional NO-HISTORY)" t) (defalias 'bookmark-locate 'bookmark-insert-location) (autoload 'bookmark-rename "bookmark" "\ Change the name of OLD-NAME bookmark to NEW-NAME name. If called from keyboard, prompt for OLD-NAME and NEW-NAME. If called from menubar, select OLD-NAME from a menu and prompt for NEW-NAME. If called from Lisp, prompt for NEW-NAME if only OLD-NAME was passed as an argument. If called with two strings, then no prompting is done. You must pass at least OLD-NAME when calling from Lisp. While you are entering the new name, consecutive \\\\[bookmark-yank-word]'s insert consecutive words from the text of the buffer into the new bookmark name. (fn OLD-NAME &optional NEW-NAME)" t) (autoload 'bookmark-insert "bookmark" "\ Insert the text of the file pointed to by bookmark BOOKMARK-NAME. BOOKMARK-NAME is a bookmark name (a string), not a bookmark record. You may have a problem using this function if the value of variable `bookmark-alist' is nil. If that happens, you need to load in some bookmarks. See help on function `bookmark-load' for more about this. (fn BOOKMARK-NAME)" t) (autoload 'bookmark-delete "bookmark" "\ Delete BOOKMARK-NAME from the bookmark list. Removes only the first instance of a bookmark with that name. If there are one or more other bookmarks with the same name, they will not be deleted. Defaults to the \"current\" bookmark (that is, the one most recently used in this file, if any). Optional second arg BATCH means don't update the bookmark list buffer, probably because we were called from there. (fn BOOKMARK-NAME &optional BATCH)" t) (autoload 'bookmark-delete-all "bookmark" "\ Permanently delete all bookmarks. If optional argument NO-CONFIRM is non-nil, don't ask for confirmation. (fn &optional NO-CONFIRM)" t) (autoload 'bookmark-write "bookmark" "\ Write bookmarks to a file (reading the file name with the minibuffer)." t) (function-put 'bookmark-write 'interactive-only 'bookmark-save) (autoload 'bookmark-save "bookmark" "\ Save currently defined bookmarks in FILE. FILE defaults to `bookmark-default-file'. With prefix PARG, query user for a file to save in. If MAKE-DEFAULT is non-nil (interactively with prefix \\[universal-argument] \\[universal-argument]) the file we save in becomes the new default in the current Emacs session (without affecting the value of `bookmark-default-file'.). When you want to load in the bookmarks from a file, use `bookmark-load', \\[bookmark-load]. That function will prompt you for a file, defaulting to the file defined by variable `bookmark-default-file'. (fn &optional PARG FILE MAKE-DEFAULT)" t) (autoload 'bookmark-load "bookmark" "\ Load bookmarks from FILE (which must be in bookmark format). Appends loaded bookmarks to the front of the list of bookmarks. If argument OVERWRITE is non-nil, existing bookmarks are destroyed. Optional third arg NO-MSG means don't display any messages while loading. If DEFAULT is non-nil make FILE the new bookmark file to watch. Interactively, a prefix arg makes OVERWRITE and DEFAULT non-nil. If you load a file that doesn't contain a proper bookmark alist, you will corrupt Emacs's bookmark list. Generally, you should only load in files that were created with the bookmark functions in the first place. Your own personal bookmark file, specified by the variable `bookmark-default-file', is maintained automatically by Emacs; you shouldn't need to load it explicitly. If you load a file containing bookmarks with the same names as bookmarks already present in your Emacs, the new bookmarks will get unique numeric suffixes \"<2>\", \"<3>\", etc. (fn FILE &optional OVERWRITE NO-MSG DEFAULT)" t) (autoload 'bookmark-bmenu-get-buffer "bookmark" "\ Return the Bookmark List, building it if it doesn't exists. Don't affect the buffer ring order.") (autoload 'bookmark-bmenu-list "bookmark" "\ Display a list of existing bookmarks. The list is displayed in a buffer named `*Bookmark List*'. The leftmost column displays a D if the bookmark is flagged for deletion, or > if it is flagged for displaying." t) (defalias 'list-bookmarks 'bookmark-bmenu-list) (defalias 'edit-bookmarks 'bookmark-bmenu-list) (autoload 'bookmark-bmenu-search "bookmark" "\ Incremental search of bookmarks, hiding the non-matches as we go." '(bookmark-bmenu-mode)) (defvar menu-bar-bookmark-map (let ((map (make-sparse-keymap "Bookmark functions"))) (bindings--define-key map [load] '(menu-item "Load a Bookmark File..." bookmark-load :help "Load bookmarks from a bookmark file)")) (bindings--define-key map [write] '(menu-item "Save Bookmarks As..." bookmark-write :help "Write bookmarks to a file (reading the file name with the minibuffer)")) (bindings--define-key map [save] '(menu-item "Save Bookmarks" bookmark-save :help "Save currently defined bookmarks")) (bindings--define-key map [edit] '(menu-item "Edit Bookmark List" bookmark-bmenu-list :help "Display a list of existing bookmarks")) (bindings--define-key map [delete] '(menu-item "Delete Bookmark..." bookmark-delete :help "Delete a bookmark from the bookmark list")) (bindings--define-key map [delete-all] '(menu-item "Delete all Bookmarks..." bookmark-delete-all :help "Delete all bookmarks from the bookmark list")) (bindings--define-key map [rename] '(menu-item "Rename Bookmark..." bookmark-rename :help "Change the name of a bookmark")) (bindings--define-key map [locate] '(menu-item "Insert Location..." bookmark-locate :help "Insert the name of the file associated with a bookmark")) (bindings--define-key map [insert] '(menu-item "Insert Contents..." bookmark-insert :help "Insert the text of the file pointed to by a bookmark")) (bindings--define-key map [set] '(menu-item "Set Bookmark..." bookmark-set :help "Set a bookmark named inside a file.")) (bindings--define-key map [jump] '(menu-item "Jump to Bookmark..." bookmark-jump :help "Jump to a bookmark (a point in some file)")) map)) (defalias 'menu-bar-bookmark-map menu-bar-bookmark-map) (register-definition-prefixes "bookmark" '("bookmark-" "with-buffer-modified-unmodified")) ;;; Generated autoloads from cedet/semantic/bovine.el (register-definition-prefixes "semantic/bovine" '("semantic-")) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function 'browse-url-default-browser "\ Function to display the current buffer in a WWW browser. This is used by the `browse-url-at-point', `browse-url-at-mouse', and `browse-url-of-file' commands. Also see `browse-url-secondary-browser-function' and `browse-url-handlers'.") (custom-autoload 'browse-url-browser-function "browse-url" t) (defvar browse-url-default-handlers '(("\\`mailto:" . browse-url--mailto) ("\\`man:" . browse-url--man) ("\\`irc6?s?://" . browse-url--irc) (browse-url--non-html-file-url-p . browse-url-emacs)) "\ Like `browse-url-handlers' but populated by Emacs and packages. Emacs and external packages capable of browsing certain URLs should place their entries in this alist rather than `browse-url-handlers' which is reserved for the user.") (autoload 'browse-url-select-handler "browse-url" "\ Return a handler of suitable for browsing URL. This searches `browse-url-handlers', and `browse-url-default-handlers' for a matching handler. Return nil if no handler is found. If KIND is given, the search is restricted to handlers whose function symbol has the symbol-property `browse-url-browser-kind' set to KIND. Currently, it also consults `browse-url-browser-function' first if it is set to an alist, although this usage is deprecated since Emacs 28.1 and will be removed in a future release. (fn URL &optional KIND)") (autoload 'browse-url-of-file "browse-url" "\ Use a web browser to display FILE. Display the current buffer's file if FILE is nil or if called interactively. Turn the filename into a URL with function `browse-url-file-url'. Pass the URL to a browser using the `browse-url' function then run `browse-url-of-file-hook'. (fn &optional FILE)" t) (autoload 'browse-url-of-buffer "browse-url" "\ Use a web browser to display BUFFER. See `browse-url' for details. Display the current buffer if BUFFER is nil. Display only the currently visible part of BUFFER (from a temporary file) if buffer is narrowed. (fn &optional BUFFER)" t) (autoload 'browse-url-of-dired-file "browse-url" "\ In Dired, ask a WWW browser to display the file named on this line. With prefix arg, use the secondary browser instead (e.g. EWW if `browse-url-secondary-browser-function' is set to `eww-browse-url'. (fn &optional SECONDARY)" t) (autoload 'browse-url-of-region "browse-url" "\ Use a web browser to display the current region. See `browse-url' for details. (fn MIN MAX)" t) (autoload 'browse-url "browse-url" "\ Open URL using a configurable method. This will typically (by default) open URL with an external web browser, but a wide variety of different methods can be used, depending on the URL type. The variables `browse-url-browser-function', `browse-url-handlers', and `browse-url-default-handlers' determine which browser function to use. Interactively, this command prompts for a URL, defaulting to the URL at or before point. The additional ARGS are passed to the browser function. See the doc strings of the actual functions, starting with `browse-url-browser-function', for information about the significance of ARGS (most of the functions ignore it). If ARGS are omitted, the default is to pass `browse-url-new-window-flag' as ARGS. Interactively, pass the prefix arg as ARGS; if `browse-url-new-window-flag' is non-nil, invert the prefix arg instead. (fn URL &rest ARGS)" t) (autoload 'browse-url-at-point "browse-url" "\ Open URL at point using a configurable method. See `browse-url' for details. Optional prefix argument ARG non-nil inverts the value of the option `browse-url-new-window-flag'. (fn &optional ARG)" t) (autoload 'browse-url-with-browser-kind "browse-url" "\ Browse URL with a browser of the given browser KIND. KIND is either `internal' or `external'. When called interactively, the default browser kind is the opposite of the browser kind of `browse-url-browser-function'. (fn KIND URL &optional ARG)" t) (autoload 'browse-url-at-mouse "browse-url" "\ Use a web browser to load a URL clicked with the mouse. See `browse-url' for details. The URL is the one around or before the position of the mouse click but point is not changed. (fn EVENT)" t) (autoload 'browse-url-xdg-open "browse-url" "\ Pass the specified URL to the \"xdg-open\" command. xdg-open is a desktop utility that calls your preferred web browser. The optional argument IGNORED is not used. (fn URL &optional IGNORED)" t) (autoload 'browse-url-mozilla "browse-url" "\ Ask the Mozilla WWW browser to load URL. Default to the URL around or before point. The strings in variable `browse-url-mozilla-arguments' are also passed to Mozilla. When called interactively, if variable `browse-url-new-window-flag' is non-nil, load the document in a new Mozilla window, otherwise use a random existing one. A non-nil interactive prefix argument reverses the effect of `browse-url-new-window-flag'. If `browse-url-mozilla-new-window-is-tab' is non-nil, then whenever a document would otherwise be loaded in a new window, it is loaded in a new tab in an existing window instead. When called non-interactively, optional second argument NEW-WINDOW is used instead of `browse-url-new-window-flag'. (fn URL &optional NEW-WINDOW)" t) (make-obsolete 'browse-url-mozilla 'nil "29.1") (autoload 'browse-url-firefox "browse-url" "\ Ask the Firefox WWW browser to load URL. Defaults to the URL around or before point. Passes the strings in the variable `browse-url-firefox-arguments' to Firefox. Interactively, if the variable `browse-url-new-window-flag' is non-nil, loads the document in a new Firefox window. A non-nil prefix argument reverses the effect of `browse-url-new-window-flag'. If `browse-url-firefox-new-window-is-tab' is non-nil, then whenever a document would otherwise be loaded in a new window, it is loaded in a new tab in an existing window instead. Non-interactively, this uses the optional second argument NEW-WINDOW instead of `browse-url-new-window-flag'. (fn URL &optional NEW-WINDOW)" t) (autoload 'browse-url-chromium "browse-url" "\ Ask the Chromium WWW browser to load URL. Default to the URL around or before point. The strings in variable `browse-url-chromium-arguments' are also passed to Chromium. The optional argument NEW-WINDOW is not used. (fn URL &optional NEW-WINDOW)" t) (autoload 'browse-url-webpositive "browse-url" "\ Ask the WebPositive WWW browser to load URL. Default to the URL around or before point. The optional argument NEW-WINDOW is not used. (fn URL &optional NEW-WINDOW)" t) (autoload 'browse-url-default-haiku-browser "browse-url" "\ Browse URL with the system default browser. Default to the URL around or before point. (fn URL &optional NEW-WINDOW)" t) (autoload 'browse-url-default-android-browser "browse-url" "\ Browse URL with the system default browser. If `browse-url-android-share' is non-nil, try to share URL using an external program instead. Default to the URL around or before point. (fn URL &optional NEW-WINDOW)" t) (autoload 'browse-url-emacs "browse-url" "\ Ask Emacs to load URL into a buffer and show it in another window. Optional argument SAME-WINDOW non-nil means show the URL in the currently selected window instead. (fn URL &optional SAME-WINDOW)" t) (autoload 'browse-url-gnome-moz "browse-url" "\ Ask Mozilla to load URL via the GNOME program `gnome-moz-remote'. Default to the URL around or before point. The strings in variable `browse-url-gnome-moz-arguments' are also passed. When called interactively, if variable `browse-url-new-window-flag' is non-nil, load the document in a new browser window, otherwise use an existing one. A non-nil interactive prefix argument reverses the effect of `browse-url-new-window-flag'. When called non-interactively, optional second argument NEW-WINDOW is used instead of `browse-url-new-window-flag'. (fn URL &optional NEW-WINDOW)" t) (make-obsolete 'browse-url-gnome-moz 'nil "25.1") (autoload 'browse-url-conkeror "browse-url" "\ Ask the Conkeror WWW browser to load URL. Default to the URL around or before point. Also pass the strings in the variable `browse-url-conkeror-arguments' to Conkeror. When called interactively, if variable `browse-url-new-window-flag' is non-nil, load the document in a new Conkeror window, otherwise use a random existing one. A non-nil interactive prefix argument reverses the effect of `browse-url-new-window-flag'. If variable `browse-url-conkeror-new-window-is-buffer' is non-nil, then whenever a document would otherwise be loaded in a new window, load it in a new buffer in an existing window instead. When called non-interactively, use optional second argument NEW-WINDOW instead of `browse-url-new-window-flag'. (fn URL &optional NEW-WINDOW)" t) (make-obsolete 'browse-url-conkeror 'nil "28.1") (autoload 'browse-url-w3 "browse-url" "\ Ask the w3 WWW browser to load URL. Default to the URL around or before point. When called interactively, if variable `browse-url-new-window-flag' is non-nil, load the document in a new window. A non-nil interactive prefix argument reverses the effect of `browse-url-new-window-flag'. When called non-interactively, optional second argument NEW-WINDOW is used instead of `browse-url-new-window-flag'. (fn URL &optional NEW-WINDOW)" t) (make-obsolete 'browse-url-w3 'nil "29.1") (autoload 'browse-url-w3-gnudoit "browse-url" "\ Ask another Emacs running emacsclient to load the URL using the W3 browser. The `browse-url-gnudoit-program' program is used with options given by `browse-url-gnudoit-args'. Default to the URL around or before point. (fn URL &optional NEW-WINDOW)" t) (make-obsolete 'browse-url-w3-gnudoit 'nil "25.1") (autoload 'browse-url-text-xterm "browse-url" "\ Ask a text browser to load URL. URL defaults to the URL around or before point. This runs the text browser specified by `browse-url-text-browser'. in an Xterm window using the Xterm program named by `browse-url-xterm-program' with possible additional arguments `browse-url-xterm-args'. The optional argument NEW-WINDOW is not used. (fn URL &optional NEW-WINDOW)" t) (autoload 'browse-url-text-emacs "browse-url" "\ Ask a text browser to load URL. URL defaults to the URL around or before point. This runs the text browser specified by `browse-url-text-browser'. With a prefix argument, it runs a new browser process in a new buffer. When called interactively, if variable `browse-url-new-window-flag' is non-nil, load the document in a new browser process in a new term window, otherwise use any existing one. A non-nil interactive prefix argument reverses the effect of `browse-url-new-window-flag'. When called non-interactively, optional second argument NEW-WINDOW is used instead of `browse-url-new-window-flag'. (fn URL &optional NEW-BUFFER)" t) (autoload 'browse-url-irc "browse-url" "\ Call `url-irc' directly after parsing URL. This function is a fit for options like `gnus-button-alist'. (fn URL &rest _)") (autoload 'browse-url-mail "browse-url" "\ Open a new mail message buffer within Emacs for the RFC 2368 URL. Default to using the mailto: URL around or before point as the recipient's address. Supplying a non-nil interactive prefix argument will cause the mail to be composed in another window rather than the current one. When called interactively, if variable `browse-url-new-window-flag' is non-nil use `compose-mail-other-window', otherwise `compose-mail'. A non-nil interactive prefix argument reverses the effect of `browse-url-new-window-flag'. When called non-interactively, optional second argument NEW-WINDOW is used instead of `browse-url-new-window-flag'. (fn URL &optional NEW-WINDOW)" t) (autoload 'browse-url-generic "browse-url" "\ Ask the WWW browser defined by `browse-url-generic-program' to load URL. Default to the URL around or before point. A fresh copy of the browser is started up in a new process with possible additional arguments `browse-url-generic-args'. This is appropriate for browsers which don't offer a form of remote control. (fn URL &optional NEW-WINDOW)" t) (autoload 'browse-url-kde "browse-url" "\ Ask the KDE WWW browser to load URL. Default to the URL around or before point. The optional argument NEW-WINDOW is not used. (fn URL &optional NEW-WINDOW)" t) (autoload 'browse-url-elinks "browse-url" "\ Ask the Elinks WWW browser to load URL. Default to the URL around the point. The document is loaded in a new tab of a running Elinks or, if none yet running, a newly started instance. The Elinks command will be prepended by the program+arguments from `browse-url-elinks-wrapper'. (fn URL &optional NEW-WINDOW)" t) (autoload 'browse-url-button-open "browse-url" "\ Follow the link under point using `browse-url'. If EXTERNAL (the prefix if used interactively), open with the external browser instead of the default one. (fn &optional EXTERNAL MOUSE-EVENT)" t) (autoload 'browse-url-button-open-url "browse-url" "\ Open URL using `browse-url'. If `current-prefix-arg' is non-nil, use `browse-url-secondary-browser-function' instead. (fn URL)") (register-definition-prefixes "browse-url" '("browse-url-")) ;;; Generated autoloads from bs.el (autoload 'bs-cycle-next "bs" "\ Select next buffer defined by buffer cycling. The buffers taking part in buffer cycling are defined by buffer configuration `bs-cycle-configuration-name'." t) (autoload 'bs-cycle-previous "bs" "\ Select previous buffer defined by buffer cycling. The buffers taking part in buffer cycling are defined by buffer configuration `bs-cycle-configuration-name'." t) (autoload 'bs-customize "bs" "\ Customization of group bs for Buffer Selection Menu." t) (autoload 'bs-show "bs" "\ Make a menu of buffers so you can manipulate buffers or the buffer list. \\ There are many key commands similar to `Buffer-menu-mode' for manipulating the buffer list and the buffers themselves. User can move with [up] or [down], select a buffer by \\[bs-select] or [SPC] Type \\[bs-kill] to leave Buffer Selection Menu without a selection. Type \\[describe-mode] after invocation to get help on commands available. With prefix argument ARG show a different buffer list. Function `bs--configuration-name-for-prefix-arg' determine accordingly name of buffer configuration. (fn ARG)" t) (register-definition-prefixes "bs" '("bs-")) ;;; Generated autoloads from play/bubbles.el (autoload 'bubbles "bubbles" "\ Play Bubbles game. \\ The goal is to remove all bubbles with as few moves as possible. \\[bubbles-plop] on a bubble removes that bubble and all connected bubbles of the same color. Unsupported bubbles fall down, and columns that do not contain any bubbles suck the columns on its right towards the left. \\[bubbles-set-game-easy] sets the difficulty to easy. \\[bubbles-set-game-medium] sets the difficulty to medium. \\[bubbles-set-game-difficult] sets the difficulty to difficult. \\[bubbles-set-game-hard] sets the difficulty to hard." t) (register-definition-prefixes "bubbles" '("bubbles-")) ;;; Generated autoloads from progmodes/bug-reference.el (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) (put 'bug-reference-bug-regexp 'safe-local-variable 'stringp) (autoload 'bug-reference-mode "bug-reference" "\ Toggle hyperlinking bug references in the buffer (Bug Reference mode). This is a minor mode. If called interactively, toggle the `Bug-Reference mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `bug-reference-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'bug-reference-prog-mode "bug-reference" "\ Like `bug-reference-mode', but only buttonize in comments and strings. This is a minor mode. If called interactively, toggle the `Bug-Reference-Prog mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `bug-reference-prog-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "bug-reference" '("bug-reference-")) ;;; Generated autoloads from emacs-lisp/byte-opt.el (register-definition-prefixes "byte-opt" '("byte" "disassemble-offset")) ;;; Generated autoloads from emacs-lisp/bytecomp.el (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) (put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp) (put 'byte-compile-error-on-warn 'safe-local-variable 'booleanp) (put 'byte-compile-warnings 'safe-local-variable (lambda (v) (or (symbolp v) (null (delq nil (mapcar (lambda (x) (not (symbolp x))) v)))))) (autoload 'byte-compile-warning-enabled-p "bytecomp" "\ Return non-nil if WARNING is enabled, according to `byte-compile-warnings'. (fn WARNING &optional SYMBOL)") (autoload 'byte-compile-disable-warning "bytecomp" "\ Change `byte-compile-warnings' to disable WARNING. If `byte-compile-warnings' is t, set it to `(not WARNING)'. Otherwise, if the first element is `not', add WARNING, else remove it. Normally you should let-bind `byte-compile-warnings' before calling this, else the global value will be modified. (fn WARNING)") (autoload 'byte-compile-enable-warning "bytecomp" "\ Change `byte-compile-warnings' to enable WARNING. If `byte-compile-warnings' is t, do nothing. Otherwise, if the first element is `not', remove WARNING, else add it. Normally you should let-bind `byte-compile-warnings' before calling this, else the global value will be modified. (fn WARNING)") (autoload 'byte-compile-warn-obsolete "bytecomp" "\ Warn that SYMBOL (a variable, function or generalized variable) is obsolete. TYPE is a string that say which one of these three types it is. (fn SYMBOL TYPE)") (autoload 'byte-force-recompile "bytecomp" "\ Recompile every `.el' file in DIRECTORY that already has a `.elc' file. Files in subdirectories of DIRECTORY are processed also. (fn DIRECTORY)" t) (autoload 'byte-recompile-directory "bytecomp" "\ Recompile every `.el' file in DIRECTORY that needs recompilation. This happens when a `.elc' file exists but is older than the `.el' file. Files in subdirectories of DIRECTORY are processed also. If the `.elc' file does not exist, normally this function *does not* compile the corresponding `.el' file. However, if the prefix argument ARG is 0, that means do compile all those files. A nonzero ARG means ask the user, for each such `.el' file, whether to compile it. A nonzero ARG also means ask about each subdirectory before scanning it. If the third argument FORCE is non-nil, recompile every `.el' file that already has a `.elc' file. This command will normally not follow symlinks when compiling files. If FOLLOW-SYMLINKS is non-nil, symlinked `.el' files will also be compiled. (fn DIRECTORY &optional ARG FORCE FOLLOW-SYMLINKS)" t) (put 'no-byte-compile 'safe-local-variable 'booleanp) (autoload 'byte-compile-file "bytecomp" "\ Compile a file of Lisp code named FILENAME into a file of byte code. The output file's name is generated by passing FILENAME to the function `byte-compile-dest-file' (which see). The value is non-nil if there were no errors, nil if errors. If the file sets the file variable `no-byte-compile', it is not compiled, any existing output file is removed, and the return value is `no-byte-compile'. See also `emacs-lisp-byte-compile-and-load'. (fn FILENAME &optional LOAD)" t) (set-advertised-calling-convention 'byte-compile-file '(filename) '"28.1") (autoload 'compile-defun "bytecomp" "\ Compile and evaluate the current top-level form. Print the result in the echo area. With argument ARG, insert value in current buffer after the form. (fn &optional ARG)" t) (autoload 'byte-compile "bytecomp" "\ If FORM is a symbol, byte-compile its function definition. If FORM is a lambda or a macro, byte-compile it as a function. (fn FORM)") (autoload 'display-call-tree "bytecomp" "\ Display a call graph of a specified file. This lists which functions have been called, what functions called them, and what functions they call. The list includes all functions whose definitions have been compiled in this Emacs session, as well as all functions called by those functions. The call graph does not include macros, inline functions, or primitives that the byte-code interpreter knows about directly (`eq', `cons', etc.). The call tree also lists those functions which are not known to be called (that is, to which no calls have been compiled), and which cannot be invoked interactively. (fn &optional FILENAME)" t) (autoload 'batch-byte-compile-if-not-done "bytecomp" "\ Like `byte-compile-file' but doesn't recompile if already up to date. Use this from the command line, with `-batch'; it won't work in an interactive Emacs.") (autoload 'batch-byte-compile "bytecomp" "\ Run `byte-compile-file' on the files remaining on the command line. Use this from the command line, with `-batch'; it won't work in an interactive Emacs. Each file is processed even if an error occurred previously. If a file name denotes a directory, all Emacs Lisp source files in that directory (that have previously been compiled) will be recompiled if newer than the compiled files. In this case, NOFORCE is ignored. For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\". If NOFORCE is non-nil, don't recompile a file that seems to be already up-to-date. (fn &optional NOFORCE)") (autoload 'batch-byte-recompile-directory "bytecomp" "\ Run `byte-recompile-directory' on the dirs remaining on the command line. Must be used only with `-batch', and kills Emacs on completion. For example, invoke `emacs -batch -f batch-byte-recompile-directory .'. Optional argument ARG is passed as second argument ARG to `byte-recompile-directory'; see there for its possible values and corresponding effects. (fn &optional ARG)") (register-definition-prefixes "bytecomp" '("batch-byte-compile-file" "byte" "displaying-byte-compile-warnings" "emacs-lisp-" "no-byte-compile")) ;;; Generated autoloads from cedet/semantic/bovine/c.el (register-definition-prefixes "semantic/bovine/c" '("semantic")) ;;; Generated autoloads from progmodes/c-ts-common.el (register-definition-prefixes "c-ts-common" '("c-ts-common-")) ;;; Generated autoloads from progmodes/c-ts-mode.el (autoload 'c-ts-mode "c-ts-mode" "\ Major mode for editing C, powered by tree-sitter. This mode is independent from the classic cc-mode.el based `c-mode', so configuration variables of that mode, like `c-basic-offset', don't affect this mode. To use tree-sitter C/C++ modes by default, evaluate (add-to-list \\='major-mode-remap-alist \\='(c-mode . c-ts-mode)) (add-to-list \\='major-mode-remap-alist \\='(c++-mode . c++-ts-mode)) (add-to-list \\='major-mode-remap-alist \\='(c-or-c++-mode . c-or-c++-ts-mode)) in your init files. (fn)" t) (autoload 'c++-ts-mode "c-ts-mode" "\ Major mode for editing C++, powered by tree-sitter. This mode is independent from the classic cc-mode.el based `c++-mode', so configuration variables of that mode, like `c-basic-offset', don't affect this mode. To use tree-sitter C/C++ modes by default, evaluate (add-to-list \\='major-mode-remap-alist \\='(c-mode . c-ts-mode)) (add-to-list \\='major-mode-remap-alist \\='(c++-mode . c++-ts-mode)) (add-to-list \\='major-mode-remap-alist \\='(c-or-c++-mode . c-or-c++-ts-mode)) in your init files. Since this mode uses a parser, unbalanced brackets might cause some breakage in indentation/fontification. Therefore, it's recommended to enable `electric-pair-mode' with this mode. (fn)" t) (autoload 'c-or-c++-ts-mode "c-ts-mode" "\ Analyze buffer and enable either C or C++ mode. Some people and projects use .h extension for C++ header files which is also the one used for C header files. This makes matching on file name insufficient for detecting major mode that should be used. This function attempts to use file contents to determine whether the code is C or C++, and based on that chooses whether to enable `c-ts-mode' or `c++-ts-mode'." t) (make-obsolete 'c-or-c++-ts-mode 'c-or-c++-mode "30.1") (register-definition-prefixes "c-ts-mode" '("c-ts-")) ;;; Generated autoloads from calendar/cal-bahai.el (register-definition-prefixes "cal-bahai" '("calendar-bahai-" "diary-bahai-" "holiday-bahai")) ;;; Generated autoloads from calendar/cal-china.el (put 'calendar-chinese-time-zone 'risky-local-variable t) (register-definition-prefixes "cal-china" '("calendar-chinese-" "diary-chinese-" "holiday-chinese")) ;;; Generated autoloads from calendar/cal-coptic.el (register-definition-prefixes "cal-coptic" '("calendar-" "diary-")) ;;; Generated autoloads from calendar/cal-dst.el (put 'calendar-daylight-savings-starts 'risky-local-variable t) (put 'calendar-daylight-savings-ends 'risky-local-variable t) (put 'calendar-current-time-zone-cache 'risky-local-variable t) (register-definition-prefixes "cal-dst" '("calendar-" "dst-")) ;;; Generated autoloads from calendar/cal-french.el (register-definition-prefixes "cal-french" '("calendar-french-" "diary-french-date")) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR. When called interactively from the calendar window, the date of death is taken from the cursor position. (fn DEATH-DATE START-YEAR END-YEAR)" t) (register-definition-prefixes "cal-hebrew" '("calendar-hebrew-" "diary-hebrew-" "holiday-hebrew")) ;;; Generated autoloads from calendar/cal-html.el (register-definition-prefixes "cal-html" '("cal-html-")) ;;; Generated autoloads from calendar/cal-islam.el (register-definition-prefixes "cal-islam" '("calendar-islamic-" "diary-islamic-" "holiday-islamic")) ;;; Generated autoloads from calendar/cal-iso.el (register-definition-prefixes "cal-iso" '("calendar-iso-" "diary-iso-date")) ;;; Generated autoloads from calendar/cal-julian.el (register-definition-prefixes "cal-julian" '("calendar-" "diary-" "holiday-julian")) ;;; Generated autoloads from calendar/cal-mayan.el (register-definition-prefixes "cal-mayan" '("calendar-mayan-" "diary-mayan-date")) ;;; Generated autoloads from calendar/cal-menu.el (register-definition-prefixes "cal-menu" '("cal")) ;;; Generated autoloads from calendar/cal-move.el (register-definition-prefixes "cal-move" '("calendar-")) ;;; Generated autoloads from calendar/cal-persia.el (register-definition-prefixes "cal-persia" '("calendar-persian-" "diary-persian-date")) ;;; Generated autoloads from calendar/cal-tex.el (register-definition-prefixes "cal-tex" '("cal-tex-")) ;;; Generated autoloads from calendar/cal-x.el (register-definition-prefixes "cal-x" '("calendar-" "diary-frame")) ;;; Generated autoloads from calc/calc.el (define-key ctl-x-map "*" 'calc-dispatch) (autoload 'calc-dispatch "calc" "\ Invoke the GNU Emacs Calculator. See \\[calc-dispatch-help] for details. (fn &optional ARG)" t) (autoload 'calc "calc" "\ The Emacs Calculator. Full documentation is listed under `calc-mode'. (fn &optional ARG FULL-DISPLAY INTERACTIVE)" t) (autoload 'full-calc "calc" "\ Invoke the Calculator and give it a full-sized window. (fn &optional INTERACTIVE)" t) (autoload 'quick-calc "calc" "\ Do a quick calculation in the minibuffer without invoking full Calculator. With prefix argument INSERT, insert the result in the current buffer. Otherwise, the result is copied into the kill ring. (fn &optional INSERT)" t) (autoload 'calc-eval "calc" "\ Do a quick calculation and return the result as a string. Return value will either be the formatted result in string form, or a list containing a character position and an error message in string form. (fn STR &optional SEPARATOR &rest ARGS)") (autoload 'calc-keypad "calc" "\ Invoke the Calculator in \"visual keypad\" mode. This is most useful in the X window system. In this mode, click on the Calc \"buttons\" using the left mouse button. Or, position the cursor manually and do \\[calc-keypad-press]. (fn &optional INTERACTIVE)" t) (autoload 'full-calc-keypad "calc" "\ Invoke the Calculator in full-screen \"visual keypad\" mode. See calc-keypad for details. (fn &optional INTERACTIVE)" t) (autoload 'calc-grab-region "calc" "\ Parse the region as a vector of numbers and push it on the Calculator stack. (fn TOP BOT ARG)" t) (autoload 'calc-grab-rectangle "calc" "\ Parse a rectangle as a matrix of numbers and push it on the Calculator stack. (fn TOP BOT ARG)" t) (autoload 'calc-grab-sum-down "calc" "\ Parse a rectangle as a matrix of numbers and sum its columns. (fn TOP BOT ARG)" t) (autoload 'calc-grab-sum-across "calc" "\ Parse a rectangle as a matrix of numbers and sum its rows. (fn TOP BOT ARG)" t) (autoload 'calc-embedded "calc" "\ Start Calc Embedded mode on the formula surrounding point. (fn ARG &optional END OBEG OEND)" t) (autoload 'calc-embedded-activate "calc" "\ Scan the current editing buffer for all embedded := and => formulas. Also looks for the equivalent TeX words, \\gets and \\evalto. (fn &optional ARG CBUF)" t) (autoload 'defmath "calc" "\ Define Calc function. Like `defun' except that code in the body of the definition can make use of the full range of Calc data types and the usual arithmetic operations are converted to their Calc equivalents. The prefix `calcFunc-' is added to the specified name to get the actual Lisp function name. See Info node `(calc)Defining Functions'. (fn FUNC ARGS &rest BODY)" nil t) (function-put 'defmath 'doc-string-elt 3) (function-put 'defmath 'lisp-indent-function 'defun) (register-definition-prefixes "calc" '("calc" "defcalcmodevar" "inexact-result" "math-" "var-")) ;;; Generated autoloads from calc/calc-aent.el (register-definition-prefixes "calc-aent" '("calc" "math-")) ;;; Generated autoloads from calc/calc-alg.el (register-definition-prefixes "calc-alg" '("calc" "math-")) ;;; Generated autoloads from calc/calc-arith.el (register-definition-prefixes "calc-arith" '("calc" "math-")) ;;; Generated autoloads from calc/calc-bin.el (register-definition-prefixes "calc-bin" '("calc" "math-")) ;;; Generated autoloads from calc/calc-comb.el (register-definition-prefixes "calc-comb" '("calc" "math-")) ;;; Generated autoloads from calc/calc-cplx.el (register-definition-prefixes "calc-cplx" '("calc" "math-")) ;;; Generated autoloads from calc/calc-embed.el (register-definition-prefixes "calc-embed" '("calc-")) ;;; Generated autoloads from calc/calc-ext.el (register-definition-prefixes "calc-ext" '("calc" "math-" "var-")) ;;; Generated autoloads from calc/calc-fin.el (register-definition-prefixes "calc-fin" '("calc" "math-c")) ;;; Generated autoloads from calc/calc-forms.el (register-definition-prefixes "calc-forms" '("calc" "math-" "var-TimeZone")) ;;; Generated autoloads from calc/calc-frac.el (register-definition-prefixes "calc-frac" '("calc" "math-")) ;;; Generated autoloads from calc/calc-funcs.el (register-definition-prefixes "calc-funcs" '("calc" "math-")) ;;; Generated autoloads from calc/calc-graph.el (register-definition-prefixes "calc-graph" '("calc-")) ;;; Generated autoloads from calc/calc-help.el (register-definition-prefixes "calc-help" '("calc-")) ;;; Generated autoloads from calc/calc-incom.el (register-definition-prefixes "calc-incom" '("calc-")) ;;; Generated autoloads from calc/calc-keypd.el (register-definition-prefixes "calc-keypd" '("calc-")) ;;; Generated autoloads from calc/calc-lang.el (register-definition-prefixes "calc-lang" '("calc-" "math-")) ;;; Generated autoloads from calc/calc-macs.el (register-definition-prefixes "calc-macs" '("Math-" "calc-" "math-")) ;;; Generated autoloads from calc/calc-map.el (register-definition-prefixes "calc-map" '("calc" "math-")) ;;; Generated autoloads from calc/calc-math.el (register-definition-prefixes "calc-math" '("calc" "math-")) ;;; Generated autoloads from calc/calc-menu.el (register-definition-prefixes "calc-menu" '("calc-")) ;;; Generated autoloads from calc/calc-misc.el (register-definition-prefixes "calc-misc" '("math-iipow")) ;;; Generated autoloads from calc/calc-mode.el (register-definition-prefixes "calc-mode" '("calc-" "math-get-modes-vec")) ;;; Generated autoloads from calc/calc-mtx.el (register-definition-prefixes "calc-mtx" '("calc" "math-")) ;;; Generated autoloads from calc/calc-nlfit.el (register-definition-prefixes "calc-nlfit" '("calc-fit-" "math-nlfit-")) ;;; Generated autoloads from calc/calc-poly.el (register-definition-prefixes "calc-poly" '("calcFunc-" "math-")) ;;; Generated autoloads from calc/calc-prog.el (register-definition-prefixes "calc-prog" '("calc" "math-" "var-q")) ;;; Generated autoloads from calc/calc-rewr.el (register-definition-prefixes "calc-rewr" '("calc" "math-")) ;;; Generated autoloads from calc/calc-rules.el (register-definition-prefixes "calc-rules" '("calc-")) ;;; Generated autoloads from calc/calc-sel.el (register-definition-prefixes "calc-sel" '("calc-")) ;;; Generated autoloads from calc/calc-stat.el (register-definition-prefixes "calc-stat" '("calc" "math-")) ;;; Generated autoloads from calc/calc-store.el (register-definition-prefixes "calc-store" '("calc")) ;;; Generated autoloads from calc/calc-stuff.el (register-definition-prefixes "calc-stuff" '("calc" "math-")) ;;; Generated autoloads from calc/calc-trail.el (register-definition-prefixes "calc-trail" '("calc-trail-")) ;;; Generated autoloads from calc/calc-undo.el (autoload 'calc-undo "calc-undo" "\ (fn N)" t) (register-definition-prefixes "calc-undo" '("calc-")) ;;; Generated autoloads from calc/calc-units.el (register-definition-prefixes "calc-units" '("calc" "math-")) ;;; Generated autoloads from calc/calc-vec.el (register-definition-prefixes "calc-vec" '("calc" "math-")) ;;; Generated autoloads from calc/calc-yank.el (register-definition-prefixes "calc-yank" '("calc-" "math-number-regexp")) ;;; Generated autoloads from calc/calcalg2.el (register-definition-prefixes "calcalg2" '("calc" "math-" "var-IntegLimit")) ;;; Generated autoloads from calc/calcalg3.el (register-definition-prefixes "calcalg3" '("calc" "math-")) ;;; Generated autoloads from calc/calccomp.el (register-definition-prefixes "calccomp" '("calcFunc-c" "math-")) ;;; Generated autoloads from calc/calcsel2.el (register-definition-prefixes "calcsel2" '("calc-")) ;;; Generated autoloads from calculator.el (autoload 'calculator "calculator" "\ Run the Emacs calculator. See the documentation for `calculator-mode' for more information." t) (register-definition-prefixes "calculator" '("calculator-")) ;;; Generated autoloads from calendar/calendar.el (autoload 'calendar "calendar" "\ Display a three-month Gregorian calendar. The three months appear side by side, with the current month in the middle surrounded by the previous and next months. The cursor is put on today's date. If optional prefix argument ARG is non-nil, prompts for the central month and year. Once in the calendar window, future or past months can be moved into view. Arbitrary months can be displayed, or the calendar can be scrolled forward or backward. The cursor can be moved forward or backward by one day, one week, one month, or one year. All of these commands take prefix arguments which, when negative, cause movement in the opposite direction. For convenience, the digit keys and the minus sign are automatically prefixes. Use \\[describe-mode] for details of the key bindings in the calendar window. Displays the calendar in a separate window, or optionally in a separate frame, depending on the value of `calendar-setup'. If `calendar-view-diary-initially-flag' is non-nil, also displays the diary entries for the current date (or however many days `diary-number-of-entries' specifies). This variable can be overridden by `calendar-setup'. As well as being displayed, diary entries can also be marked on the calendar (see `calendar-mark-diary-entries-flag'). Runs the following hooks: `calendar-today-visible-hook', `calendar-today-invisible-hook' - after generating a calendar, if today's date is visible or not, respectively `calendar-initial-window-hook' - after first creating a calendar This function is suitable for execution in an init file. (fn &optional ARG)" t) (register-definition-prefixes "calendar" '("calendar-" "diary-" "holiday-buffer" "lunar-phases-buffer" "solar-sunrises-buffer")) ;;; Generated autoloads from gnus/canlock.el (autoload 'canlock-insert-header "canlock" "\ Insert a Cancel-Key and/or a Cancel-Lock header if possible. (fn &optional ID-FOR-KEY ID-FOR-LOCK PASSWORD)") (autoload 'canlock-verify "canlock" "\ Verify Cancel-Lock or Cancel-Key in BUFFER. If BUFFER is nil, the current buffer is assumed. Signal an error if it fails. (fn &optional BUFFER)" t) (register-definition-prefixes "canlock" '("canlock-")) ;;; Generated autoloads from progmodes/cc-align.el (register-definition-prefixes "cc-align" '("c-")) ;;; Generated autoloads from progmodes/cc-awk.el (register-definition-prefixes "cc-awk" '("awk-" "c-awk-")) ;;; Generated autoloads from progmodes/cc-bytecomp.el (register-definition-prefixes "cc-bytecomp" '("cc-")) ;;; Generated autoloads from progmodes/cc-cmds.el (register-definition-prefixes "cc-cmds" '("c-")) ;;; Generated autoloads from progmodes/cc-defs.el (register-definition-prefixes "cc-defs" '("c-" "cc-bytecomp-compiling-or-loading")) ;;; Generated autoloads from progmodes/cc-engine.el (autoload 'c-guess-basic-syntax "cc-engine" "\ Return the syntactic context of the current line.") (register-definition-prefixes "cc-engine" '("c-")) ;;; Generated autoloads from progmodes/cc-fonts.el (register-definition-prefixes "cc-fonts" '("autodoc-" "c++-font-lock-keywords" "c-" "doxygen-font-lock-" "gtkdoc-font-lock-" "idl-font-lock-keywords" "java" "objc-font-lock-keywords" "pike-font-lock-keywords")) ;;; Generated autoloads from progmodes/cc-guess.el (defvar c-guess-guessed-offsets-alist nil "\ Currently guessed offsets-alist.") (defvar c-guess-guessed-basic-offset nil "\ Currently guessed basic-offset.") (autoload 'c-guess "cc-guess" "\ Guess the style in the region up to `c-guess-region-max', and install it. The style is given a name based on the file's absolute file name. If given a prefix argument (or if the optional argument ACCUMULATE is non-nil) then the previous guess is extended, otherwise a new guess is made from scratch. (fn &optional ACCUMULATE)" t) (autoload 'c-guess-no-install "cc-guess" "\ Guess the style in the region up to `c-guess-region-max'; don't install it. If given a prefix argument (or if the optional argument ACCUMULATE is non-nil) then the previous guess is extended, otherwise a new guess is made from scratch. (fn &optional ACCUMULATE)" t) (autoload 'c-guess-buffer "cc-guess" "\ Guess the style on the whole current buffer, and install it. The style is given a name based on the file's absolute file name. If given a prefix argument (or if the optional argument ACCUMULATE is non-nil) then the previous guess is extended, otherwise a new guess is made from scratch. (fn &optional ACCUMULATE)" t) (autoload 'c-guess-buffer-no-install "cc-guess" "\ Guess the style on the whole current buffer; don't install it. If given a prefix argument (or if the optional argument ACCUMULATE is non-nil) then the previous guess is extended, otherwise a new guess is made from scratch. (fn &optional ACCUMULATE)" t) (autoload 'c-guess-region "cc-guess" "\ Guess the style on the region and install it. The style is given a name based on the file's absolute file name. If given a prefix argument (or if the optional argument ACCUMULATE is non-nil) then the previous guess is extended, otherwise a new guess is made from scratch. (fn START END &optional ACCUMULATE)" t) (autoload 'c-guess-region-no-install "cc-guess" "\ Guess the style on the region; don't install it. Every line of code in the region is examined and values for the following two variables are guessed: * `c-basic-offset', and * the indentation values of the various syntactic symbols in `c-offsets-alist'. The guessed values are put into `c-guess-guessed-basic-offset' and `c-guess-guessed-offsets-alist'. Frequencies of use are taken into account when guessing, so minor inconsistencies in the indentation style shouldn't produce wrong guesses. If given a prefix argument (or if the optional argument ACCUMULATE is non-nil) then the previous examination is extended, otherwise a new guess is made from scratch. Note that the larger the region to guess in, the slower the guessing. So you can limit the region with `c-guess-region-max'. (fn START END &optional ACCUMULATE)" t) (autoload 'c-guess-install "cc-guess" "\ Install the latest guessed style into the current buffer. (This guessed style is a combination of `c-guess-guessed-basic-offset', `c-guess-guessed-offsets-alist' and `c-offsets-alist'.) The style is entered into CC Mode's style system by `c-add-style'. Its name is either STYLE-NAME, or a name based on the absolute file name of the file if STYLE-NAME is nil. (fn &optional STYLE-NAME)" t) (register-definition-prefixes "cc-guess" '("c-guess-")) ;;; Generated autoloads from progmodes/cc-langs.el (register-definition-prefixes "cc-langs" '("c-")) ;;; Generated autoloads from progmodes/cc-menus.el (register-definition-prefixes "cc-menus" '("cc-imenu-")) ;;; Generated autoloads from progmodes/cc-mode.el (push (purecopy '(cc-mode 5 33 1)) package--builtin-versions) (autoload 'c-initialize-cc-mode "cc-mode" "\ Initialize CC Mode for use in the current buffer. If the optional NEW-STYLE-INIT is nil or left out then all necessary initialization to run CC Mode for the C language is done. Otherwise only some basic setup is done, and a call to `c-init-language-vars' or `c-init-language-vars-for' is necessary too (which gives more control). See \"cc-mode.el\" for more info. (fn &optional NEW-STYLE-INIT)") (add-to-list 'auto-mode-alist '("\\.\\(cc\\|hh\\)\\'" . c++-mode)) (add-to-list 'auto-mode-alist '("\\.[ch]\\(pp\\|xx\\|\\+\\+\\)\\'" . c++-mode)) (add-to-list 'auto-mode-alist '("\\.\\(CC?\\|HH?\\)\\'" . c++-mode)) (add-to-list 'auto-mode-alist '("\\.c\\'" . c-mode)) (add-to-list 'auto-mode-alist '("\\.h\\'" . c-or-c++-mode)) (add-to-list 'auto-mode-alist '("\\.y\\(acc\\)?\\'" . c-mode)) (add-to-list 'auto-mode-alist '("\\.lex\\'" . c-mode)) (add-to-list 'auto-mode-alist '("\\.i\\'" . c-mode)) (add-to-list 'auto-mode-alist '("\\.ii\\'" . c++-mode)) (autoload 'c-mode "cc-mode" "\ Major mode for editing C code. To submit a problem report, enter `\\[c-submit-bug-report]' from a `c-mode' buffer. This automatically sets up a mail buffer with version information already added. You just need to add a description of the problem, including a reproducible test case, and send the message. To see what version of CC Mode you are running, enter `\\[c-version]'. The hook `c-mode-common-hook' is run with no args at mode initialization, then `c-mode-hook'. Key bindings: \\{c-mode-map} (fn)" t) (autoload 'c-or-c++-mode "cc-mode" "\ Analyze buffer and enable either C or C++ mode. Some people and projects use .h extension for C++ header files which is also the one used for C header files. This makes matching on file name insufficient for detecting major mode that should be used. This function attempts to use file contents to determine whether the code is C or C++ and based on that chooses whether to enable `c-mode' or `c++-mode'." t) (autoload 'c++-mode "cc-mode" "\ Major mode for editing C++ code. To submit a problem report, enter `\\[c-submit-bug-report]' from a c++-mode buffer. This automatically sets up a mail buffer with version information already added. You just need to add a description of the problem, including a reproducible test case, and send the message. To see what version of CC Mode you are running, enter `\\[c-version]'. The hook `c-mode-common-hook' is run with no args at mode initialization, then `c++-mode-hook'. Key bindings: \\{c++-mode-map} (fn)" t) (add-to-list 'auto-mode-alist '("\\.m\\'" . objc-mode)) (autoload 'objc-mode "cc-mode" "\ Major mode for editing Objective C code. To submit a problem report, enter `\\[c-submit-bug-report]' from an `objc-mode' buffer. This automatically sets up a mail buffer with version information already added. You just need to add a description of the problem, including a reproducible test case, and send the message. To see what version of CC Mode you are running, enter `\\[c-version]'. The hook `c-mode-common-hook' is run with no args at mode initialization, then `objc-mode-hook'. Key bindings: \\{objc-mode-map} (fn)" t) (add-to-list 'auto-mode-alist '("\\.java\\'" . java-mode)) (autoload 'java-mode "cc-mode" "\ Major mode for editing Java code. To submit a problem report, enter `\\[c-submit-bug-report]' from a `java-mode' buffer. This automatically sets up a mail buffer with version information already added. You just need to add a description of the problem, including a reproducible test case, and send the message. To see what version of CC Mode you are running, enter `\\[c-version]'. The hook `c-mode-common-hook' is run with no args at mode initialization, then `java-mode-hook'. Key bindings: \\{java-mode-map} (fn)" t) (add-to-list 'auto-mode-alist '("\\.idl\\'" . idl-mode)) (autoload 'idl-mode "cc-mode" "\ Major mode for editing CORBA's IDL, PSDL and CIDL code. To submit a problem report, enter `\\[c-submit-bug-report]' from an `idl-mode' buffer. This automatically sets up a mail buffer with version information already added. You just need to add a description of the problem, including a reproducible test case, and send the message. To see what version of CC Mode you are running, enter `\\[c-version]'. The hook `c-mode-common-hook' is run with no args at mode initialization, then `idl-mode-hook'. Key bindings: \\{idl-mode-map} (fn)" t) (add-to-list 'auto-mode-alist '("\\.\\(u?lpc\\|pike\\|pmod\\(\\.in\\)?\\)\\'" . pike-mode)) (add-to-list 'interpreter-mode-alist '("pike" . pike-mode)) (autoload 'pike-mode "cc-mode" "\ Major mode for editing Pike code. To submit a problem report, enter `\\[c-submit-bug-report]' from a `pike-mode' buffer. This automatically sets up a mail buffer with version information already added. You just need to add a description of the problem, including a reproducible test case, and send the message. To see what version of CC Mode you are running, enter `\\[c-version]'. The hook `c-mode-common-hook' is run with no args at mode initialization, then `pike-mode-hook'. Key bindings: \\{pike-mode-map} (fn)" t) (add-to-list 'auto-mode-alist '("\\.awk\\'" . awk-mode)) (add-to-list 'interpreter-mode-alist '("awk" . awk-mode)) (add-to-list 'interpreter-mode-alist '("mawk" . awk-mode)) (add-to-list 'interpreter-mode-alist '("nawk" . awk-mode)) (add-to-list 'interpreter-mode-alist '("gawk" . awk-mode)) (autoload 'awk-mode "cc-mode" "\ Major mode for editing AWK code. To submit a problem report, enter `\\[c-submit-bug-report]' from an `awk-mode' buffer. This automatically sets up a mail buffer with version information already added. You just need to add a description of the problem, including a reproducible test case, and send the message. To see what version of CC Mode you are running, enter `\\[c-version]'. The hook `c-mode-common-hook' is run with no args at mode initialization, then `awk-mode-hook'. Key bindings: \\{awk-mode-map} (fn)" t) (register-definition-prefixes "cc-mode" '("awk-mode-map" "c++-mode-" "c-" "idl-mode-" "java-mode-" "objc-mode-" "pike-mode-")) ;;; Generated autoloads from progmodes/cc-styles.el (autoload 'c-set-style "cc-styles" "\ Set the current buffer to use the style STYLENAME. STYLENAME, a string, must be an existing CC Mode style - These are contained in the variable `c-style-alist'. The variable `c-indentation-style' will get set to STYLENAME. \"Setting the style\" is done by setting CC Mode's \"style variables\" to the values indicated by the pertinent entry in `c-style-alist'. Other variables might get set too. If DONT-OVERRIDE is neither nil nor t, style variables whose default values have been set (more precisely, whose default values are not the symbol `set-from-style') will not be changed. This avoids overriding global settings done in your init file. It is useful to call c-set-style from a mode hook in this way. If DONT-OVERRIDE is t, style variables that already have values (i.e., whose values are not the symbol `set-from-style') will not be overridden. CC Mode calls c-set-style internally in this way whilst initializing a buffer; if c-set-style is called like this from anywhere else, it will usually behave as a null operation. (fn STYLENAME &optional DONT-OVERRIDE)" t) (autoload 'c-add-style "cc-styles" "\ Add a style to `c-style-alist', or update an existing one. STYLE is a string identifying the style to add or update. DESCRIPTION is an association list describing the style and must be of the form: ([BASESTYLE] (VARIABLE . VALUE) [(VARIABLE . VALUE) ...]) See the variable `c-style-alist' for the semantics of BASESTYLE, VARIABLE and VALUE. This function also sets the current style to STYLE using `c-set-style' if the optional SET-P flag is non-nil. (fn STYLE DESCRIPTION &optional SET-P)" t) (autoload 'c-set-offset "cc-styles" "\ Change the value of a syntactic element symbol in `c-offsets-alist'. SYMBOL is the syntactic element symbol to change and OFFSET is the new offset for that syntactic element. The optional argument is not used and exists only for compatibility reasons. (fn SYMBOL OFFSET &optional IGNORED)" t) (register-definition-prefixes "cc-styles" '("c-" "cc-choose-style-for-mode")) ;;; Generated autoloads from progmodes/cc-vars.el (autoload 'c-string-list-p "cc-vars" "\ Return non-nil if VAL is a list of strings. (fn VAL)") (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) (put 'c-font-lock-extra-types 'safe-local-variable #'c-string-list-p) (put 'c++-font-lock-extra-types 'safe-local-variable #'c-string-list-p) (put 'objc-font-lock-extra-types 'safe-local-variable #'c-string-list-p) (put 'java-font-lock-extra-types 'safe-local-variable #'c-string-list-p) (put 'idl-font-lock-extra-types 'safe-local-variable #'c-string-list-p) (put 'pike-font-lock-extra-types 'safe-local-variable #'c-string-list-p) (put 'c-file-style 'safe-local-variable 'string-or-null-p) (register-definition-prefixes "cc-vars" '("awk-mode-hook" "c++-" "c-" "defcustom-c-stylevar" "idl-" "java-" "objc-" "pike-")) ;;; Generated autoloads from international/ccl.el (autoload 'ccl-compile "ccl" "\ Return the compiled code of CCL-PROGRAM as a vector of integers. (fn CCL-PROGRAM)") (autoload 'ccl-dump "ccl" "\ Disassemble compiled CCL-code CODE. (fn CODE)") (autoload 'declare-ccl-program "ccl" "\ Declare NAME as a name of CCL program. This macro exists for backward compatibility. In the old version of Emacs, to compile a CCL program which calls another CCL program not yet defined, it must be declared as a CCL program in advance. But, now CCL program names are resolved not at compile time but before execution. Optional arg VECTOR is a compiled CCL code of the CCL program. (fn NAME &optional VECTOR)" nil t) (autoload 'define-ccl-program "ccl" "\ Set NAME the compiled code of CCL-PROGRAM. CCL-PROGRAM has this form: (BUFFER_MAGNIFICATION CCL_MAIN_CODE [ CCL_EOF_CODE ]) BUFFER_MAGNIFICATION is an integer value specifying the approximate output buffer magnification size compared with the bytes of input data text. It is assured that the actual output buffer has 256 bytes more than the size calculated by BUFFER_MAGNIFICATION. If the value is zero, the CCL program can't execute `read' and `write' commands. CCL_MAIN_CODE and CCL_EOF_CODE are CCL program codes. CCL_MAIN_CODE executed at first. If there's no more input data when `read' command is executed in CCL_MAIN_CODE, CCL_EOF_CODE is executed. If CCL_MAIN_CODE is terminated, CCL_EOF_CODE is not executed. Here's the syntax of CCL program code in BNF notation. The lines starting by two semicolons (and optional leading spaces) describe the semantics. CCL_MAIN_CODE := CCL_BLOCK CCL_EOF_CODE := CCL_BLOCK CCL_BLOCK := STATEMENT | (STATEMENT [STATEMENT ...]) STATEMENT := SET | IF | BRANCH | LOOP | REPEAT | BREAK | READ | WRITE | CALL | TRANSLATE | MAP | LOOKUP | END SET := (REG = EXPRESSION) | (REG ASSIGNMENT_OPERATOR EXPRESSION) ;; The following form is the same as (r0 = integer). | integer EXPRESSION := ARG | (EXPRESSION OPERATOR ARG) ;; Evaluate EXPRESSION. If the result is nonzero, execute ;; CCL_BLOCK_0. Otherwise, execute CCL_BLOCK_1. IF := (if EXPRESSION CCL_BLOCK_0 CCL_BLOCK_1) ;; Evaluate EXPRESSION. Provided that the result is N, execute ;; CCL_BLOCK_N. BRANCH := (branch EXPRESSION CCL_BLOCK_0 [CCL_BLOCK_1 ...]) ;; Execute STATEMENTs until (break) or (end) is executed. ;; Create a block of STATEMENTs for repeating. The STATEMENTs ;; are executed sequentially until REPEAT or BREAK is executed. ;; If REPEAT statement is executed, STATEMENTs are executed from the ;; start again. If BREAK statements is executed, the execution ;; exits from the block. If neither REPEAT nor BREAK is ;; executed, the execution exits from the block after executing the ;; last STATEMENT. LOOP := (loop STATEMENT [STATEMENT ...]) ;; Terminate the most inner loop. BREAK := (break) REPEAT := ;; Jump to the head of the most inner loop. (repeat) ;; Same as: ((write [REG | integer | string]) ;; (repeat)) | (write-repeat [REG | integer | string]) ;; Same as: ((write REG [ARRAY]) ;; (read REG) ;; (repeat)) | (write-read-repeat REG [ARRAY]) ;; Same as: ((write integer) ;; (read REG) ;; (repeat)) | (write-read-repeat REG integer) READ := ;; Set REG_0 to a byte read from the input text, set REG_1 ;; to the next byte read, and so on. (read REG_0 [REG_1 ...]) ;; Same as: ((read REG) ;; (if (REG OPERATOR ARG) CCL_BLOCK_0 CCL_BLOCK_1)) | (read-if (REG OPERATOR ARG) CCL_BLOCK_0 CCL_BLOCK_1) ;; Same as: ((read REG) ;; (branch REG CCL_BLOCK_0 [CCL_BLOCK_1 ...])) | (read-branch REG CCL_BLOCK_0 [CCL_BLOCK_1 ...]) ;; Read a character from the input text while parsing ;; multibyte representation, set REG_0 to the charset ID of ;; the character, set REG_1 to the code point of the ;; character. If the dimension of charset is two, set REG_1 ;; to ((CODE0 << 7) | CODE1), where CODE0 is the first code ;; point and CODE1 is the second code point. | (read-multibyte-character REG_0 REG_1) WRITE := ;; Write REG_0, REG_1, ... to the output buffer. If REG_N is ;; a multibyte character, write the corresponding multibyte ;; representation. (write REG_0 [REG_1 ...]) ;; Same as: ((r7 = EXPRESSION) ;; (write r7)) | (write EXPRESSION) ;; Write the value of `integer' to the output buffer. If it ;; is a multibyte character, write the corresponding multibyte ;; representation. | (write integer) ;; Write the byte sequence of `string' as is to the output ;; buffer. | (write string) ;; Same as: (write string) | string ;; Provided that the value of REG is N, write Nth element of ;; ARRAY to the output buffer. If it is a multibyte ;; character, write the corresponding multibyte ;; representation. | (write REG ARRAY) ;; Write a multibyte representation of a character whose ;; charset ID is REG_0 and code point is REG_1. If the ;; dimension of the charset is two, REG_1 should be ((CODE0 << ;; 7) | CODE1), where CODE0 is the first code point and CODE1 ;; is the second code point of the character. | (write-multibyte-character REG_0 REG_1) ;; Call CCL program whose name is ccl-program-name. CALL := (call ccl-program-name) ;; Terminate the CCL program. END := (end) ;; CCL registers that can contain any integer value. As r7 is also ;; used by CCL interpreter, its value is changed unexpectedly. REG := r0 | r1 | r2 | r3 | r4 | r5 | r6 | r7 ARG := REG | integer OPERATOR := ;; Normal arithmetic operators (same meaning as C code). + | - | * | / | % ;; Bitwise operators (same meaning as C code) | & | `|' | ^ ;; Shifting operators (same meaning as C code) | << | >> ;; (REG = ARG_0 <8 ARG_1) means: ;; (REG = ((ARG_0 << 8) | ARG_1)) | <8 ;; (REG = ARG_0 >8 ARG_1) means: ;; ((REG = (ARG_0 >> 8)) ;; (r7 = (ARG_0 & 255))) | >8 ;; (REG = ARG_0 // ARG_1) means: ;; ((REG = (ARG_0 / ARG_1)) ;; (r7 = (ARG_0 % ARG_1))) | // ;; Normal comparing operators (same meaning as C code) | < | > | == | <= | >= | != ;; If ARG_0 and ARG_1 are higher and lower byte of Shift-JIS ;; code, and CHAR is the corresponding JISX0208 character, ;; (REG = ARG_0 de-sjis ARG_1) means: ;; ((REG = CODE0) ;; (r7 = CODE1)) ;; where CODE0 is the first code point of CHAR, CODE1 is the ;; second code point of CHAR. | de-sjis ;; If ARG_0 and ARG_1 are the first and second code point of ;; JISX0208 character CHAR, and SJIS is the corresponding ;; Shift-JIS code, ;; (REG = ARG_0 en-sjis ARG_1) means: ;; ((REG = HIGH) ;; (r7 = LOW)) ;; where HIGH is the higher byte of SJIS, LOW is the lower ;; byte of SJIS. | en-sjis ASSIGNMENT_OPERATOR := ;; Same meaning as C code += | -= | *= | /= | %= | &= | `|=' | ^= | <<= | >>= ;; (REG <8= ARG) is the same as: ;; ((REG <<= 8) ;; (REG |= ARG)) | <8= ;; (REG >8= ARG) is the same as: ;; ((r7 = (REG & 255)) ;; (REG >>= 8)) ;; (REG //= ARG) is the same as: ;; ((r7 = (REG % ARG)) ;; (REG /= ARG)) | //= ARRAY := `[' integer ... `]' TRANSLATE := ;; Decode character SRC, translate it by translate table ;; TABLE, and encode it back to DST. TABLE is specified ;; by its id number in REG_0, SRC is specified by its ;; charset id number and codepoint in REG_1 and REG_2 ;; respectively. ;; On encoding, the charset of highest priority is selected. ;; After the execution, DST is specified by its charset ;; id number and codepoint in REG_1 and REG_2 respectively. (translate-character REG_0 REG_1 REG_2) ;; Same as above except for SYMBOL specifying the name of ;; the translate table defined by `define-translation-table'. | (translate-character SYMBOL REG_1 REG_2) LOOKUP := ;; Look up character SRC in hash table TABLE. TABLE is ;; specified by its name in SYMBOL, and SRC is specified by ;; its charset id number and codepoint in REG_1 and REG_2 ;; respectively. ;; If its associated value is an integer, set REG_1 to that ;; value, and set r7 to 1. Otherwise, set r7 to 0. (lookup-character SYMBOL REG_1 REG_2) ;; Look up integer value N in hash table TABLE. TABLE is ;; specified by its name in SYMBOL and N is specified in ;; REG. ;; If its associated value is a character, set REG to that ;; value, and set r7 to 1. Otherwise, set r7 to 0. | (lookup-integer SYMBOL REG(integer)) MAP := ;; The following statements are for internal use only. (iterate-multiple-map REG REG MAP-IDs) | (map-multiple REG REG (MAP-SET)) | (map-single REG REG MAP-ID) MAP-IDs := MAP-ID ... MAP-SET := MAP-IDs | (MAP-IDs) MAP-SET MAP-ID := integer (fn NAME CCL-PROGRAM &optional DOC)" nil t) (function-put 'define-ccl-program 'doc-string-elt 3) (function-put 'define-ccl-program 'lisp-indent-function 'defun) (autoload 'check-ccl-program "ccl" "\ Check validity of CCL-PROGRAM. If CCL-PROGRAM is a symbol denoting a CCL program, return CCL-PROGRAM, else return nil. If CCL-PROGRAM is a vector and optional arg NAME (symbol) is supplied, register CCL-PROGRAM by name NAME, and return NAME. (fn CCL-PROGRAM &optional NAME)" nil t) (autoload 'ccl-execute-with-args "ccl" "\ Execute CCL-PROGRAM with registers initialized by the remaining args. The return value is a vector of resulting CCL registers. See the documentation of `define-ccl-program' for the detail of CCL program. (fn CCL-PROG &rest ARGS)") (register-definition-prefixes "ccl" '("ccl-")) ;;; Generated autoloads from cdl.el (register-definition-prefixes "cdl" '("cdl-")) ;;; Generated autoloads from cedet/cedet.el (push (purecopy '(cedet 2 0)) package--builtin-versions) (register-definition-prefixes "cedet" '("cedet-")) ;;; Generated autoloads from cedet/cedet-cscope.el (register-definition-prefixes "cedet-cscope" '("cedet-cscope-")) ;;; Generated autoloads from cedet/cedet-files.el (register-definition-prefixes "cedet-files" '("cedet-")) ;;; Generated autoloads from cedet/cedet-global.el (register-definition-prefixes "cedet-global" '("cedet-g")) ;;; Generated autoloads from cedet/cedet-idutils.el (register-definition-prefixes "cedet-idutils" '("cedet-idutils-")) ;;; Generated autoloads from progmodes/cfengine.el (push (purecopy '(cfengine 1 4)) package--builtin-versions) (autoload 'cfengine3-mode "cfengine" "\ Major mode for editing CFEngine3 input. There are no special keybindings by default. Action blocks are treated as defuns, i.e. \\[beginning-of-defun] moves to the action header. (fn)" t) (autoload 'cfengine2-mode "cfengine" "\ Major mode for editing CFEngine2 input. There are no special keybindings by default. Action blocks are treated as defuns, i.e. \\[beginning-of-defun] moves to the action header. (fn)" t) (autoload 'cfengine-auto-mode "cfengine" "\ Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents." t) (register-definition-prefixes "cfengine" '("cfengine")) ;;; Generated autoloads from char-fold.el (autoload 'char-fold-to-regexp "char-fold" "\ Return a regexp matching anything that char-folds into STRING. Any character in STRING that has an entry in `char-fold-table' is replaced with that entry (which is a regexp) and other characters are `regexp-quote'd. When LAX is non-nil, then the final character also matches ligatures partially, for instance, the search string \"f\" will match \"fi\", so when typing the search string in isearch while the cursor is on a ligature, the search won't try to immediately advance to the next complete match, but will stay on the partially matched ligature. If the resulting regexp would be too long for Emacs to handle, just return the result of calling `regexp-quote' on STRING. FROM is for internal use. It specifies an index in the STRING from which to start. (fn STRING &optional LAX FROM)") (autoload 'describe-char-fold-equivalences "char-fold" "\ Display characters equivalent to CHAR under character-folding. Prompt for CHAR (using `read-char-by-name', which see for how to specify the character). With no input, i.e. when CHAR is nil, describe all available character equivalences of `char-fold-to-regexp'. Optional argument LAX (interactively, the prefix argument), if non-nil, means also include partially matching ligatures and non-canonical equivalences. Each line of the display shows the equivalences in two different ways separated by a colon: - as the literal character or sequence - using an ASCII-only escape syntax For example, for the letter \\='r\\=', the first line is r: ?\\N{LATIN SMALL LETTER R} which is for the requested character itself, and a later line has ṟ: ?\\N{LATIN SMALL LETTER R}?\\N{COMBINING MACRON BELOW} which clearly shows what the constituent characters are. (fn CHAR &optional LAX)" t) (register-definition-prefixes "char-fold" '("char-fold-")) ;;; Generated autoloads from emacs-lisp/chart.el (register-definition-prefixes "chart" '("chart")) ;;; Generated autoloads from cedet/semantic/chart.el (register-definition-prefixes "semantic/chart" '("semantic-chart-")) ;;; Generated autoloads from emacs-lisp/check-declare.el (autoload 'check-declare-file "check-declare" "\ Check veracity of all `declare-function' statements in FILE. See `check-declare-directory' for more information. (fn FILE)" t) (autoload 'check-declare-directory "check-declare" "\ Check veracity of all `declare-function' statements under directory ROOT. Returns non-nil if any false statements are found. (fn ROOT)" t) (register-definition-prefixes "check-declare" '("check-declare-")) ;;; Generated autoloads from emacs-lisp/checkdoc.el (put 'checkdoc-force-docstrings-flag 'safe-local-variable #'booleanp) (put 'checkdoc-force-history-flag 'safe-local-variable #'booleanp) (put 'checkdoc-permit-comma-termination-flag 'safe-local-variable #'booleanp) (put 'checkdoc-spellcheck-documentation-flag 'safe-local-variable #'booleanp) (put 'checkdoc-ispell-list-words 'safe-local-variable #'list-of-strings-p) (put 'checkdoc-arguments-in-order-flag 'safe-local-variable #'booleanp) (put 'checkdoc-verb-check-experimental-flag 'safe-local-variable #'booleanp) (put 'checkdoc-symbol-words 'safe-local-variable #'list-of-strings-p) (put 'checkdoc-proper-noun-regexp 'safe-local-variable 'stringp) (put 'checkdoc-common-verbs-regexp 'safe-local-variable 'stringp) (autoload 'checkdoc "checkdoc" "\ Interactively check the entire buffer for style errors. The current status of the check will be displayed in a buffer which the users will view as each check is completed." '(emacs-lisp-mode)) (autoload 'checkdoc-interactive "checkdoc" "\ Interactively check the current buffer for doc string errors. Prefix argument START-HERE will start the checking from the current point, otherwise the check starts at the beginning of the current buffer. Allows navigation forward and backwards through document errors. Does not check for comment or space warnings. Optional argument SHOWSTATUS indicates that we should update the checkdoc status window instead of the usual behavior. (fn &optional START-HERE SHOWSTATUS)" '(emacs-lisp-mode)) (autoload 'checkdoc-message-interactive "checkdoc" "\ Interactively check the current buffer for message string errors. Prefix argument START-HERE will start the checking from the current point, otherwise the check starts at the beginning of the current buffer. Allows navigation forward and backwards through document errors. Does not check for comment or space warnings. Optional argument SHOWSTATUS indicates that we should update the checkdoc status window instead of the usual behavior. (fn &optional START-HERE SHOWSTATUS)" '(emacs-lisp-mode)) (autoload 'checkdoc-eval-current-buffer "checkdoc" "\ Evaluate and check documentation for the current buffer. Evaluation is done first because good documentation for something that doesn't work is just not useful. Comments, doc strings, and rogue spacing are all verified." t) (autoload 'checkdoc-current-buffer "checkdoc" "\ Check current buffer for document, comment, error style, and rogue spaces. With a prefix argument (in Lisp, the argument TAKE-NOTES), store all errors found in a warnings buffer, otherwise stop after the first error. (fn &optional TAKE-NOTES)" '(emacs-lisp-mode)) (autoload 'checkdoc-file "checkdoc" "\ Check FILE for document, comment, error style, and rogue spaces. (fn FILE)") (autoload 'checkdoc-start "checkdoc" "\ Start scanning the current buffer for documentation string style errors. Only documentation strings are checked. Use `checkdoc-continue' to continue checking if an error cannot be fixed. Prefix argument TAKE-NOTES means to collect all the warning messages into a separate buffer. (fn &optional TAKE-NOTES)" '(emacs-lisp-mode)) (autoload 'checkdoc-continue "checkdoc" "\ Find the next doc string in the current buffer which has a style error. Prefix argument TAKE-NOTES means to continue through the whole buffer and save warnings in a separate buffer. (fn &optional TAKE-NOTES)" '(emacs-lisp-mode)) (autoload 'checkdoc-comments "checkdoc" "\ Find missing comment sections in the current Emacs Lisp file. Prefix argument TAKE-NOTES non-nil means to save warnings in a separate buffer. Otherwise print a message. This returns the error if there is one. (fn &optional TAKE-NOTES)" '(emacs-lisp-mode)) (autoload 'checkdoc-rogue-spaces "checkdoc" "\ Find extra spaces at the end of lines in the current file. Prefix argument TAKE-NOTES non-nil means to save warnings in a separate buffer. Otherwise print a message. This returns the error if there is one. Optional argument INTERACT permits more interactive fixing. (fn &optional TAKE-NOTES INTERACT)" '(emacs-lisp-mode)) (autoload 'checkdoc-message-text "checkdoc" "\ Scan the buffer for occurrences of the error function, and verify text. Optional argument TAKE-NOTES causes all errors to be logged. (fn &optional TAKE-NOTES)" '(emacs-lisp-mode)) (autoload 'checkdoc-eval-defun "checkdoc" "\ Evaluate the current form with `eval-defun' and check its documentation. Evaluation is done first so the form will be read before the documentation is checked. If there is a documentation error, then the display of what was evaluated will be overwritten by the diagnostic message." t) (autoload 'checkdoc-defun "checkdoc" "\ Examine the doc string of the function or variable under point. Call `error' if the doc string has problems. If NO-ERROR is non-nil, then do not call error, but call `message' instead. If the doc string passes the test, then check the function for rogue white space at the end of each line. (fn &optional NO-ERROR)" t) (autoload 'checkdoc-dired "checkdoc" "\ In Dired, run `checkdoc' on marked files. Skip anything that doesn't have the Emacs Lisp library file extension (\".el\"). When called from Lisp, FILES is a list of filenames. (fn FILES)" '(dired-mode)) (autoload 'checkdoc-ispell "checkdoc" "\ Check the style and spelling of everything interactively. Calls `checkdoc' with spell-checking turned on. Prefix argument is the same as for `checkdoc'." t) (autoload 'checkdoc-ispell-current-buffer "checkdoc" "\ Check the style and spelling of the current buffer. Calls `checkdoc-current-buffer' with spell-checking turned on. Prefix argument is the same as for `checkdoc-current-buffer'." t) (autoload 'checkdoc-ispell-interactive "checkdoc" "\ Check the style and spelling of the current buffer interactively. Calls `checkdoc-interactive' with spell-checking turned on. Prefix argument is the same as for `checkdoc-interactive'." t) (autoload 'checkdoc-ispell-message-interactive "checkdoc" "\ Check the style and spelling of message text interactively. Calls `checkdoc-message-interactive' with spell-checking turned on. Prefix argument is the same as for `checkdoc-message-interactive'." t) (autoload 'checkdoc-ispell-message-text "checkdoc" "\ Check the style and spelling of message text interactively. Calls `checkdoc-message-text' with spell-checking turned on. Prefix argument is the same as for `checkdoc-message-text'." t) (autoload 'checkdoc-ispell-start "checkdoc" "\ Check the style and spelling of the current buffer. Calls `checkdoc-start' with spell-checking turned on. Prefix argument is the same as for `checkdoc-start'." t) (autoload 'checkdoc-ispell-continue "checkdoc" "\ Check the style and spelling of the current buffer after point. Calls `checkdoc-continue' with spell-checking turned on. Prefix argument is the same as for `checkdoc-continue'." t) (autoload 'checkdoc-ispell-comments "checkdoc" "\ Check the style and spelling of the current buffer's comments. Calls `checkdoc-comments' with spell-checking turned on. Prefix argument is the same as for `checkdoc-comments'." t) (autoload 'checkdoc-ispell-defun "checkdoc" "\ Check the style and spelling of the current defun with Ispell. Calls `checkdoc-defun' with spell-checking turned on. Prefix argument is the same as for `checkdoc-defun'." t) (autoload 'checkdoc-minor-mode "checkdoc" "\ Toggle automatic docstring checking (Checkdoc minor mode). In Checkdoc minor mode, the usual bindings for `eval-defun' which is bound to \\\\[checkdoc-eval-defun] and `checkdoc-eval-current-buffer' are overridden to include checking of documentation strings. \\{checkdoc-minor-mode-map} This is a minor mode. If called interactively, toggle the `Checkdoc minor mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `checkdoc-minor-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'checkdoc-package-keywords "checkdoc" "\ Find package keywords that aren't in `finder-known-keywords'." t) (register-definition-prefixes "checkdoc" '("checkdoc-")) ;;; Generated autoloads from language/china-util.el (autoload 'decode-hz-region "china-util" "\ Decode HZ/ZW encoded text in the current region. Return the length of resulting text. (fn BEG END)" t) (autoload 'decode-hz-buffer "china-util" "\ Decode HZ/ZW encoded text in the current buffer." t) (autoload 'encode-hz-region "china-util" "\ Encode the text in the current region to HZ. Return the length of resulting text. (fn BEG END)" t) (autoload 'encode-hz-buffer "china-util" "\ Encode the text in the current buffer to HZ." t) (autoload 'post-read-decode-hz "china-util" "\ (fn LEN)") (autoload 'pre-write-encode-hz "china-util" "\ (fn FROM TO)") (register-definition-prefixes "china-util" '("decode-hz-line-continuation" "hz-" "hz/zw-start-gb" "iso2022-" "zw-start-gb")) ;;; Generated autoloads from chistory.el (autoload 'repeat-matching-complex-command "chistory" "\ Edit and re-evaluate complex command with name matching PATTERN. Matching occurrences are displayed, most recent first, until you select a form for evaluation. If PATTERN is empty (or nil), every form in the command history is offered. The form is placed in the minibuffer for editing and the result is evaluated. (fn &optional PATTERN)" t) (autoload 'list-command-history "chistory" "\ List history of commands that used the minibuffer. The number of commands listed is controlled by `list-command-history-max'. Calls value of `list-command-history-filter' (if non-nil) on each history element to judge if that element should be excluded from the list. The buffer is left in Command History mode." t) (autoload 'command-history "chistory" "\ Examine commands from variable `command-history' in a buffer. The number of commands listed is controlled by `list-command-history-max'. The command history is filtered by `list-command-history-filter' if non-nil. Use \\\\[command-history-repeat] to repeat the command on the current line. Otherwise much like Emacs-Lisp Mode except that there is no self-insertion and digits provide prefix arguments. Tab does not indent. \\{command-history-mode-map} This command always recompiles the Command History listing and runs the normal hook `command-history-hook'." t) (register-definition-prefixes "chistory" '("command-history-" "default-command-history-filter" "list-command-history-")) ;;; Generated autoloads from emacs-lisp/cl-extra.el (register-definition-prefixes "cl-extra" '("cl-")) ;;; Generated autoloads from progmodes/cl-font-lock.el (defvar cl-font-lock-built-in-mode nil "\ Non-nil if Cl-Font-Lock-Built-In mode is enabled. See the `cl-font-lock-built-in-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `cl-font-lock-built-in-mode'.") (custom-autoload 'cl-font-lock-built-in-mode "cl-font-lock" nil) (autoload 'cl-font-lock-built-in-mode "cl-font-lock" "\ Highlight built-in functions, variables, and types in `lisp-mode'. This is a global minor mode. If called interactively, toggle the `Cl-Font-Lock-Built-In mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='cl-font-lock-built-in-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "cl-font-lock" '("cl-font-lock-")) ;;; Generated autoloads from emacs-lisp/cl-generic.el (push (purecopy '(cl-generic 1 0)) package--builtin-versions) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload 'common-lisp-indent-function "cl-indent" "\ Function to indent the arguments of a Lisp function call. This is suitable for use as the value of the variable `lisp-indent-function'. INDENT-POINT is the point at which the indentation function is called, and STATE is the `parse-partial-sexp' state at that position. Browse the `lisp-indent' customize group for options affecting the behavior of this function. If the indentation point is in a call to a Lisp function, that function's `common-lisp-indent-function' property specifies how this function should indent it. Possible values for this property are: * defun, meaning indent according to `lisp-indent-defun-method'; i.e., like (4 &lambda &body), as explained below. * any other symbol, meaning a function to call. The function should take the arguments: PATH STATE INDENT-POINT SEXP-COLUMN NORMAL-INDENT. PATH is a list of integers describing the position of point in terms of list-structure with respect to the containing lists. For example, in ((a b c (d foo) f) g), foo has a path of (0 3 1). In other words, to reach foo take the 0th element of the outermost list, then the 3rd element of the next list, and finally the 1st element. STATE and INDENT-POINT are as in the arguments to `common-lisp-indent-function'. SEXP-COLUMN is the column of the open parenthesis of the innermost containing list. NORMAL-INDENT is the column the indentation point was originally in. This function should behave like `lisp-indent-259'. * an integer N, meaning indent the first N arguments like function arguments, and any further arguments like a body. This is equivalent to (4 4 ... &body). * a list. The list element in position M specifies how to indent the Mth function argument. If there are fewer elements than function arguments, the last list element applies to all remaining arguments. The accepted list elements are: * nil, meaning the default indentation. * an integer, specifying an explicit indentation. * &lambda. Indent the argument (which may be a list) by 4. * &rest. When used, this must be the penultimate element. The element after this one applies to all remaining arguments. * &body. This is equivalent to &rest lisp-body-indent, i.e., indent all remaining elements by `lisp-body-indent'. * &whole. This must be followed by nil, an integer, or a function symbol. This indentation is applied to the associated argument, and as a base indent for all remaining arguments. For example, an integer P means indent this argument by P, and all remaining arguments by P, plus the value specified by their associated list element. * a symbol. A function to call, with the 6 arguments specified above. * a list, with elements as described above. This applies when the associated function argument is itself a list. Each element of the list specifies how to indent the associated argument. For example, the function `case' has an indent property (4 &rest (&whole 2 &rest 1)), meaning: * indent the first argument by 4. * arguments after the first should be lists, and there may be any number of them. The first list element has an offset of 2, all the rest have an offset of 2+1=3. If the current mode is actually `emacs-lisp-mode', look for a `common-lisp-indent-function-for-elisp' property before looking at `common-lisp-indent-function' and, if set, use its value instead. (fn INDENT-POINT STATE)") (register-definition-prefixes "cl-indent" '("common-lisp-" "lisp-")) ;;; Generated autoloads from emacs-lisp/cl-lib.el (push (purecopy '(cl-lib 1 0)) package--builtin-versions) (defvar cl-custom-print-functions nil "\ This is a list of functions that format user objects for printing. Each function is called in turn with three arguments: the object, the stream, and the print level (currently ignored). If it is able to print the object it returns true; otherwise it returns nil and the printer proceeds to the next function on the list. This variable is not used at present, but it is defined in hopes that a future Emacs interpreter will be able to use it.") (autoload 'cl-incf "cl-lib" "\ Increment PLACE by X (1 by default). PLACE may be a symbol, or any generalized variable allowed by `setf'. The return value is the incremented value of PLACE. If X is specified, it should be an expression that should evaluate to a number. (fn PLACE &optional X)" nil t) (defvar cl-old-struct-compat-mode nil "\ Non-nil if Cl-Old-Struct-Compat mode is enabled. See the `cl-old-struct-compat-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `cl-old-struct-compat-mode'.") (custom-autoload 'cl-old-struct-compat-mode "cl-lib" nil) (autoload 'cl-old-struct-compat-mode "cl-lib" "\ Enable backward compatibility with old-style structs. This can be needed when using code byte-compiled using the old macro-expansion of `cl-defstruct' that used vectors objects instead of record objects. This is a global minor mode. If called interactively, toggle the `Cl-Old-Struct-Compat mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='cl-old-struct-compat-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "cl-lib" '("cl-")) ;;; Generated autoloads from emacs-lisp/cl-macs.el (register-definition-prefixes "cl-macs" '("cl-")) ;;; Generated autoloads from emacs-lisp/cl-print.el (push (purecopy '(cl-print 1 0)) package--builtin-versions) (autoload 'cl-print-object "cl-print" "\ Dispatcher to print OBJECT on STREAM according to its type. You can add methods to it to customize the output. But if you just want to print something, don't call this directly: call other entry points instead, such as `cl-prin1'. (fn OBJECT STREAM)") (autoload 'cl-prin1 "cl-print" "\ Print OBJECT on STREAM according to its type. Output is further controlled by the variables `cl-print-readably', `cl-print-compiled', along with output variables for the standard printing functions. See Info node `(elisp)Output Variables'. (fn OBJECT &optional STREAM)") (autoload 'cl-prin1-to-string "cl-print" "\ Return a string containing the `cl-prin1'-printed representation of OBJECT. (fn OBJECT)") (autoload 'cl-print-to-string-with-limit "cl-print" "\ Return a string containing a printed representation of VALUE. Attempt to get the length of the returned string under LIMIT characters with appropriate settings of `print-level', `print-length', and `cl-print-string-length'. Use PRINT-FUNCTION to print, which should take the arguments VALUE and STREAM and which should respect `print-length', `print-level', and `cl-print-string-length'. LIMIT may be nil or zero in which case PRINT-FUNCTION will be called with these settings bound to nil, and it can also be t in which case PRINT-FUNCTION will be called with their current values. Use this function with `cl-prin1' to print an object, abbreviating it with ellipses to fit within a size limit. (fn PRINT-FUNCTION VALUE LIMIT)") (register-definition-prefixes "cl-print" '("cl-print-" "help-byte-code")) ;;; Generated autoloads from emacs-lisp/cl-seq.el (register-definition-prefixes "cl-seq" '("cl--")) ;;; Generated autoloads from progmodes/cmacexp.el (autoload 'c-macro-expand "cmacexp" "\ Expand C macros in the region, using the C preprocessor. Normally display output in temp buffer, but prefix arg means replace the region with it. `c-macro-preprocessor' specifies the preprocessor to use. If the user option `c-macro-prompt-flag' is non-nil prompt for arguments to the preprocessor (e.g. `-DDEBUG -I ./include'), otherwise use `c-macro-cppflags'. Noninteractive args are START, END, SUBST. For use inside Lisp programs, see also `c-macro-expansion'. (fn START END SUBST)" t) (register-definition-prefixes "cmacexp" '("c-macro-")) ;;; Generated autoloads from progmodes/cmake-ts-mode.el (autoload 'cmake-ts-mode "cmake-ts-mode" "\ Major mode for editing CMake files, powered by tree-sitter. (fn)" t) (register-definition-prefixes "cmake-ts-mode" '("cmake-ts-mode-")) ;;; Generated autoloads from cmuscheme.el (autoload 'run-scheme "cmuscheme" "\ Run an inferior Scheme process, input and output via buffer `*scheme*'. If there is a process already running in `*scheme*', switch to that buffer. With argument, allows you to edit the command line (default is value of `scheme-program-name'). If the file `~/.emacs_SCHEMENAME' or `~/.emacs.d/init_SCHEMENAME.scm' exists, it is given as initial input. Note that this may lose due to a timing error if the Scheme processor discards input when it starts up. Runs the hook `inferior-scheme-mode-hook' (after the `comint-mode-hook' is run). (Type \\[describe-mode] in the process buffer for a list of commands.) (fn CMD)" t) (register-definition-prefixes "cmuscheme" '("cmuscheme-load-hook" "inferior-scheme-" "scheme-" "switch-to-scheme")) ;;; Generated autoloads from color.el (autoload 'color-name-to-rgb "color" "\ Convert COLOR string to a list of normalized RGB components. COLOR should be a color name (e.g. \"white\") or an RGB triplet string (e.g. \"#ffff1122eecc\"). COLOR can also be the symbol `unspecified' or one of the strings \"unspecified-fg\" or \"unspecified-bg\", in which case the return value is nil. Normally the return value is a list of three floating-point numbers, (RED GREEN BLUE), each between 0.0 and 1.0 inclusive. Optional argument FRAME specifies the frame where the color is to be displayed. If FRAME is omitted or nil, use the selected frame. If FRAME cannot display COLOR, return nil. (fn COLOR &optional FRAME)") (register-definition-prefixes "color" '("color-")) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ Functions to call after output is inserted into the buffer. One possible function is `comint-postoutput-scroll-to-bottom'. These functions get one argument, a string containing the text as originally inserted. Note that this might not be the same as the buffer contents between `comint-last-output-start' and the buffer's `process-mark', if other filter functions have already modified the buffer. See also `comint-preoutput-filter-functions'. You can use `add-hook' to add functions to this list either globally or locally.") (autoload 'make-comint-in-buffer "comint" "\ Make a Comint process NAME in BUFFER, running PROGRAM. If BUFFER is nil, it defaults to NAME surrounded by `*'s. If there is a running process in BUFFER, it is not restarted. PROGRAM should be one of the following: - a string, denoting an executable program to create via `start-file-process' - a cons pair of the form (HOST . SERVICE), denoting a TCP connection to be opened via `open-network-stream' - nil, denoting a newly-allocated pty. Optional fourth arg STARTFILE is the name of a file, whose contents are sent to the process as its initial input. If PROGRAM is a string, any more args are arguments to PROGRAM. Return the (possibly newly created) process buffer. (fn NAME BUFFER PROGRAM &optional STARTFILE &rest SWITCHES)") (autoload 'make-comint "comint" "\ Make a Comint process NAME in a buffer, running PROGRAM. The name of the buffer is made by surrounding NAME with `*'s. PROGRAM should be either a string denoting an executable program to create via `start-file-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP connection to be opened via `open-network-stream'. If there is already a running process in that buffer, it is not restarted. Optional third arg STARTFILE is the name of a file, whose contents are sent to the process as its initial input. If PROGRAM is a string, any more args are arguments to PROGRAM. Returns the (possibly newly created) process buffer. (fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)") (autoload 'comint-run "comint" "\ Run PROGRAM in a Comint buffer and switch to that buffer. If SWITCHES are supplied, they are passed to PROGRAM. With prefix argument \\[universal-argument] prompt for SWITCHES as well as PROGRAM. The buffer name is made by surrounding the file name of PROGRAM with `*'s. The file name is used to make a symbol name, such as `comint-sh-hook', and any hooks on this symbol are run in the buffer. See `make-comint' and `comint-exec'. (fn PROGRAM &optional SWITCHES)" t) (function-put 'comint-run 'interactive-only 'make-comint) (defvar comint-file-name-prefix (purecopy "") "\ Prefix prepended to absolute file names taken from process input. This is used by Comint's and shell's completion functions, and by shell's directory tracking functions.") (autoload 'comint-redirect-send-command "comint" "\ Send COMMAND to process in current buffer, with output to OUTPUT-BUFFER. With prefix arg ECHO, echo output in process buffer. If NO-DISPLAY is non-nil, do not show the output buffer. (fn COMMAND OUTPUT-BUFFER ECHO &optional NO-DISPLAY)" t) (autoload 'comint-redirect-send-command-to-process "comint" "\ Send COMMAND to PROCESS, with output to OUTPUT-BUFFER. With prefix arg, echo output in process buffer. If NO-DISPLAY is non-nil, do not show the output buffer. (fn COMMAND OUTPUT-BUFFER PROCESS ECHO &optional NO-DISPLAY)" t) (autoload 'comint-redirect-results-list "comint" "\ Send COMMAND to current process. Return a list of expressions in the output which match REGEXP. REGEXP-GROUP is the regular expression group in REGEXP to use. (fn COMMAND REGEXP REGEXP-GROUP)") (autoload 'comint-redirect-results-list-from-process "comint" "\ Send COMMAND to PROCESS. Return a list of expressions in the output which match REGEXP. REGEXP-GROUP is the regular expression group in REGEXP to use. (fn PROCESS COMMAND REGEXP REGEXP-GROUP)") (register-definition-prefixes "comint" '("comint-")) ;;; Generated autoloads from emacs-lisp/comp.el (put 'no-native-compile 'safe-local-variable 'booleanp) (autoload 'comp-c-func-name "comp" "\ Given NAME, return a name suitable for the native code. Add PREFIX in front of it. If FIRST is not nil, pick the first available name ignoring compilation context and potential name clashes. (fn NAME PREFIX &optional FIRST)") (autoload 'comp-trampoline-compile "comp" "\ Synthesize compile and return a trampoline for SUBR-NAME. (fn SUBR-NAME)") (autoload 'comp-clean-up-stale-eln "comp" "\ Remove all FILE*.eln* files found in `native-comp-eln-load-path'. The files to be removed are those produced from the original source filename (including FILE). (fn FILE)") (autoload 'comp-lookup-eln "comp" "\ Given a Lisp source FILENAME return the corresponding .eln file if found. Search happens in `native-comp-eln-load-path'. (fn FILENAME)") (autoload 'native-compile "comp" "\ Compile FUNCTION-OR-FILE into native code. This is the synchronous entry-point for the Emacs Lisp native compiler. FUNCTION-OR-FILE is a function symbol, a form, or the filename of an Emacs Lisp source file. If OUTPUT is non-nil, use it as the filename for the compiled object. If FUNCTION-OR-FILE is a filename, if the compilation was successful return the filename of the compiled object. If FUNCTION-OR-FILE is a function symbol or a form, if the compilation was successful return the compiled function. (fn FUNCTION-OR-FILE &optional OUTPUT)") (autoload 'batch-native-compile "comp" "\ Perform batch native compilation of remaining command-line arguments. Native compilation equivalent of `batch-byte-compile'. Use this from the command line, with `-batch'; it won't work in an interactive Emacs session. Optional argument FOR-TARBALL non-nil means the file being compiled as part of building the source tarball, in which case the .eln file will be placed under the native-lisp/ directory (actually, in the last directory in `native-comp-eln-load-path'). (fn &optional FOR-TARBALL)") (autoload 'batch-byte+native-compile "comp" "\ Like `batch-native-compile', but used for bootstrap. Generate .elc files in addition to the .eln files. Force the produced .eln to be outputted in the eln system directory (the last entry in `native-comp-eln-load-path') unless `native-compile-target-directory' is non-nil. If the environment variable \"NATIVE_DISABLED\" is set, only byte compile.") (register-definition-prefixes "comp" '("comp-" "native-comp" "no-native-compile")) ;;; Generated autoloads from cedet/semantic/wisent/comp.el (register-definition-prefixes "semantic/wisent/comp" '("wisent-")) ;;; Generated autoloads from emacs-lisp/comp-common.el (autoload 'comp-function-type-spec "comp-common" "\ Return the type specifier of FUNCTION. This function returns a cons cell whose car is the function specifier, and cdr is a symbol, either `inferred' or `know'. If the symbol is `inferred', the type specifier is automatically inferred from the code itself by the native compiler; if it is `know', the type specifier comes from `comp-known-type-specifiers'. (fn FUNCTION)") (register-definition-prefixes "comp-common" '("comp-" "native-comp-")) ;;; Generated autoloads from emacs-lisp/comp-cstr.el (register-definition-prefixes "comp-cstr" '("comp-" "with-comp-cstr-accessors")) ;;; Generated autoloads from emacs-lisp/comp-run.el (autoload 'comp-subr-trampoline-install "comp-run" "\ Make SUBR-NAME effectively advice-able when called from native code. (fn SUBR-NAME)") (autoload 'native--compile-async "comp-run" "\ Compile FILES asynchronously. FILES is one filename or a list of filenames or directories. If optional argument RECURSIVELY is non-nil, recurse into subdirectories of given directories. If optional argument LOAD is non-nil, request to load the file after compiling. The optional argument SELECTOR has the following valid values: nil -- Select all files. a string -- A regular expression selecting files with matching names. a function -- A function selecting files with matching names. The variable `native-comp-async-jobs-number' specifies the number of (commands) to run simultaneously. LOAD can also be the symbol `late'. This is used internally if the byte code has already been loaded when this function is called. It means that we request the special kind of load necessary in that situation, called \"late\" loading. During a \"late\" load, instead of executing all top-level forms of the original files, only function definitions are loaded (paying attention to have these effective only if the bytecode definition was not changed in the meantime). (fn FILES &optional RECURSIVELY LOAD SELECTOR)") (autoload 'native-compile-async "comp-run" "\ Compile FILES asynchronously. FILES is one file or a list of filenames or directories. If optional argument RECURSIVELY is non-nil, recurse into subdirectories of given directories. If optional argument LOAD is non-nil, request to load the file after compiling. The optional argument SELECTOR has the following valid values: nil -- Select all files. a string -- A regular expression selecting files with matching names. a function -- A function selecting files with matching names. The variable `native-comp-async-jobs-number' specifies the number of (commands) to run simultaneously. (fn FILES &optional RECURSIVELY LOAD SELECTOR)") (register-definition-prefixes "comp-run" '("comp-" "native-comp")) ;;; Generated autoloads from vc/compare-w.el (autoload 'compare-windows "compare-w" "\ Compare text in current window with text in another window. The option `compare-windows-get-window-function' defines how to get another window. Compares the text starting at point in each window, moving over text in each one as far as they match. This command pushes the mark in each window at the prior location of point in that window. If both windows display the same buffer, the mark is pushed twice in that buffer: first in the other window, then in the selected window. A prefix arg IGNORE-WHITESPACE, means reverse the value of variable `compare-ignore-whitespace'. If `compare-ignore-whitespace' is nil, then a prefix arg means ignore changes in whitespace. If `compare-ignore-whitespace' is non-nil, then a prefix arg means don't ignore changes in whitespace. The variable `compare-windows-whitespace' controls how whitespace is skipped. If `compare-ignore-case' is non-nil, changes in case are also ignored. If `compare-windows-sync' is non-nil, then successive calls of this command work in interlaced mode: on first call it advances points to the next difference, on second call it synchronizes points by skipping the difference, on third call it again advances points to the next difference and so on. (fn IGNORE-WHITESPACE)" t) (register-definition-prefixes "compare-w" '("compare-")) ;;; Generated autoloads from emacs-lisp/compat.el (push (list 'compat emacs-major-version emacs-minor-version 9999) package--builtin-versions) (register-definition-prefixes "compat" '("compat-")) ;;; Generated autoloads from image/compface.el (register-definition-prefixes "compface" '("uncompface")) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ List of hook functions run by `compilation-mode'.") (custom-autoload 'compilation-mode-hook "compile" t) (defvar compilation-start-hook nil "\ Hook run after starting a new compilation process. The hook is run with one argument, the new process.") (custom-autoload 'compilation-start-hook "compile" t) (defvar compilation-window-height nil "\ Number of lines in a compilation window. If nil, use Emacs default.") (custom-autoload 'compilation-window-height "compile" t) (defvar compilation-process-setup-function #'ignore "\ Function to call to customize the compilation process. This function is called immediately before the compilation process is started. It can be used to set any variables or functions that are used while processing the output of the compilation process.") (defvar compilation-buffer-name-function #'compilation--default-buffer-name "\ Function to compute the name of a compilation buffer. The function receives one argument, the name of the major mode of the compilation buffer. It should return a string. By default, it returns `(concat \"*\" (downcase name-of-mode) \"*\")'.") (defvar compilation-finish-functions nil "\ Functions to call when a compilation process finishes. Each function is called with two arguments: the compilation buffer, and a string describing how the process finished.") (put 'compilation-directory 'safe-local-variable 'stringp) (defvar compilation-ask-about-save t "\ Non-nil means \\[compile] asks which buffers to save before compiling. Otherwise, it saves all modified buffers without asking.") (custom-autoload 'compilation-ask-about-save "compile" t) (defvar compilation-search-path '(nil) "\ List of directories to search for source files named in error messages. Elements should be directory names, not file names of directories. The value nil as an element means to try the default directory.") (custom-autoload 'compilation-search-path "compile" t) (defvar compile-command (purecopy "make -k ") "\ Last shell command used to do a compilation; default for next compilation. Sometimes it is useful for files to supply local values for this variable. You might also use mode hooks to specify it in certain modes, like this: (add-hook \\='c-mode-hook (lambda () (unless (or (file-exists-p \"makefile\") (file-exists-p \"Makefile\")) (setq-local compile-command (concat \"make -k \" (if buffer-file-name (shell-quote-argument (file-name-sans-extension buffer-file-name)))))))) It's often useful to leave a space at the end of the value.") (custom-autoload 'compile-command "compile" t) (put 'compile-command 'safe-local-variable (lambda (a) (and (stringp a) (if (boundp 'compilation-read-command) compilation-read-command t)))) (defvar compilation-disable-input nil "\ If non-nil, send end-of-file as compilation process input. This only affects platforms that support asynchronous processes (see `start-process'); synchronous compilation processes never accept input.") (custom-autoload 'compilation-disable-input "compile" t) (autoload 'compile "compile" "\ Compile the program including the current buffer. Default: run `make'. Runs COMMAND, a shell command, in a separate process asynchronously with output going to the buffer `*compilation*'. You can then use the command \\[next-error] to find the next error message and move to the source code that caused it. If optional second arg COMINT is t the buffer will be in Comint mode with `compilation-shell-minor-mode'. Interactively, prompts for the command if the variable `compilation-read-command' is non-nil; otherwise uses `compile-command'. With prefix arg, always prompts. Additionally, with universal prefix arg, compilation buffer will be in comint mode, i.e. interactive. To run more than one compilation at once, start one then rename the `*compilation*' buffer to some other name with \\[rename-buffer]. Then _switch buffers_ and start the new compilation. It will create a new `*compilation*' buffer. On most systems, termination of the main compilation process kills its subprocesses. The name used for the buffer is actually whatever is returned by the function in `compilation-buffer-name-function', so you can set that to a function that generates a unique name. (fn COMMAND &optional COMINT)" t) (autoload 'compilation--default-buffer-name "compile" "\ (fn NAME-OF-MODE)") (autoload 'compilation-start "compile" "\ Run compilation command COMMAND (low level interface). If COMMAND starts with a cd command, that becomes the `default-directory'. The rest of the arguments are optional; for them, nil means use the default. MODE is the major mode to set in the compilation buffer. Mode may also be t meaning use `compilation-shell-minor-mode' under `comint-mode'. If NAME-FUNCTION is non-nil, call it with one argument (the mode name) to determine the buffer name. Otherwise, the default is to reuses the current buffer if it has the proper major mode, else use or create a buffer with name based on the major mode. If HIGHLIGHT-REGEXP is non-nil, `next-error' will temporarily highlight the matching section of the visited source line; the default is to use the global value of `compilation-highlight-regexp'. If CONTINUE is non-nil, the buffer won't be emptied before compilation is started. This can be useful if you wish to combine the output from several compilation commands in the same buffer. The new output will be at the end of the buffer, and point is not changed. Returns the compilation buffer created. (fn COMMAND &optional MODE NAME-FUNCTION HIGHLIGHT-REGEXP CONTINUE)") (autoload 'compilation-mode "compile" "\ Major mode for compilation log buffers. \\To visit the source for a line-numbered error, move point to the error message line and type \\[compile-goto-error]. To kill the compilation, type \\[kill-compilation]. Runs `compilation-mode-hook' with `run-mode-hooks' (which see). \\{compilation-mode-map} (fn &optional NAME-OF-MODE)" t) (put 'define-compilation-mode 'doc-string-elt 3) (autoload 'compilation-shell-minor-mode "compile" "\ Toggle Compilation Shell minor mode. When Compilation Shell minor mode is enabled, all the error-parsing commands of the Compilation major mode are available but bound to keys that don't collide with Shell mode. See `compilation-mode'. This is a minor mode. If called interactively, toggle the `Compilation-Shell minor mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `compilation-shell-minor-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'compilation-minor-mode "compile" "\ Toggle Compilation minor mode. When Compilation minor mode is enabled, all the error-parsing commands of Compilation major mode are available. See `compilation-mode'. This is a minor mode. If called interactively, toggle the `Compilation minor mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `compilation-minor-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'compilation-next-error-function "compile" "\ Advance to the next error message and visit the file where the error was. This is the value of `next-error-function' in Compilation buffers. (fn N &optional RESET)" t) (register-definition-prefixes "compile" '("compil" "define-compilation-mode" "kill-compilation" "recompile")) ;;; Generated autoloads from cedet/srecode/compile.el (register-definition-prefixes "srecode/compile" '("srecode-")) ;;; Generated autoloads from cedet/semantic/analyze/complete.el (register-definition-prefixes "semantic/analyze/complete" '("semantic-analyze-")) ;;; Generated autoloads from cedet/semantic/complete.el (register-definition-prefixes "semantic/complete" '("semantic-")) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ Non-nil if Dynamic-Completion mode is enabled. See the `dynamic-completion-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `dynamic-completion-mode'.") (custom-autoload 'dynamic-completion-mode "completion" nil) (autoload 'dynamic-completion-mode "completion" "\ Toggle dynamic word-completion on or off. When this minor mode is turned on, typing \\`M-RET' or \\`C-RET' invokes the command `complete', which completes the word or symbol at point using the record of words/symbols you used previously and the previously-inserted completions. Typing a word or moving point across it constitutes \"using\" the word. By default, the database of all the dynamic completions that were inserted by \\[complete] is saved on the file specified by `save-completions-file-name' when you exit Emacs, and will be loaded from that file when this mode is enabled in a future Emacs session. The following important options control the various aspects of this mode: `enable-completion', `save-completions-flag', and `save-completions-retention-time'. Few other less important options can be found in the `completion' group. This is a global minor mode. If called interactively, toggle the `Dynamic-Completion mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='dynamic-completion-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "completion" '("*c-def-regexp*" "*lisp-def-regexp*" "accept-completion" "add-" "cdabbrev-" "check-completion-length" "clear-all-completions" "cmpl-" "complet" "current-completion-source" "delete-completion" "enable-completion" "find-" "inside-locate-completion-entry" "interactive-completion-string-reader" "kill-" "list-all-completions" "load-completions-from-file" "make-c" "next-cdabbrev" "num-cmpl-sources" "reset-cdabbrev" "save" "set-c" "symbol-" "use-completion-")) ;;; Generated autoloads from completion-preview.el (autoload 'completion-preview-mode "completion-preview" "\ Show in-buffer completion suggestions in a preview as you type. This mode automatically shows and updates the completion preview according to the text around point. \\When the preview is visible, \\[completion-preview-insert] accepts the completion suggestion, \\[completion-preview-next-candidate] cycles forward to the next completion suggestion, and \\[completion-preview-prev-candidate] cycles backward. This is a minor mode. If called interactively, toggle the `Completion-Preview mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `completion-preview-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (put 'global-completion-preview-mode 'globalized-minor-mode t) (defvar global-completion-preview-mode nil "\ Non-nil if Global Completion-Preview mode is enabled. See the `global-completion-preview-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-completion-preview-mode'.") (custom-autoload 'global-completion-preview-mode "completion-preview" nil) (autoload 'global-completion-preview-mode "completion-preview" "\ Toggle Completion-Preview mode in all buffers. With prefix ARG, enable Global Completion-Preview mode if ARG is positive; otherwise, disable it. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. Completion-Preview mode is enabled in all buffers where `completion-preview-mode' would do it. See `completion-preview-mode' for more information on Completion-Preview mode. `global-completion-preview-modes' is used to control which modes this minor mode is used in. (fn &optional ARG)" t) (defvar global-completion-preview-modes '((not minibuffer-mode special-mode) t) "\ Which major modes `completion-preview-mode' is switched on in. This variable can be either t (all major modes), nil (no major modes), or a list of modes and (not modes) to switch use this minor mode or not. For instance (c-mode (not message-mode mail-mode) text-mode) means \"use this mode in all modes derived from `c-mode', don't use in modes derived from `message-mode' or `mail-mode', but do use in other modes derived from `text-mode'\". An element with value t means \"use\" and nil means \"don't use\". There's an implicit nil at the end of the list.") (custom-autoload 'global-completion-preview-modes "completion-preview" t) (register-definition-prefixes "completion-preview" '("completion-preview-")) ;;; Generated autoloads from textmodes/conf-mode.el (autoload 'conf-mode "conf-mode" "\ Mode for Unix and Windows Conf files and Java properties. Most conf files know only three kinds of constructs: parameter assignments optionally grouped into sections and comments. Yet there is a great range of variation in the exact syntax of conf files. See below for various wrapper commands that set up the details for some of the most widespread variants. This mode sets up font locking, outline, imenu and it provides alignment support through `conf-align-assignments'. If strings come out wrong, try `conf-quote-normal'. Some files allow continuation lines, either with a backslash at the end of line, or by indenting the next line (further). These constructs cannot currently be recognized. Because of this great variety of nuances, which are often not even clearly specified, please don't expect it to get every file quite right. Patches that clearly identify some special case, without breaking the general ones, are welcome. If instead you start this mode with the generic `conf-mode' command, it will parse the buffer. It will generally well identify the first four cases listed below. If the buffer doesn't have enough contents to decide, this is identical to `conf-windows-mode' on Windows, elsewhere to `conf-unix-mode'. See also `conf-space-mode', `conf-colon-mode', `conf-javaprop-mode', `conf-ppd-mode' and `conf-xdefaults-mode'. \\{conf-mode-map} (fn)" t) (autoload 'conf-unix-mode "conf-mode" "\ Conf Mode starter for Unix style Conf files. Comments start with `#'. For details see `conf-mode'. (fn)" t) (autoload 'conf-windows-mode "conf-mode" "\ Conf Mode starter for Windows style Conf files. Comments start with `;'. For details see `conf-mode'. Example: ; Conf mode font-locks this right on Windows and with \\[conf-windows-mode] [ExtShellFolderViews] Default={5984FFE0-28D4-11CF-AE66-08002B2E1262} {5984FFE0-28D4-11CF-AE66-08002B2E1262}={5984FFE0-28D4-11CF-AE66-08002B2E1262} [{5984FFE0-28D4-11CF-AE66-08002B2E1262}] PersistMoniker=file://Folder.htt (fn)" t) (autoload 'conf-javaprop-mode "conf-mode" "\ Conf Mode starter for Java properties files. Comments start with `#'. Example: # Conf mode font-locks this right with \\[conf-javaprop-mode] (Java properties) name:value name=value name value x.1 = x.2.y.1.z.1 = x.2.y.1.z.2.zz = (fn)" t) (autoload 'conf-space-mode "conf-mode" "\ Conf Mode starter for space separated conf files. \"Assignments\" are with ` '. Keywords before the parameters are recognized according to the variable `conf-space-keywords-alist'. Alternatively, you can specify a value for the file local variable `conf-space-keywords'. Use the function `conf-space-keywords' if you want to specify keywords in an interactive fashion instead. For details see `conf-mode'. Example: # Conf mode font-locks this right with \\[conf-space-mode] (space separated) image/jpeg jpeg jpg jpe image/png png image/tiff tiff tif # Or with keywords (from a recognized file name): class desktop # Standard multimedia devices add /dev/audio desktop add /dev/mixer desktop (fn)" t) (autoload 'conf-space-keywords "conf-mode" "\ Enter Conf Space mode using regexp KEYWORDS to match the keywords. See `conf-space-mode'. (fn KEYWORDS)" t) (autoload 'conf-colon-mode "conf-mode" "\ Conf Mode starter for Colon files. \"Assignments\" are with `:'. For details see `conf-mode'. Example: # Conf mode font-locks this right with \\[conf-colon-mode] (colon) : \"\\241\" exclamdown : \"\\242\" cent (fn)" t) (autoload 'conf-ppd-mode "conf-mode" "\ Conf Mode starter for Adobe/CUPS PPD files. Comments start with `*%' and \"assignments\" are with `:'. For details see `conf-mode'. Example: *% Conf mode font-locks this right with \\[conf-ppd-mode] (PPD) *DefaultTransfer: Null *Transfer Null.Inverse: \"{ 1 exch sub }\" (fn)" t) (autoload 'conf-xdefaults-mode "conf-mode" "\ Conf Mode starter for Xdefaults files. Comments start with `!' and \"assignments\" are with `:'. For details see `conf-mode'. Example: ! Conf mode font-locks this right with \\[conf-xdefaults-mode] (.Xdefaults) *background: gray99 *foreground: black (fn)" t) (autoload 'conf-toml-mode "conf-mode" "\ Conf Mode starter for TOML files. Comments start with `#' and \"assignments\" are with `='. For details see `conf-mode'. Example: # Conf mode font-locks this right with \\[conf-toml-mode] [entry] value = \"some string\" (fn)" t) (autoload 'conf-desktop-mode "conf-mode" "\ Conf Mode started for freedesktop.org Desktop files. Comments start with `#' and \"assignments\" are with `='. For details see `conf-mode'. # Conf mode font-locks this correctly with \\[conf-desktop-mode] [Desktop Entry] Name=GNU Image Manipulation Program Name[oc]=Editor d'imatge GIMP Exec=gimp-2.8 %U Terminal=false (fn)" t) (register-definition-prefixes "conf-mode" '("conf-")) ;;; Generated autoloads from cedet/ede/config.el (register-definition-prefixes "ede/config" '("ede-")) ;;; Generated autoloads from play/cookie1.el (autoload 'cookie "cookie1" "\ Return a random phrase from PHRASE-FILE. When the phrase file is read in, display STARTMSG at the beginning of load, ENDMSG at the end. Interactively, PHRASE-FILE defaults to `cookie-file', unless that is nil or a prefix argument is used. (fn PHRASE-FILE &optional STARTMSG ENDMSG)" t) (autoload 'cookie-insert "cookie1" "\ Insert random phrases from PHRASE-FILE; COUNT of them. When the phrase file is read in, display STARTMSG at the beginning of load, ENDMSG at the end. (fn PHRASE-FILE &optional COUNT STARTMSG ENDMSG)") (autoload 'cookie-snarf "cookie1" "\ Read the PHRASE-FILE, return it as a vector of strings. Emit STARTMSG and ENDMSG before and after. Cache the result; second and subsequent calls on the same file won't go to disk. (fn PHRASE-FILE &optional STARTMSG ENDMSG)") (register-definition-prefixes "cookie1" '("cookie")) ;;; Generated autoloads from emacs-lisp/copyright.el (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) (put 'copyright-names-regexp 'safe-local-variable 'stringp) (put 'copyright-year-ranges 'safe-local-variable 'booleanp) (autoload 'copyright-update "copyright" "\ Update copyright notice to indicate the current year. With prefix ARG, replace the years in the notice rather than adding the current year after them. If necessary, and `copyright-current-gpl-version' is set, any copying permissions following the copyright are updated as well. If non-nil, INTERACTIVEP tells the function to behave as when it's called interactively. (fn &optional ARG INTERACTIVEP)" t) (autoload 'copyright-fix-years "copyright" "\ Convert 2 digit years to 4 digit years. Uses heuristic: year >= 50 means 19xx, < 50 means 20xx. If `copyright-year-ranges' (which see) is non-nil, also independently replaces consecutive years with a range." t) (autoload 'copyright "copyright" "\ Insert a copyright by $ORGANIZATION notice at cursor. (fn &optional STR ARG)" t) (autoload 'copyright-update-directory "copyright" "\ Update copyright notice for all files in DIRECTORY matching MATCH. If FIX is non-nil, run `copyright-fix-years' instead. (fn DIRECTORY MATCH &optional FIX)" t) (register-definition-prefixes "copyright" '("copyright-")) ;;; Generated autoloads from progmodes/cperl-mode.el (put 'cperl-file-style 'safe-local-variable 'stringp) (put 'cperl-indent-level 'safe-local-variable 'integerp) (put 'cperl-brace-offset 'safe-local-variable 'integerp) (put 'cperl-continued-brace-offset 'safe-local-variable 'integerp) (put 'cperl-label-offset 'safe-local-variable 'integerp) (put 'cperl-continued-statement-offset 'safe-local-variable 'integerp) (put 'cperl-extra-newline-before-brace 'safe-local-variable 'booleanp) (put 'cperl-merge-trailing-else 'safe-local-variable 'booleanp) (autoload 'cperl-mode "cperl-mode" "\ Major mode for editing Perl code. Expression and list commands understand all C brackets. Tab indents for Perl code. Paragraphs are separated by blank lines only. Delete converts tabs to spaces as it moves back. Various characters in Perl almost always come in pairs: {}, (), [], sometimes <>. When the user types the first, she gets the second as well, with optional special formatting done on {}. (Disabled by default.) You can always quote (with \\[quoted-insert]) the left \"paren\" to avoid the expansion. The processing of < is special, since most the time you mean \"less\". CPerl mode tries to guess whether you want to type pair <>, and inserts is if it appropriate. You can set `cperl-electric-parens-string' to the string that contains the parens from the above list you want to be electrical. Electricity of parens is controlled by `cperl-electric-parens'. You may also set `cperl-electric-parens-mark' to have electric parens look for active mark and \"embrace\" a region if possible.' CPerl mode provides expansion of the Perl control constructs: if, else, elsif, unless, while, until, continue, do, for, foreach, formy and foreachmy. and POD directives (Disabled by default, see `cperl-electric-keywords'.) The user types the keyword immediately followed by a space, which causes the construct to be expanded, and the point is positioned where she is most likely to want to be. E.g., when the user types a space following \"if\" the following appears in the buffer: if () { or if () } { } and the cursor is between the parentheses. The user can then type some boolean expression within the parens. Having done that, typing \\[cperl-linefeed] places you - appropriately indented - on a new line between the braces (if you typed \\[cperl-linefeed] in a POD directive line, then appropriate number of new lines is inserted). If CPerl decides that you want to insert \"English\" style construct like bite if angry; it will not do any expansion. See also help on variable `cperl-extra-newline-before-brace'. (Note that one can switch the help message on expansion by setting `cperl-message-electric-keyword' to nil.) \\[cperl-linefeed] is a convenience replacement for typing carriage return. It places you in the next line with proper indentation, or if you type it inside the inline block of control construct, like foreach (@lines) {print; print} and you are on a boundary of a statement inside braces, it will transform the construct into a multiline and will place you into an appropriately indented blank line. If you need a usual `newline-and-indent' behavior, it is on \\[newline-and-indent], see documentation on `cperl-electric-linefeed'. Use \\[cperl-invert-if-unless] to change a construction of the form if (A) { B } into B if A; \\{cperl-mode-map} Setting the variable `cperl-font-lock' to t switches on `font-lock-mode', `cperl-electric-lbrace-space' to t switches on electric space between $ and {, `cperl-electric-parens-string' is the string that contains parentheses that should be electric in CPerl (see also `cperl-electric-parens-mark' and `cperl-electric-parens'), setting `cperl-electric-keywords' enables electric expansion of control structures in CPerl. `cperl-electric-linefeed' governs which one of two linefeed behavior is preferable. You can enable all these options simultaneously by setting `cperl-hairy' to t. In this case you can switch separate options off by setting them to `null'. Note that one may undo the extra whitespace inserted by semis and braces in `auto-newline'-mode by consequent \\[cperl-electric-backspace]. Short one-liner-style help is available on \\[cperl-get-help], and one can run perldoc or man via menu. It is possible to show this help automatically after some idle time. This is regulated by variable `cperl-lazy-help-time'. Default with `cperl-hairy' (if the value of `cperl-lazy-help-time' is nil) is 5 secs idle time . It is also possible to switch this on/off from the menu, or via \\[cperl-toggle-autohelp]. Use \\[cperl-lineup] to vertically lineup some construction - put the beginning of the region at the start of construction, and make region span the needed amount of lines. Variables `cperl-pod-here-scan', `cperl-pod-here-fontify', `cperl-pod-face', `cperl-pod-head-face' control processing of POD and here-docs sections. Results of scan are used for indentation too. Variables controlling indentation style: `cperl-tab-always-indent' Non-nil means TAB in CPerl mode should always reindent the current line, regardless of where in the line point is when the TAB command is used. `cperl-indent-left-aligned-comments' Non-nil means that the comment starting in leftmost column should indent. `cperl-auto-newline' Non-nil means automatically newline before and after braces, and after colons and semicolons, inserted in Perl code. The following \\[cperl-electric-backspace] will remove the inserted whitespace. Insertion after colons requires both this variable and `cperl-auto-newline-after-colon' set. `cperl-auto-newline-after-colon' Non-nil means automatically newline even after colons. Subject to `cperl-auto-newline' setting. `cperl-indent-level' Indentation of Perl statements within surrounding block. The surrounding block's indentation is the indentation of the line on which the open-brace appears. `cperl-continued-statement-offset' Extra indentation given to a substatement, such as the then-clause of an if, or body of a while, or just a statement continuation. `cperl-continued-brace-offset' Extra indentation given to a brace that starts a substatement. This is in addition to `cperl-continued-statement-offset'. `cperl-brace-offset' Extra indentation for line if it starts with an open brace. `cperl-brace-imaginary-offset' An open brace following other text is treated as if it the line started this far to the right of the actual line indentation. `cperl-label-offset' Extra indentation for line that is a label. `cperl-min-label-indent' Minimal indentation for line that is a label. Settings for classic indent-styles: K&R BSD=C++ GNU PBP PerlStyle=Whitesmith `cperl-indent-level' 5 4 2 4 4 `cperl-brace-offset' 0 0 0 0 0 `cperl-continued-brace-offset' -5 -4 0 0 0 `cperl-label-offset' -5 -4 -2 -2 -4 `cperl-continued-statement-offset' 5 4 2 4 4 CPerl knows several indentation styles, and may bulk set the corresponding variables. Use \\[cperl-set-style] to do this or set the `cperl-file-style' user option. Use \\[cperl-set-style-back] to restore the memorized preexisting values (both available from menu). See examples in `cperl-style-examples'. Part of the indentation style is how different parts of if/elsif/else statements are broken into lines; in CPerl, this is reflected on how templates for these constructs are created (controlled by `cperl-extra-newline-before-brace'), and how reflow-logic should treat \"continuation\" blocks of else/elsif/continue, controlled by the same variable, and by `cperl-extra-newline-before-brace-multiline', `cperl-merge-trailing-else', `cperl-indent-region-fix-constructs'. If `cperl-indent-level' is 0, the statement after opening brace in column 0 is indented on `cperl-brace-offset'+`cperl-continued-statement-offset'. Turning on CPerl mode calls the hooks in the variable `cperl-mode-hook' with no args. DO NOT FORGET to read micro-docs (available from `Perl' menu) or as help on variables `cperl-tips', `cperl-problems', `cperl-praise', `cperl-speed'. (fn)" t) (autoload 'cperl-perldoc "cperl-mode" "\ Run `perldoc' on WORD. (fn WORD)" t) (autoload 'cperl-perldoc-at-point "cperl-mode" "\ Run a `perldoc' on the word around point." t) (register-definition-prefixes "cperl-mode" '("cperl-")) ;;; Generated autoloads from progmodes/cpp.el (autoload 'cpp-highlight-buffer "cpp" "\ Highlight C code according to preprocessor conditionals. This command pops up a buffer which you should edit to specify what kind of highlighting to use, and the criteria for highlighting. A prefix arg suppresses display of that buffer. (fn ARG)" t) (autoload 'cpp-parse-edit "cpp" "\ Edit display information for cpp conditionals." t) (register-definition-prefixes "cpp" '("cpp-")) ;;; Generated autoloads from cedet/srecode/cpp.el (register-definition-prefixes "srecode/cpp" '("srecode-")) ;;; Generated autoloads from cedet/ede/cpp-root.el (register-definition-prefixes "ede/cpp-root" '("ede-cpp-root-")) ;;; Generated autoloads from emacs-lisp/crm.el (autoload 'completing-read-multiple "crm" "\ Read multiple strings in the minibuffer, with completion. The arguments are the same as those of `completing-read'. \\ Input multiple strings by separating each one with a string that matches the regexp `crm-separator'. For example, if the separator regexp is \",\", entering \"alice,bob,eve\" specifies the strings \"alice\", \"bob\", and \"eve\". We refer to contiguous strings of non-separator-characters as \"elements\". In this example there are three elements. Completion is available on a per-element basis. For example, if the contents of the minibuffer are \"alice,bob,eve\" and point is between \"l\" and \"i\", pressing \\[minibuffer-complete] operates on the element \"alice\". This function returns a list of the strings that were read, with empty strings removed. (fn PROMPT TABLE &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)") (register-definition-prefixes "crm" '("crm-")) ;;; Generated autoloads from cedet/semantic/symref/cscope.el (register-definition-prefixes "semantic/symref/cscope" '("semantic-symref-cscope--line-re")) ;;; Generated autoloads from progmodes/csharp-mode.el (add-to-list 'auto-mode-alist '("\\.cs\\'" . csharp-mode)) (autoload 'csharp-mode "csharp-mode" "\ Major mode for editing Csharp code. Key bindings: \\{csharp-mode-map} (fn)" t) (autoload 'csharp-ts-mode "csharp-mode" "\ Major mode for editing C# code. (fn)" t) (register-definition-prefixes "csharp-mode" '("codedoc-font-lock-" "csharp-")) ;;; Generated autoloads from textmodes/css-mode.el (autoload 'css-ts-mode "css-mode" "\ Major mode to edit Cascading Style Sheets (CSS). \\ This mode provides syntax highlighting, indentation, completion, and documentation lookup for CSS, based on the tree-sitter library. Use `\\[completion-at-point]' to complete CSS properties, property values, pseudo-elements, pseudo-classes, at-rules, bang-rules, and HTML tags, classes and IDs. Completion candidates for HTML class names and IDs are found by looking through open HTML mode buffers. Use `\\[info-lookup-symbol]' to look up documentation of CSS properties, at-rules, pseudo-classes, and pseudo-elements on the Mozilla Developer Network (MDN). Use `\\[fill-paragraph]' to reformat CSS declaration blocks. It can also be used to fill comments. \\{css-mode-map} (fn)" t) (autoload 'css-mode "css-mode" "\ Major mode to edit Cascading Style Sheets (CSS). \\ This mode provides syntax highlighting, indentation, completion, and documentation lookup for CSS. Use `\\[completion-at-point]' to complete CSS properties, property values, pseudo-elements, pseudo-classes, at-rules, bang-rules, and HTML tags, classes and IDs. Completion candidates for HTML class names and IDs are found by looking through open HTML mode buffers. Use `\\[info-lookup-symbol]' to look up documentation of CSS properties, at-rules, pseudo-classes, and pseudo-elements on the Mozilla Developer Network (MDN). Use `\\[fill-paragraph]' to reformat CSS declaration blocks. It can also be used to fill comments. \\{css-mode-map} (fn)" t) (add-to-list 'auto-mode-alist '("\\.scss\\'" . scss-mode)) (autoload 'scss-mode "css-mode" "\ Major mode to edit \"Sassy CSS\" files. (fn)" t) (autoload 'css-lookup-symbol "css-mode" "\ Display the CSS documentation for SYMBOL, as found on MDN. When this command is used interactively, it picks a default symbol based on the CSS text before point -- either an @-keyword, a property name, a pseudo-class, or a pseudo-element, depending on what is seen near point. (fn SYMBOL)" t) (register-definition-prefixes "css-mode" '("css-" "scss-")) ;;; Generated autoloads from cedet/srecode/ctxt.el (register-definition-prefixes "srecode/ctxt" '("srecode-")) ;;; Generated autoloads from cedet/semantic/ctxt.el (register-definition-prefixes "semantic/ctxt" '("semantic-")) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ Non-nil if Cua mode is enabled. See the `cua-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `cua-mode'.") (custom-autoload 'cua-mode "cua-base" nil) (autoload 'cua-mode "cua-base" "\ Toggle Common User Access style editing (CUA mode). CUA mode is a global minor mode. When enabled, typed text replaces the active selection, and you can use C-z, C-x, C-c, and C-v to undo, cut, copy, and paste in addition to the normal Emacs bindings. The C-x and C-c keys only do cut and copy when the region is active, so in most cases, they do not conflict with the normal function of these prefix keys. If you really need to perform a command which starts with one of the prefix keys even when the region is active, you have three options: - press the prefix key twice very quickly (within 0.2 seconds), - press the prefix key and the following key within 0.2 seconds, or - use the SHIFT key with the prefix key, i.e. C-S-x or C-S-c. You can customize `cua-enable-cua-keys' to completely disable the CUA bindings, or `cua-prefix-override-inhibit-delay' to change the prefix fallback behavior. This is a global minor mode. If called interactively, toggle the `Cua mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='cua-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'cua-selection-mode "cua-base" "\ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. (fn ARG)" t) (register-definition-prefixes "cua-base" '("cua-")) ;;; Generated autoloads from emulation/cua-gmrk.el (register-definition-prefixes "cua-gmrk" '("cua-")) ;;; Generated autoloads from emulation/cua-rect.el (autoload 'cua-rectangle-mark-mode "cua-rect" "\ Toggle the region as rectangular. Activates the region if needed. Only lasts until the region is deactivated. This is a minor mode. If called interactively, toggle the `Cua-Rectangle-Mark mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `cua-rectangle-mark-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "cua-rect" '("cua-")) ;;; Generated autoloads from emacs-lisp/cursor-sensor.el (defvar cursor-sensor-inhibit nil "\ When non-nil, suspend `cursor-sensor-mode' and `cursor-intangible-mode'. By convention, this is a list of symbols where each symbol stands for the \"cause\" of the suspension.") (autoload 'cursor-intangible-mode "cursor-sensor" "\ Keep cursor outside of any `cursor-intangible' text property. This is a minor mode. If called interactively, toggle the `Cursor-Intangible mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `cursor-intangible-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'cursor-sensor-mode "cursor-sensor" "\ Handle the `cursor-sensor-functions' text property. This property should hold a list of functions which react to the motion of the cursor. They're called with three arguments (WINDOW OLDPOS DIR) where WINDOW is the affected window, OLDPOS is the last known position of the cursor and DIR can be `entered' or `left' depending on whether the cursor is entering the area covered by the text-property property or leaving it. This is a minor mode. If called interactively, toggle the `Cursor-Sensor mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `cursor-sensor-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "cursor-sensor" '("cursor-sensor-")) ;;; Generated autoloads from cus-dep.el (register-definition-prefixes "cus-dep" '("custom-" "generated-custom-dependencies-file")) ;;; Generated autoloads from cus-edit.el (defvar custom-browse-sort-alphabetically nil "\ If non-nil, sort customization group alphabetically in `custom-browse'.") (custom-autoload 'custom-browse-sort-alphabetically "cus-edit" t) (defvar custom-buffer-sort-alphabetically t "\ Whether to sort customization groups alphabetically in Custom buffer.") (custom-autoload 'custom-buffer-sort-alphabetically "cus-edit" t) (defvar custom-menu-sort-alphabetically nil "\ If non-nil, sort each customization group alphabetically in menus.") (custom-autoload 'custom-menu-sort-alphabetically "cus-edit" t) (autoload 'customize-set-value "cus-edit" "\ Set VARIABLE to VALUE, and return VALUE. VALUE is a Lisp object. If VARIABLE has a `variable-interactive' property, that is used as if it were the arg to `interactive' (which see) to interactively read the value. If VARIABLE has a `custom-type' property, it must be a widget and the `:prompt-value' property of that widget will be used for reading the value. If given a prefix (or a COMMENT argument), also prompt for a comment. (fn VARIABLE VALUE &optional COMMENT)" t) (autoload 'customize-set-variable "cus-edit" "\ Set the default for VARIABLE to VALUE, and return VALUE. VALUE is a Lisp object. If VARIABLE has a `custom-set' property, that is used for setting VARIABLE, otherwise `set-default' is used. If VARIABLE has a `variable-interactive' property, that is used as if it were the arg to `interactive' (which see) to interactively read the value. If VARIABLE has a `custom-type' property, it must be a widget and the `:prompt-value' property of that widget will be used for reading the value. If given a prefix (or a COMMENT argument), also prompt for a comment. (fn VARIABLE VALUE &optional COMMENT)" t) (autoload 'setopt "cus-edit" "\ Set VARIABLE/VALUE pairs, and return the final VALUE. This is like `setq', but is meant for user options instead of plain variables. This means that `setopt' will execute any `custom-set' form associated with VARIABLE. (fn [VARIABLE VALUE]...)" nil t) (autoload 'setopt--set "cus-edit" "\ (fn VARIABLE VALUE)") (autoload 'customize-save-variable "cus-edit" "\ Set the default for VARIABLE to VALUE, and save it for future sessions. Return VALUE. If VARIABLE has a `custom-set' property, that is used for setting VARIABLE, otherwise `set-default' is used. If VARIABLE has a `variable-interactive' property, that is used as if it were the arg to `interactive' (which see) to interactively read the value. If VARIABLE has a `custom-type' property, it must be a widget and the `:prompt-value' property of that widget will be used for reading the value. If given a prefix (or a COMMENT argument), also prompt for a comment. (fn VARIABLE VALUE &optional COMMENT)" t) (autoload 'customize-push-and-save "cus-edit" "\ Add ELTS to LIST-VAR and save for future sessions, safely. ELTS should be a list. This function adds each entry to the value of LIST-VAR using `add-to-list'. If Emacs is initialized, call `customize-save-variable' to save the resulting list value now. Otherwise, add an entry to `after-init-hook' to save it after initialization. (fn LIST-VAR ELTS)") (autoload 'customize "cus-edit" "\ Select a customization buffer which you can use to set user options. User options are structured into \"groups\". Initially the top-level group `Emacs' and its immediate subgroups are shown; the contents of those subgroups are initially hidden." t) (autoload 'customize-mode "cus-edit" "\ Customize options related to a major or minor mode. By default the current major mode is used. With a prefix argument or if the current major mode has no known group, prompt for the MODE to customize. (fn MODE)" t) (autoload 'customize-group "cus-edit" "\ Customize GROUP, which must be a customization group. If OTHER-WINDOW is non-nil, display in another window. (fn &optional GROUP OTHER-WINDOW)" t) (autoload 'customize-group-other-window "cus-edit" "\ Customize GROUP, which must be a customization group, in another window. (fn &optional GROUP)" t) (defalias 'customize-variable 'customize-option) (autoload 'customize-option "cus-edit" "\ Customize SYMBOL, which must be a user option. (fn SYMBOL)" t) (autoload 'customize-toggle-option "cus-edit" "\ Toggle the value of boolean option SYMBOL for this session. (fn SYMBOL)" t) (defalias 'toggle-option #'customize-toggle-option) (defalias 'customize-variable-other-window 'customize-option-other-window) (autoload 'customize-option-other-window "cus-edit" "\ Customize SYMBOL, which must be a user option. Show the buffer in another window, but don't select it. (fn SYMBOL)" t) (defvar customize-package-emacs-version-alist nil "\ Alist mapping versions of a package to Emacs versions. We use this for packages that have their own names, but are released as part of Emacs itself. Each elements looks like this: (PACKAGE (PVERSION . EVERSION)...) Here PACKAGE is the name of a package, as a symbol. After PACKAGE come one or more elements, each associating a package version PVERSION with the first Emacs version EVERSION in which it (or a subsequent version of PACKAGE) was first released. Both PVERSION and EVERSION are strings. PVERSION should be a string that this package used in the :package-version keyword for `defcustom', `defgroup', and `defface'. For example, the MH-E package updates this alist as follows: (add-to-list \\='customize-package-emacs-version-alist \\='(MH-E (\"6.0\" . \"22.1\") (\"6.1\" . \"22.1\") (\"7.0\" . \"22.1\") (\"7.1\" . \"22.1\") (\"7.2\" . \"22.1\") (\"7.3\" . \"22.1\") (\"7.4\" . \"22.1\") (\"8.0\" . \"22.1\"))) The value of PACKAGE needs to be unique and it needs to match the PACKAGE value appearing in the :package-version keyword. Since the user might see the value in an error message, a good choice is the official name of the package, such as MH-E or Gnus.") (define-obsolete-function-alias 'customize-changed-options #'customize-changed "28.1") (autoload 'customize-changed "cus-edit" "\ Customize all settings whose meanings have changed in Emacs itself. This includes new user options and faces, and new customization groups, as well as older options and faces whose meanings or default values have changed since the previous major Emacs release. With argument SINCE-VERSION (a string), customize all settings that were added or redefined since that version. (fn &optional SINCE-VERSION)" t) (autoload 'customize-face "cus-edit" "\ Customize FACE, which should be a face name or nil. If FACE is nil, customize all faces. If FACE is actually a face-alias, customize the face it is aliased to. If OTHER-WINDOW is non-nil, display in another window. Interactively, when point is on text which has a face specified, suggest to customize that face, if it's customizable. (fn &optional FACE OTHER-WINDOW)" t) (autoload 'customize-face-other-window "cus-edit" "\ Show customization buffer for face FACE in other window. If FACE is actually a face-alias, customize the face it is aliased to. Interactively, when point is on text which has a face specified, suggest to customize that face, if it's customizable. (fn &optional FACE)" t) (autoload 'customize-unsaved "cus-edit" "\ Customize all options and faces set in this session but not saved." t) (autoload 'customize-rogue "cus-edit" "\ Customize all user variables modified outside customize." t) (autoload 'customize-saved "cus-edit" "\ Customize all saved options and faces." t) (autoload 'customize-apropos "cus-edit" "\ Customize loaded options, faces and groups matching PATTERN. PATTERN can be a word, a list of words (separated by spaces), or a regexp (using some regexp special characters). If it is a word, search for matches for that word as a substring. If it is a list of words, search for matches for any two (or more) of those words. If TYPE is `options', include only options. If TYPE is `faces', include only faces. If TYPE is `groups', include only groups. (fn PATTERN &optional TYPE)" t) (autoload 'customize-apropos-options "cus-edit" "\ Customize all loaded customizable options matching REGEXP. (fn REGEXP &optional IGNORED)" t) (autoload 'customize-apropos-faces "cus-edit" "\ Customize all loaded faces matching REGEXP. (fn REGEXP)" t) (autoload 'customize-apropos-groups "cus-edit" "\ Customize all loaded groups matching REGEXP. (fn REGEXP)" t) (autoload 'custom-prompt-customize-unsaved-options "cus-edit" "\ Prompt user to customize any unsaved customization options. Return nil if user chooses to customize, for use in `kill-emacs-query-functions'.") (autoload 'custom-buffer-create "cus-edit" "\ Create a buffer containing OPTIONS. Optional NAME is the name of the buffer. OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where SYMBOL is a customization option, and WIDGET is a widget for editing that option. DESCRIPTION is unused. (fn OPTIONS &optional NAME DESCRIPTION)") (autoload 'custom-buffer-create-other-window "cus-edit" "\ Create a buffer containing OPTIONS, and display it in another window. The result includes selecting that window. Optional NAME is the name of the buffer. OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where SYMBOL is a customization option, and WIDGET is a widget for editing that option. DESCRIPTION is unused. (fn OPTIONS &optional NAME DESCRIPTION)") (autoload 'customize-browse "cus-edit" "\ Create a tree browser for the customize hierarchy. (fn &optional GROUP)" t) (defvar custom-file nil "\ File used for storing customization information. The default is nil, which means to use your init file as specified by `user-init-file'. If the value is not nil, it should be an absolute file name. You can set this option through Custom, if you carefully read the last paragraph below. However, usually it is simpler to write something like the following in your init file: (setq custom-file \"~/.config/emacs-custom.el\") (load custom-file) Note that both lines are necessary: the first line tells Custom to save all customizations in this file, but does not load it. When you change this variable outside Custom, look in the previous custom file (usually your init file) for the forms `(custom-set-variables ...)' and `(custom-set-faces ...)', and copy them (whichever ones you find) to the new custom file. This will preserve your existing customizations. If you save this option using Custom, Custom will write all currently saved customizations, including the new one for this option itself, into the file you specify, overwriting any `custom-set-variables' and `custom-set-faces' forms already present in that file. It will not delete any customizations from the old custom file. You should do that manually if that is what you want. You also have to put something like (load \"CUSTOM-FILE\") in your init file, where CUSTOM-FILE is the actual name of the file. Otherwise, Emacs will not load the file when it starts up, and hence will not set `custom-file' to that file either.") (custom-autoload 'custom-file "cus-edit" t) (autoload 'custom-save-all "cus-edit" "\ Save all customizations in `custom-file'.") (autoload 'customize-save-customized "cus-edit" "\ Save all user options which have been set in this session." t) (autoload 'custom-menu-create "cus-edit" "\ Create menu for customization group SYMBOL. The menu is in a format applicable to `easy-menu-define'. (fn SYMBOL)") (autoload 'customize-menu-create "cus-edit" "\ Return a customize menu for customization group SYMBOL. If optional NAME is given, use that as the name of the menu. Otherwise the menu will be named `Customize'. The format is suitable for use with `easy-menu-define'. (fn SYMBOL &optional NAME)") (autoload 'customize-icon "cus-edit" "\ Customize ICON. (fn ICON)" t) (autoload 'custom-set-icons "cus-edit" "\ Install user customizations of icon specs specified in ARGS. These settings are registered as theme `user'. The arguments should each be a list of the form: (SYMBOL EXP) This stores EXP (without evaluating it) as the saved spec for SYMBOL. (fn &rest ARGS)") (autoload 'custom-save-icons "cus-edit" "\ Save all customized icons in `custom-file'.") (autoload 'customize-dirlocals "cus-edit" "\ Customize Directory Local Variables in the current directory. With optional argument FILENAME non-nil, customize the `.dir-locals.el' file that FILENAME specifies. (fn &optional FILENAME)" t) (register-definition-prefixes "cus-edit" '("Custom-" "cus" "widget-")) ;;; Generated autoloads from cus-theme.el (autoload 'customize-create-theme "cus-theme" "\ Create or edit a custom theme. THEME, if non-nil, should be an existing theme to edit. If THEME is `user', the resulting *Custom Theme* buffer also contains a checkbox for removing the theme settings specified in the buffer from the Custom save file. BUFFER, if non-nil, should be a buffer to use; the default is named *Custom Theme*. (fn &optional THEME BUFFER)" t) (autoload 'custom-theme-visit-theme "cus-theme" "\ Set up a Custom buffer to edit custom theme THEME. (fn THEME)" t) (autoload 'describe-theme "cus-theme" "\ Display a description of the Custom theme THEME (a symbol). (fn THEME)" t) (autoload 'customize-themes "cus-theme" "\ Display a selectable list of Custom themes. When called from Lisp, BUFFER should be the buffer to use; if omitted, a buffer named *Custom Themes* is used. (fn &optional BUFFER)" t) (register-definition-prefixes "cus-theme" '("custom-" "describe-theme-")) ;;; Generated autoloads from cedet/ede/custom.el (register-definition-prefixes "ede/custom" '("ede-")) ;;; Generated autoloads from vc/cvs-status.el (autoload 'cvs-status-mode "cvs-status" "\ Mode used for cvs status output. (fn)" t) (register-definition-prefixes "cvs-status" '("cvs-")) ;;; Generated autoloads from progmodes/cwarn.el (autoload 'cwarn-mode "cwarn" "\ Minor mode that highlights suspicious C and C++ constructions. Suspicious constructs are highlighted using `font-lock-warning-face'. Note, in addition to enabling this minor mode, the major mode must be included in the variable `cwarn-configuration'. By default C and C++ modes are included. This is a minor mode. If called interactively, toggle the `Cwarn mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `cwarn-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (put 'global-cwarn-mode 'globalized-minor-mode t) (defvar global-cwarn-mode nil "\ Non-nil if Global Cwarn mode is enabled. See the `global-cwarn-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-cwarn-mode'.") (custom-autoload 'global-cwarn-mode "cwarn" nil) (autoload 'global-cwarn-mode "cwarn" "\ Toggle Cwarn mode in all buffers. With prefix ARG, enable Global Cwarn mode if ARG is positive; otherwise, disable it. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. Cwarn mode is enabled in all buffers where `turn-on-cwarn-mode-if-enabled' would do it. See `cwarn-mode' for more information on Cwarn mode. (fn &optional ARG)" t) (register-definition-prefixes "cwarn" '("cwarn-" "turn-on-cwarn-mode-if-enabled")) ;;; Generated autoloads from language/cyril-util.el (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ Return KOI8-R external character code of CHAR if appropriate. (fn CHAR)") (autoload 'cyrillic-encode-alternativnyj-char "cyril-util" "\ Return ALTERNATIVNYJ external character code of CHAR if appropriate. (fn CHAR)") (autoload 'standard-display-cyrillic-translit "cyril-util" "\ Display a Cyrillic buffer using a transliteration. For readability, the table is slightly different from the one used for the input method `cyrillic-translit'. The argument is a string which specifies which language you are using; that affects the choice of transliterations slightly. Possible values are listed in `cyrillic-language-alist'. If the argument is t, we use the default cyrillic transliteration. If the argument is nil, we return the display table to its standard state. (fn &optional CYRILLIC-LANGUAGE)" t) (register-definition-prefixes "cyril-util" '("cyrillic-language-alist")) ;;; Generated autoloads from dabbrev.el (put 'dabbrev-case-fold-search 'risky-local-variable t) (put 'dabbrev-case-replace 'risky-local-variable t) (define-key esc-map "/" 'dabbrev-expand) (define-key esc-map [?\C-/] 'dabbrev-completion) (autoload 'dabbrev-completion "dabbrev" "\ Completion on current word. Like \\[dabbrev-expand] but finds all expansions in the current buffer and presents suggestions for completion. With a prefix argument ARG, it searches all buffers accepted by the function pointed out by `dabbrev-friend-buffer-function' to find the completions. If the prefix argument is 16 (which comes from \\[universal-argument] \\[universal-argument]), then it searches *all* buffers. (fn &optional ARG)" t) (autoload 'dabbrev-expand "dabbrev" "\ Expand previous word \"dynamically\". Expands to the most recent, preceding word for which this is a prefix. If no suitable preceding word is found, words following point are considered. If still no suitable word is found, then look in the buffers accepted by the function pointed out by variable `dabbrev-friend-buffer-function', if `dabbrev-check-other-buffers' says so. Then, if `dabbrev-check-all-buffers' is non-nil, look in all the other buffers, subject to constraints specified by `dabbrev-ignored-buffer-names' and `dabbrev-ignored-buffer-regexps'. A positive prefix argument, N, says to take the Nth backward *distinct* possibility. A negative argument says search forward. If the cursor has not moved from the end of the previous expansion and no argument is given, replace the previously-made expansion with the next possible expansion not yet tried. The variable `dabbrev-backward-only' may be used to limit the direction of search to backward if set non-nil. See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. (fn ARG)" t) (register-definition-prefixes "dabbrev" '("dabbrev-")) ;;; Generated autoloads from cedet/data-debug.el (autoload 'data-debug-new-buffer "data-debug" "\ Create a new data-debug buffer with NAME. (fn NAME)") (register-definition-prefixes "data-debug" '("data-debug-")) ;;; Generated autoloads from cedet/semantic/db.el (register-definition-prefixes "semantic/db" '("semanticdb-")) ;;; Generated autoloads from cedet/semantic/db-debug.el (register-definition-prefixes "semantic/db-debug" '("semanticdb-")) ;;; Generated autoloads from cedet/semantic/db-ebrowse.el (register-definition-prefixes "semantic/db-ebrowse" '("semanticdb-")) ;;; Generated autoloads from cedet/semantic/db-el.el (register-definition-prefixes "semantic/db-el" '("semanticdb-")) ;;; Generated autoloads from cedet/semantic/db-file.el (register-definition-prefixes "semantic/db-file" '("semanticdb-")) ;;; Generated autoloads from cedet/semantic/db-find.el (register-definition-prefixes "semantic/db-find" '("semanticdb-")) ;;; Generated autoloads from cedet/semantic/db-global.el (register-definition-prefixes "semantic/db-global" '("semanticdb-")) ;;; Generated autoloads from cedet/semantic/db-javascript.el (register-definition-prefixes "semantic/db-javascript" '("semanticdb-")) ;;; Generated autoloads from cedet/semantic/db-mode.el (register-definition-prefixes "semantic/db-mode" '("semanticdb-")) ;;; Generated autoloads from cedet/semantic/db-ref.el (register-definition-prefixes "semantic/db-ref" '("semanticdb-ref-")) ;;; Generated autoloads from cedet/semantic/db-typecache.el (register-definition-prefixes "semantic/db-typecache" '("semanticdb-")) ;;; Generated autoloads from net/dbus.el (autoload 'dbus-handle-event "dbus" "\ Handle events from the D-Bus. EVENT is a D-Bus event, see `dbus-check-event'. HANDLER, being part of the event, is called with arguments ARGS (without type information). If the HANDLER returns a `dbus-error', it is propagated as return message. (fn EVENT)" t) (function-put 'dbus-handle-event 'completion-predicate #'ignore) (autoload 'dbus-monitor "dbus" "\ Invoke `dbus-register-monitor' interactively, and switch to the buffer. BUS is either a Lisp keyword, `:system' or `:session', or a string denoting the bus address. The value nil defaults to `:session'. (fn &optional BUS)" t) (register-definition-prefixes "dbus" '("dbus-")) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload 'dcl-mode "dcl-mode" "\ Major mode for editing DCL-files. This mode indents command lines in blocks. (A block is commands between THEN-ELSE-ENDIF and between lines matching dcl-block-begin-regexp and dcl-block-end-regexp.) Labels are indented to a fixed position unless they begin or end a block. Whole-line comments (matching dcl-comment-line-regexp) are not indented. Data lines are not indented. Key bindings: \\{dcl-mode-map} Commands not usually bound to keys: \\[dcl-save-nondefault-options] Save changed options \\[dcl-save-all-options] Save all options \\[dcl-save-option] Save any option \\[dcl-save-mode] Save buffer mode Variables controlling indentation style and extra features: dcl-basic-offset Extra indentation within blocks. dcl-continuation-offset Extra indentation for continued lines. dcl-margin-offset Indentation for the first command line in a file or SUBROUTINE. dcl-margin-label-offset Indentation for a label. dcl-comment-line-regexp Lines matching this regexp will not be indented. dcl-block-begin-regexp dcl-block-end-regexp Regexps that match command lines that begin and end, respectively, a block of command lines that will be given extra indentation. Command lines between THEN-ELSE-ENDIF are always indented; these variables make it possible to define other places to indent. Set to nil to disable this feature. dcl-calc-command-indent-function Can be set to a function that customizes indentation for command lines. Two such functions are included in the package: dcl-calc-command-indent-multiple dcl-calc-command-indent-hang dcl-calc-cont-indent-function Can be set to a function that customizes indentation for continued lines. One such function is included in the package: dcl-calc-cont-indent-relative (set by default) dcl-tab-always-indent If t, pressing TAB always indents the current line. If nil, pressing TAB indents the current line if point is at the left margin. dcl-electric-characters Non-nil causes lines to be indented at once when a label, ELSE or ENDIF is typed. dcl-electric-reindent-regexps Use this variable and function dcl-electric-character to customize which words trigger electric indentation. dcl-tempo-comma dcl-tempo-left-paren dcl-tempo-right-paren These variables control the look of expanded templates. dcl-imenu-generic-expression Default value for `imenu-generic-expression'. The default includes SUBROUTINE labels in the main listing and sub-listings for other labels, CALL, GOTO and GOSUB statements. dcl-imenu-label-labels dcl-imenu-label-goto dcl-imenu-label-gosub dcl-imenu-label-call Change the text that is used as sub-listing labels in imenu. To run code after DCL mode has loaded, use `with-eval-after-load'. Turning on DCL mode calls the value of the variable `dcl-mode-hook' with no args, if that value is non-nil. The following example uses the default values for all variables: $! This is a comment line that is not indented (it matches $! dcl-comment-line-regexp) $! Next follows the first command line. It is indented dcl-margin-offset. $ i = 1 $ ! Other comments are indented like command lines. $ ! A margin label indented dcl-margin-label-offset: $ label: $ if i.eq.1 $ then $ ! Lines between THEN-ELSE and ELSE-ENDIF are $ ! indented dcl-basic-offset $ loop1: ! This matches dcl-block-begin-regexp... $ ! ...so this line is indented dcl-basic-offset $ text = \"This \" + - ! is a continued line \"lined up with the command line\" $ type sys$input Data lines are not indented at all. $ endloop1: ! This matches dcl-block-end-regexp $ endif $ There is some minimal font-lock support (see vars `dcl-font-lock-defaults' and `dcl-font-lock-keywords'). (fn)" t) (register-definition-prefixes "dcl-mode" '("dcl-")) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger 'debug) (autoload 'debug "debug" "\ Enter debugger. \\`\\[debugger-continue]' returns from the debugger. In interactive sessions, this switches to a backtrace buffer and shows the Lisp backtrace of function calls there. In batch mode (more accurately, when `noninteractive' is non-nil), it shows the Lisp backtrace on the standard error stream (unless `backtrace-on-error-noninteractive' is nil), and then kills Emacs, causing it to exit with a negative exit code. Arguments are mainly for use when this is called from the internals of the evaluator. You may call with no args, or you may pass nil as the first arg and any other args you like. In that case, the list of args after the first will be printed into the backtrace buffer. If `inhibit-redisplay' is non-nil when this function is called, the debugger will not be entered. (fn &rest ARGS)" t) (autoload 'debug-on-entry "debug" "\ Request FUNCTION to invoke debugger each time it is called. When called interactively, prompt for FUNCTION in the minibuffer. This works by modifying the definition of FUNCTION. If you tell the debugger to continue, FUNCTION's execution proceeds. If FUNCTION is a normal function or a macro written in Lisp, you can also step through its execution. FUNCTION can also be a primitive that is not a special form, in which case stepping is not possible. Break-on-entry for primitive functions only works when that function is called from Lisp. Use \\[cancel-debug-on-entry] to cancel the effect of this command. Redefining FUNCTION also cancels it. (fn FUNCTION)" t) (autoload 'cancel-debug-on-entry "debug" "\ Undo effect of \\[debug-on-entry] on FUNCTION. If FUNCTION is nil, cancel `debug-on-entry' for all functions. When called interactively, prompt for FUNCTION in the minibuffer. To specify a nil argument interactively, exit with an empty minibuffer. (fn &optional FUNCTION)" t) (autoload 'debug-on-variable-change "debug" "\ Trigger a debugger invocation when VARIABLE is changed. When called interactively, prompt for VARIABLE in the minibuffer. This works by calling `add-variable-watcher' on VARIABLE. If you quit from the debugger, this will abort the change (unless the change is caused by the termination of a let-binding). The watchpoint may be circumvented by C code that changes the variable directly (i.e., not via `set'). Changing the value of the variable (e.g., `setcar' on a list variable) will not trigger watchpoint. Use \\[cancel-debug-on-variable-change] to cancel the effect of this command. Uninterning VARIABLE or making it an alias of another symbol also cancels it. (fn VARIABLE)" t) (defalias 'debug-watch #'debug-on-variable-change) (autoload 'cancel-debug-on-variable-change "debug" "\ Undo effect of \\[debug-on-variable-change] on VARIABLE. If VARIABLE is nil, cancel `debug-on-variable-change' for all variables. When called interactively, prompt for VARIABLE in the minibuffer. To specify a nil argument interactively, exit with an empty minibuffer. (fn &optional VARIABLE)" t) (defalias 'cancel-debug-watch #'cancel-debug-on-variable-change) (register-definition-prefixes "debug" '("debug" "inhibit-debug-on-entry")) ;;; Generated autoloads from cedet/semantic/bovine/debug.el (register-definition-prefixes "semantic/bovine/debug" '("semantic-")) ;;; Generated autoloads from cedet/semantic/analyze/debug.el (register-definition-prefixes "semantic/analyze/debug" '("semantic-analyze")) ;;; Generated autoloads from cedet/semantic/debug.el (register-definition-prefixes "semantic/debug" '("semantic-debug-")) ;;; Generated autoloads from play/decipher.el (autoload 'decipher "decipher" "\ Format a buffer of ciphertext for cryptanalysis and enter Decipher mode." t) (autoload 'decipher-mode "decipher" "\ Major mode for decrypting monoalphabetic substitution ciphers. Lower-case letters enter plaintext. Upper-case letters are commands. The buffer is made read-only so that normal Emacs commands cannot modify it. The most useful commands are: \\ \\[decipher-digram-list] Display a list of all digrams & their frequency \\[decipher-frequency-count] Display the frequency of each ciphertext letter \\[decipher-adjacency-list] Show adjacency list for current letter (lists letters appearing next to it) \\[decipher-make-checkpoint] Save the current cipher alphabet (checkpoint) \\[decipher-restore-checkpoint] Restore a saved cipher alphabet (checkpoint) (fn)" t) (register-definition-prefixes "decipher" '("decipher-")) ;;; Generated autoloads from cedet/semantic/decorate.el (register-definition-prefixes "semantic/decorate" '("semantic-")) ;;; Generated autoloads from delim-col.el (autoload 'delimit-columns-customize "delim-col" "\ Customize the `columns' group." t) (autoload 'delimit-columns-region "delim-col" "\ Prettify all columns in a text region. START and END delimit the text region. If you have, for example, the following columns: a b c d aaaa bb ccc ddddd Depending on your settings (see below), you then obtain the following result: [ a , b , c , d ] [ aaaa, bb , ccc , ddddd ] See the `delimit-columns-str-before', `delimit-columns-str-after', `delimit-columns-str-separator', `delimit-columns-before', `delimit-columns-after', `delimit-columns-separator', `delimit-columns-format' and `delimit-columns-extra' variables for customization of the look. (fn START END)" t) (autoload 'delimit-columns-rectangle "delim-col" "\ Prettify all columns in a text rectangle. See `delimit-columns-region' for what this entails. START and END delimit the corners of the text rectangle. (fn START END)" t) (register-definition-prefixes "delim-col" '("delimit-columns-")) ;;; Generated autoloads from delsel.el (defalias 'pending-delete-mode 'delete-selection-mode) (defvar delete-selection-mode nil "\ Non-nil if Delete-Selection mode is enabled. See the `delete-selection-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `delete-selection-mode'.") (custom-autoload 'delete-selection-mode "delsel" nil) (autoload 'delete-selection-mode "delsel" "\ Toggle Delete Selection mode. When Delete Selection mode is enabled, typed text replaces the selection if the selection is active. Otherwise, typed text is just inserted at point regardless of any selection. See `delete-selection-helper' and `delete-selection-pre-hook' for information on adapting behavior of commands in Delete Selection mode. This is a global minor mode. If called interactively, toggle the `Delete-Selection mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='delete-selection-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'delete-active-region "delsel" "\ Delete the active region. If KILLP is non-nil, or if called interactively with a prefix argument, the active region is killed instead of deleted. (fn &optional KILLP)" t) (register-definition-prefixes "delsel" '("del" "minibuffer-keyboard-quit")) ;;; Generated autoloads from cedet/semantic/dep.el (register-definition-prefixes "semantic/dep" '("defcustom-mode-local-semantic-dependency-system-include-path" "semantic-")) ;;; Generated autoloads from emacs-lisp/derived.el (autoload 'define-derived-mode "derived" "\ Create a new mode CHILD which is a variant of an existing mode PARENT. The arguments are as follows: CHILD: the name of the command for the derived mode. PARENT: the name of the command for the parent mode (e.g. `text-mode') or nil if there is no parent. NAME: a string that will appear in the mode line (e.g. \"HTML\") DOCSTRING: an optional documentation string--if you do not supply one, the function will attempt to invent something useful. KEYWORD-ARGS: optional arguments in the form of pairs of keyword and value. The following keyword arguments are currently supported: :group GROUP Declare the customization group that corresponds to this mode. The command `customize-mode' uses this. :syntax-table TABLE Use TABLE instead of the default (CHILD-syntax-table). A nil value means to simply use the same syntax-table as the parent. :abbrev-table TABLE Use TABLE instead of the default (CHILD-abbrev-table). A nil value means to simply use the same abbrev-table as the parent. :after-hook FORM A single Lisp form which is evaluated after the mode hooks have been run. It should not be quoted. :interactive BOOLEAN Whether the derived mode should be `interactive' or not. The default is t. BODY: forms to execute just before running the hooks for the new mode. Do not use `interactive' here. Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode: (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\") You could then make new key bindings for `LaTeX-thesis-mode-map' without changing regular LaTeX mode. In this example, BODY is empty, and DOCSTRING is generated by default. As a more complex example, the following command uses `sgml-mode' as the parent, and then sets the variable `case-fold-search' to nil: (define-derived-mode article-mode sgml-mode \"Article\" \"Major mode for editing technical articles.\" (setq case-fold-search nil)) Note that if the documentation string had been left out, it would have been generated automatically, with a reference to the keymap. The new mode runs the hook named MODE-hook. For `foo-mode', the hook will be named `foo-mode-hook'. See Info node `(elisp)Derived Modes' for more details. (fn CHILD PARENT NAME [DOCSTRING] [KEYWORD-ARGS...] &rest BODY)" nil t) (function-put 'define-derived-mode 'doc-string-elt 4) (function-put 'define-derived-mode 'lisp-indent-function 'defun) (register-definition-prefixes "derived" '("derived-mode-")) ;;; Generated autoloads from descr-text.el (autoload 'describe-text-properties "descr-text" "\ Describe widgets, buttons, overlays, and text properties at POS. POS is taken to be in BUFFER or in current buffer if nil. Interactively, describe them for the character after point. If optional second argument OUTPUT-BUFFER is non-nil, insert the output into that buffer, and don't initialize or clear it otherwise. (fn POS &optional OUTPUT-BUFFER BUFFER)" t) (autoload 'describe-char "descr-text" "\ Describe position POS (interactively, point) and the char after POS. POS is taken to be in BUFFER, or the current buffer if BUFFER is nil. The information is displayed in buffer `*Help*'. The position information includes POS; the total size of BUFFER; the region limits, if narrowed; the column number; and the horizontal scroll amount, if the buffer is horizontally scrolled. The character information includes: its codepoint; its charset (see `char-charset'), overridden by the `charset' text property at POS, if any; the codepoint of the character in the above charset; the character's script (as defined by `char-script-table') the character's syntax, as produced by `syntax-after' and `internal-describe-syntax-value'; its category (see `char-category-set' and `describe-char-categories'); how to input the character using the keyboard and input methods; how the character is encoded in BUFFER and in BUFFER's file; the font and font glyphs used to display the character; the composition information for displaying the character (if relevant); the character's canonical name and other properties defined by the Unicode Data Base; and widgets, buttons, overlays, and text properties relevant to POS. (fn POS &optional BUFFER)" t) (autoload 'describe-char-eldoc "descr-text" "\ Return a description of character at point for use by ElDoc mode. Return nil if character at point is a printable ASCII character (i.e. codepoint between 32 and 127 inclusively). Otherwise return a description formatted by `describe-char-eldoc--format' function taking into account value of `eldoc-echo-area-use-multiline-p' variable and width of minibuffer window for width limit. This function can be used as a value of `eldoc-documentation-functions' variable. (fn CALLBACK &rest _)") (register-definition-prefixes "descr-text" '("describe-")) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ Non-nil if Desktop-Save mode is enabled. See the `desktop-save-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `desktop-save-mode'.") (custom-autoload 'desktop-save-mode "desktop" nil) (autoload 'desktop-save-mode "desktop" "\ Toggle desktop saving (Desktop Save mode). When Desktop Save mode is enabled, the state of Emacs is saved from one session to another. The saved Emacs \"desktop configuration\" includes the buffers, their file names, major modes, buffer positions, window and frame configuration, and some important global variables. To enable this feature for future sessions, customize `desktop-save-mode' to t, or add this line in your init file: (desktop-save-mode 1) When this mode is enabled, Emacs will save the desktop when it exits (this may prompt you, see the option `desktop-save'). The next time Emacs starts, if this mode is active it will restore the desktop. To manually save the desktop at any time, use the command \\[desktop-save]. To load it, use \\[desktop-read]. Once a desktop file exists, Emacs will auto-save it according to the option `desktop-auto-save-timeout'. To see all the options you can set, browse the `desktop' customization group. For further details, see info node `(emacs)Saving Emacs Sessions'. This is a global minor mode. If called interactively, toggle the `Desktop-Save mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='desktop-save-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (defvar desktop-locals-to-save '(desktop-locals-to-save truncate-lines case-fold-search case-replace fill-column overwrite-mode change-log-default-name line-number-mode column-number-mode size-indication-mode buffer-file-coding-system buffer-display-time indent-tabs-mode tab-width indicate-buffer-boundaries indicate-empty-lines show-trailing-whitespace) "\ List of local variables to save for each buffer. The variables are saved only when they really are local. Conventional minor modes are restored automatically; they should not be listed here.") (custom-autoload 'desktop-locals-to-save "desktop" t) (defvar-local desktop-save-buffer nil "\ When non-nil, save buffer status in desktop file. If the value is a function, it is called by `desktop-save' with argument DESKTOP-DIRNAME to obtain auxiliary information to save in the desktop file along with the state of the buffer for which it was called. When file names are returned, they should be formatted using the call \"(desktop-file-name FILE-NAME DESKTOP-DIRNAME)\". Later, when `desktop-read' evaluates the desktop file, auxiliary information is passed as the argument DESKTOP-BUFFER-MISC to functions in `desktop-buffer-mode-handlers'.") (defvar desktop-buffer-mode-handlers nil "\ Alist of major mode specific functions to restore a desktop buffer. Functions listed are called by `desktop-create-buffer' when `desktop-read' evaluates the desktop file. List elements must have the form (MAJOR-MODE . RESTORE-BUFFER-FUNCTION). Buffers with a major mode not specified here, are restored by the default handler `desktop-restore-file-buffer'. Handlers are called with argument list (DESKTOP-BUFFER-FILE-NAME DESKTOP-BUFFER-NAME DESKTOP-BUFFER-MISC) Furthermore, they may use the following variables: `desktop-file-version' `desktop-buffer-major-mode' `desktop-buffer-minor-modes' `desktop-buffer-point' `desktop-buffer-mark' `desktop-buffer-read-only' `desktop-buffer-locals' If a handler returns a buffer, then the saved mode settings and variable values for that buffer are copied into it. Modules that define a major mode that needs a special handler should contain code like (defun foo-restore-desktop-buffer ... (add-to-list \\='desktop-buffer-mode-handlers \\='(foo-mode . foo-restore-desktop-buffer)) The major mode function must either be autoloaded, or of the form \"foobar-mode\" and defined in library \"foobar\", so that desktop can guess how to load the mode's definition.") (put 'desktop-buffer-mode-handlers 'risky-local-variable t) (defvar desktop-minor-mode-handlers nil "\ Alist of functions to restore non-standard minor modes. Functions are called by `desktop-create-buffer' to restore minor modes. List elements must have the form (MINOR-MODE . RESTORE-FUNCTION). Minor modes not specified here, are restored by the standard minor mode function. Handlers are called with argument list (DESKTOP-BUFFER-LOCALS) Furthermore, they may use the following variables: `desktop-file-version' `desktop-buffer-file-name' `desktop-buffer-name' `desktop-buffer-major-mode' `desktop-buffer-minor-modes' `desktop-buffer-point' `desktop-buffer-mark' `desktop-buffer-read-only' `desktop-buffer-misc' When a handler is called, the buffer has been created and the major mode has been set, but local variables listed in desktop-buffer-locals has not yet been created and set. Modules that define a minor mode that needs a special handler should contain code like (defun foo-desktop-restore ... (add-to-list \\='desktop-minor-mode-handlers \\='(foo-mode . foo-desktop-restore)) The minor mode function must either be autoloaded, or of the form \"foobar-mode\" and defined in library \"foobar\", so that desktop can guess how to load the mode's definition. See also `desktop-minor-mode-table'.") (put 'desktop-minor-mode-handlers 'risky-local-variable t) (autoload 'desktop-clear "desktop" "\ Empty the Desktop. This kills all buffers except for internal ones and those with names matched by a regular expression in the list `desktop-clear-preserve-buffers'. Furthermore, it clears the variables listed in `desktop-globals-to-clear'. When called interactively and `desktop-restore-frames' is non-nil, it also deletes all frames except the selected one (and its minibuffer frame, if different)." t) (autoload 'desktop-save "desktop" "\ Save the state of Emacs in a desktop file in directory DIRNAME. Optional argument RELEASE non-nil says we're done with this desktop, in which case this function releases the lock of the desktop file in DIRNAME. If ONLY-IF-CHANGED is non-nil, compare the current desktop information to that in the desktop file, and if the desktop information has not changed since it was last saved, then do not rewrite the file. To restore the desktop, use `desktop-read'. This function can save the desktop in either format version 208 (which only Emacs 25.1 and later can read) or version 206 (which is readable by any Emacs from version 22.1 onwards). By default, it will use the same format the desktop file had when it was last saved, or version 208 when writing a fresh desktop file. To upgrade a version 206 file to version 208, call this command explicitly with a prefix argument: \\[universal-argument] \\[desktop-save]. If you are upgrading from Emacs 24 or older, we recommend to do this once you decide you no longer need compatibility with versions of Emacs before 25.1. To downgrade a version 208 file to version 206, use a double prefix argument: \\[universal-argument] \\[universal-argument] \\[desktop-save]. Emacs will ask for confirmation when you upgrade or downgrade your desktop file. In a non-interactive call, VERSION can be given as an integer, either 206 or 208, to specify the format version in which to save the file, no questions asked. (fn DIRNAME &optional RELEASE ONLY-IF-CHANGED VERSION)" t) (autoload 'desktop-remove "desktop" "\ Delete desktop file in `desktop-dirname'. This function also sets `desktop-dirname' to nil." t) (autoload 'desktop-read "desktop" "\ Read and process the desktop file in directory DIRNAME. Look for a desktop file in DIRNAME, or if DIRNAME is omitted, look in directories listed in `desktop-path'. If a desktop file is found, it is processed and `desktop-after-read-hook' is run. If no desktop file is found, clear the desktop and run `desktop-no-desktop-file-hook'. Interactively, with prefix arg \\[universal-argument], ask for DIRNAME. This function is a no-op when Emacs is running in batch mode. It returns t if a desktop file was loaded, nil otherwise. (fn DIRNAME)" t) (autoload 'desktop-change-dir "desktop" "\ Change to desktop saved in DIRNAME. Kill the desktop as specified by variables `desktop-save-mode' and `desktop-save', then clear the desktop and load the desktop file in directory DIRNAME. (fn DIRNAME)" t) (autoload 'desktop-save-in-desktop-dir "desktop" "\ Save the desktop in directory `desktop-dirname'." t) (autoload 'desktop-revert "desktop" "\ Revert to the last loaded desktop." t) (register-definition-prefixes "desktop" '("desktop-")) ;;; Generated autoloads from cedet/ede/detect.el (register-definition-prefixes "ede/detect" '("ede-")) ;;; Generated autoloads from gnus/deuglify.el (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ Unwrap lines that appear to be wrapped citation lines. You can control what lines will be unwrapped by frobbing `gnus-outlook-deuglify-unwrap-min' and `gnus-outlook-deuglify-unwrap-max', indicating the minimum and maximum length of an unwrapped citation line. If NODISPLAY is non-nil, don't redisplay the article buffer. (fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode)) (autoload 'gnus-article-outlook-repair-attribution "deuglify" "\ Repair a broken attribution line. If NODISPLAY is non-nil, don't redisplay the article buffer. (fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode)) (autoload 'gnus-article-outlook-rearrange-citation "deuglify" "\ Repair broken citations. If NODISPLAY is non-nil, don't redisplay the article buffer. (fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode)) (autoload 'gnus-outlook-deuglify-article "deuglify" "\ Full deuglify of broken Outlook (Express) articles. Treat \"smartquotes\", unwrap lines, repair attribution and rearrange citation. If NODISPLAY is non-nil, don't redisplay the article buffer. (fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode)) (autoload 'gnus-article-outlook-deuglify-article "deuglify" "\ Deuglify broken Outlook (Express) articles and redisplay." '(gnus-article-mode gnus-summary-mode)) (register-definition-prefixes "deuglify" '("gnus-outlook-")) ;;; Generated autoloads from dframe.el (register-definition-prefixes "dframe" '("dframe-")) ;;; Generated autoloads from calendar/diary-lib.el (autoload 'diary "diary-lib" "\ Generate the diary window for ARG days starting with the current date. If no argument is provided, the number of days of diary entries is governed by the variable `diary-number-of-entries'. A value of ARG less than 1 does nothing. This function is suitable for execution in an init file. (fn &optional ARG)" t) (autoload 'diary-mail-entries "diary-lib" "\ Send a mail message showing diary entries for next NDAYS days. If no prefix argument is given, NDAYS is set to `diary-mail-days'. Mail is sent to the address specified by `diary-mail-addr'. Here is an example of a script to call `diary-mail-entries', suitable for regular scheduling using cron (or at). Note that since `emacs -script' does not load your init file, you should ensure that all relevant variables are set. #!/usr/bin/emacs -script ;; diary-rem.el - run the Emacs diary-reminder (setq diary-mail-days 3 diary-file \"/path/to/diary.file\" calendar-date-style \\='european diary-mail-addr \"user@host.name\") (diary-mail-entries) # diary-rem.el ends here (fn &optional NDAYS)" t) (autoload 'diary-mode "diary-lib" "\ Major mode for editing the diary file. (fn)" t) (register-definition-prefixes "diary-lib" '("calendar-mark-" "diary-")) ;;; Generated autoloads from net/dictionary.el (autoload 'dictionary-mode "dictionary" "\ Mode for searching a dictionary. This is a mode for searching a dictionary server implementing the protocol defined in RFC 2229. This is a quick reference to this mode describing the default key bindings: \\ \\[dictionary-close] close the dictionary buffer \\[describe-mode] display this help \\[dictionary-search] ask for a new word to search \\[dictionary-lookup-definition] search for word at point \\[forward-button] or \\`TAB' move point to the next link \\[backward-button] or \\`S-TAB' move point to the previous link \\[dictionary-match-words] ask for a pattern and list all matching words \\[dictionary-select-dictionary] select the default dictionary \\[dictionary-select-strategy] select the default search strategy \\`RET' visit link at point \\`' visit clicked link (fn)" t) (autoload 'dictionary "dictionary" "\ Create a new dictionary buffer and install `dictionary-mode'." t) (autoload 'dictionary-search "dictionary" "\ Search for WORD in all the known dictionaries. Interactively, prompt for WORD, and offer the word at point as default. Optional argument DICTIONARY means restrict the search to only that one dictionary. Interactively, with prefix argument, prompt for DICTIONARY. (fn WORD &optional DICTIONARY)" t) (autoload 'dictionary-lookup-definition "dictionary" "\ Unconditionally lookup the word at point." t) (autoload 'dictionary-match-words "dictionary" "\ Search PATTERN in current default dictionary using default strategy. (fn &optional PATTERN &rest IGNORED)" t) (autoload 'dictionary-mouse-popup-matching-words "dictionary" "\ Display entries matching the word at the cursor retrieved using EVENT. (fn EVENT)" t) (autoload 'dictionary-popup-matching-words "dictionary" "\ Display entries matching WORD or the current word if not given. (fn &optional WORD)" t) (autoload 'dictionary-tooltip-mode "dictionary" "\ Display tooltips for the current word. This function can be used to enable or disable the tooltip mode for the current buffer (based on ARG). If global-tooltip-mode is active it will overwrite that mode for the current buffer. (fn &optional ARG)" t) (autoload 'global-dictionary-tooltip-mode "dictionary" "\ Enable/disable `dictionary-tooltip-mode' for all buffers. Internally it provides a default for the `dictionary-tooltip-mode'. It can be overwritten for each buffer using `dictionary-tooltip-mode'. Note: (global-dictionary-tooltip-mode 0) will not disable the mode any buffer where (dictionary-tooltip-mode 1) has been called. (fn &optional ARG)" t) (autoload 'dictionary-context-menu "dictionary" "\ Populate MENU with dictionary commands at CLICK. When you add this function to `context-menu-functions', the context menu will contain an item that searches the word at mouse click. (fn MENU CLICK)") (register-definition-prefixes "dictionary" '("dictionary-" "global-dictionary-tooltip-mode" "help-word")) ;;; Generated autoloads from cedet/srecode/dictionary.el (register-definition-prefixes "srecode/dictionary" '("srecode-")) ;;; Generated autoloads from net/dictionary-connection.el (register-definition-prefixes "dictionary-connection" '("dictionary-connection-")) ;;; Generated autoloads from vc/diff.el (defvar diff-switches (purecopy "-u") "\ A string or list of strings specifying switches to be passed to diff. This variable is also used in the `vc-diff' command (and related commands) if the backend-specific diff switch variable isn't set (`vc-git-diff-switches' for git, for instance), and `vc-diff-switches' isn't set.") (custom-autoload 'diff-switches "diff" t) (defvar diff-command (purecopy "diff") "\ The command to use to run diff.") (custom-autoload 'diff-command "diff" t) (autoload 'diff "diff" "\ Find and display the differences between OLD and NEW files. When called interactively, read NEW, then OLD, using the minibuffer. The default for NEW is the current buffer's file name, and the default for OLD is a backup file for NEW, if one exists. If NO-ASYNC is non-nil, call diff synchronously. When called interactively with a prefix argument SWITCHES, prompt interactively for diff switches. Otherwise, the switches specified in the variable `diff-switches' are passed to the diff command. Non-interactively, OLD and NEW may each be a file or a buffer. (fn OLD NEW &optional SWITCHES NO-ASYNC)" t) (autoload 'diff-backup "diff" "\ Diff this file with its backup file or vice versa. Uses the latest backup, if there are several numerical backups. If this file is a backup, diff it with its original. The backup file is the first file given to `diff'. With prefix arg SWITCHES, prompt for diff switches. (fn FILE &optional SWITCHES)" t) (autoload 'diff-latest-backup-file "diff" "\ Return the latest existing backup of file FN, or nil. (fn FN)") (autoload 'diff-buffer-with-file "diff" "\ View the differences between BUFFER and its associated file. This requires the external program `diff' to be in your `exec-path'. (fn &optional BUFFER)" t) (autoload 'diff-buffers "diff" "\ Find and display the differences between OLD and NEW buffers. When called interactively, read NEW, then OLD, using the minibuffer. The default for NEW is the current buffer, and the default for OLD is the most recently selected other buffer. If NO-ASYNC is non-nil, call diff synchronously. When called interactively with a prefix argument, prompt interactively for diff switches. Otherwise, the switches specified in the variable `diff-switches' are passed to the diff command. OLD and NEW may each be a buffer or a buffer name. Also see the `diff-entire-buffers' variable. (fn OLD NEW &optional SWITCHES NO-ASYNC)" t) (register-definition-prefixes "diff" '("diff-")) ;;; Generated autoloads from vc/diff-mode.el (autoload 'diff-mode "diff-mode" "\ Major mode for viewing/editing context diffs. Supports unified and context diffs as well as (to a lesser extent) normal diffs. When the buffer is read-only, the ESC prefix is not necessary. If you edit the buffer manually, `diff-mode' will try to update the hunk headers for you on-the-fly. You can also switch between context diff and unified diff with \\[diff-context->unified], or vice versa with \\[diff-unified->context] and you can also reverse the direction of a diff with \\[diff-reverse-direction]. \\{diff-mode-map} (fn)" t) (autoload 'diff-minor-mode "diff-mode" "\ Toggle Diff minor mode. \\{diff-minor-mode-map} This is a minor mode. If called interactively, toggle the `Diff minor mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `diff-minor-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (defvar diff-add-log-use-relative-names nil "\ Use relative file names when generating ChangeLog skeletons. The files will be relative to the root directory of the VC repository. This option affects the behavior of `diff-add-log-current-defuns'.") (custom-autoload 'diff-add-log-use-relative-names "diff-mode" t) (put 'diff-add-log-use-relative-names 'safe-local-variable #'booleanp) (autoload 'diff-vc-deduce-fileset "diff-mode") (register-definition-prefixes "diff-mode" '("diff-")) ;;; Generated autoloads from net/dig.el (autoload 'dig "dig" "\ Query addresses of a DOMAIN using dig. See `dig-invoke' for an explanation for the parameters. When called interactively, DOMAIN is prompted for. If given a \\[universal-argument] prefix, also prompt for the QUERY-TYPE parameter. If given a \\[universal-argument] \\[universal-argument] prefix, also prompt for the SERVER parameter. (fn DOMAIN &optional QUERY-TYPE QUERY-CLASS QUERY-OPTION DIG-OPTION SERVER)" t) (register-definition-prefixes "dig" '("dig-")) ;;; Generated autoloads from cedet/ede/dired.el (register-definition-prefixes "ede/dired" '("ede-dired-")) ;;; Generated autoloads from dired.el (defvar dired-listing-switches (purecopy "-al") "\ Switches passed to `ls' for Dired. MUST contain the `l' option. May contain all other options that don't contradict `-l'; may contain even `F', `b', `i' and `s'. See also the variable `dired-ls-F-marks-symlinks' concerning the `F' switch. If you have files with names with embedded newline characters, adding `b' to the switches will allow Dired to handle those files better. Options that include embedded whitespace must be quoted like this: \"--option=value with spaces\"; you can use `combine-and-quote-strings' to produce the correct quoting of each option. On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp, some of the `ls' switches are not supported; see the doc string of `insert-directory' in `ls-lisp.el' for more details. For remote Dired buffers, this option supports connection-local values.") (custom-autoload 'dired-listing-switches "dired" t) (defvar-local dired-directory nil "\ The directory name or wildcard spec that this Dired directory lists. Local to each Dired buffer. May be a list, in which case the car is the directory name and the cdr is the list of files to mention. The directory name must be absolute, but need not be fully expanded.") (define-key ctl-x-map "d" 'dired) (autoload 'dired "dired" "\ \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. Optional second argument SWITCHES specifies the options to be used when invoking `insert-directory-program', usually `ls', which produces the listing of the directory files and their attributes. Interactively, a prefix argument will cause the command to prompt for SWITCHES. If DIRNAME is a string, Dired displays a list of files in DIRNAME (which may also have shell wildcards appended to select certain files). If DIRNAME is a cons, its first element is taken as the directory name and the rest as an explicit list of files to make directory entries for. In this case, SWITCHES are applied to each of the files separately, and therefore switches that control the order of the files in the produced listing have no effect. \\You can flag files for deletion with \\[dired-flag-file-deletion] and then delete them by typing \\[dired-do-flagged-delete]. Type \\[describe-mode] after entering Dired for more info. If DIRNAME is already in a Dired buffer, that buffer is used without refresh. (fn DIRNAME &optional SWITCHES)" t) (define-key ctl-x-4-map "d" 'dired-other-window) (autoload 'dired-other-window "dired" "\ \"Edit\" directory DIRNAME. Like `dired' but select in another window. (fn DIRNAME &optional SWITCHES)" t) (define-key ctl-x-5-map "d" 'dired-other-frame) (autoload 'dired-other-frame "dired" "\ \"Edit\" directory DIRNAME. Like `dired' but make a new frame. (fn DIRNAME &optional SWITCHES)" t) (define-key tab-prefix-map "d" 'dired-other-tab) (autoload 'dired-other-tab "dired" "\ \"Edit\" directory DIRNAME. Like `dired' but make a new tab. (fn DIRNAME &optional SWITCHES)" t) (autoload 'dired-noselect "dired" "\ Like `dired' but return the Dired buffer as value, do not select it. (fn DIR-OR-LIST &optional SWITCHES)") (autoload 'dired-mode "dired" "\ Mode for \"editing\" directory listings. In Dired, you are \"editing\" a list of the files in a directory and (optionally) its subdirectories, in the format of `ls -lR'. Each directory is a page: use \\[backward-page] and \\[forward-page] to move pagewise. \"Editing\" means that you can run shell commands on files, visit, compress, load or byte-compile them, change their file attributes and insert subdirectories into the same buffer. You can \"mark\" files for later commands or \"flag\" them for deletion, either file by file or all files matching certain criteria. You can move using the usual cursor motion commands.\\ The buffer is read-only. Digits are prefix arguments. Type \\[dired-flag-file-deletion] to flag a file `D' for deletion. Type \\[dired-mark] to Mark a file or subdirectory for later commands. Most commands operate on the marked files and use the current file if no files are marked. Use a numeric prefix argument to operate on the next ARG (or previous -ARG if ARG<0) files, or just `1' to operate on the current file only. Prefix arguments override marks. Mark-using commands display a list of failures afterwards. Type \\[dired-summary] to see why something went wrong. Type \\[dired-unmark] to Unmark a file or all files of an inserted subdirectory. Type \\[dired-unmark-backward] to back up one line and unmark or unflag. Type \\[dired-do-flagged-delete] to delete (eXpunge) the files flagged `D'. Type \\[dired-find-file] to Find the current line's file (or dired it in another buffer, if it is a directory). Type \\[dired-find-file-other-window] to find file or Dired directory in Other window. Type \\[dired-maybe-insert-subdir] to Insert a subdirectory in this buffer. Type \\[dired-do-rename] to Rename a file or move the marked files to another directory. Type \\[dired-do-copy] to Copy files. Type \\[dired-sort-toggle-or-edit] to toggle Sorting by name/date or change the `ls' switches. Type \\[revert-buffer] to read all currently expanded directories aGain. This retains all marks and hides subdirs again that were hidden before. Use \\`SPC' and \\`DEL' to move down and up by lines. If Dired ever gets confused, you can either type \\[revert-buffer] to read the directories again, type \\[dired-do-redisplay] to relist the file at point or the marked files or a subdirectory, or type \\[dired-build-subdir-alist] to parse the buffer again for the directory tree. See the `dired' customization group for a list of user options. This mode runs the following hooks: `dired-before-readin-hook' `dired-after-readin-hook' `dired-mode-hook' Keybindings: \\{dired-mode-map} (fn &optional DIRNAME SWITCHES)") (put 'dired-find-alternate-file 'disabled t) (autoload 'dired-jump "dired" "\ Jump to Dired buffer corresponding to current buffer. If in a buffer visiting a file, Dired that file's directory and move to that file's line in the directory listing. If the current buffer isn't visiting a file, Dired `default-directory'. If in Dired already, pop up a level and goto old directory's line. In case the proper Dired file line cannot be found, refresh the dired buffer and try again. When OTHER-WINDOW is non-nil, jump to Dired buffer in other window. When FILE-NAME is non-nil, jump to its line in Dired. Interactively with prefix argument, read FILE-NAME. (fn &optional OTHER-WINDOW FILE-NAME)" t) (autoload 'dired-jump-other-window "dired" "\ Like \\[dired-jump] (`dired-jump') but in other window. (fn &optional FILE-NAME)" t) (register-definition-prefixes "dired" '("dired-")) ;;; Generated autoloads from dired-aux.el (register-definition-prefixes "dired-aux" '("dired-" "shell-command-guess")) ;;; Generated autoloads from dired-x.el (register-definition-prefixes "dired-x" '("dired-" "virtual-dired")) ;;; Generated autoloads from dirtrack.el (autoload 'dirtrack-mode "dirtrack" "\ Toggle directory tracking in shell buffers (Dirtrack mode). This method requires that your shell prompt contain the current working directory at all times, and that you set the variable `dirtrack-list' to match the prompt. This is an alternative to `shell-dirtrack-mode', which works by tracking `cd' and similar commands which change the shell working directory. This is a minor mode. If called interactively, toggle the `Dirtrack mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `dirtrack-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'dirtrack "dirtrack" "\ Determine the current directory from the process output for a prompt. This filter function is used by `dirtrack-mode'. It looks for the prompt specified by `dirtrack-list', and calls `shell-process-cd' if the directory seems to have changed away from `default-directory'. (fn INPUT)") (register-definition-prefixes "dirtrack" '("dirtrack-")) ;;; Generated autoloads from emacs-lisp/disass.el (autoload 'disassemble "disass" "\ Print disassembled code for OBJECT in (optional) BUFFER. OBJECT can be a symbol defined as a function, or a function itself (a lambda expression or a byte-code-function object). If OBJECT is not already compiled, we compile it, but do not redefine OBJECT if it is a symbol. (fn OBJECT &optional BUFFER INDENT INTERACTIVE-P)" t) (register-definition-prefixes "disass" '("disassemble-" "re-disassemble")) ;;; Generated autoloads from disp-table.el (autoload 'make-display-table "disp-table" "\ Return a new, empty display table.") (autoload 'display-table-slot "disp-table" "\ Return the value of the extra slot in DISPLAY-TABLE named SLOT. SLOT may be a number from 0 to 5 inclusive, or a slot name (symbol). Valid symbols are `truncation', `wrap', `escape', `control', `selective-display', and `vertical-border'. (fn DISPLAY-TABLE SLOT)") (autoload 'set-display-table-slot "disp-table" "\ Set the value of the extra slot in DISPLAY-TABLE named SLOT to VALUE. SLOT may be a number from 0 to 5 inclusive, or a name (symbol). Valid symbols are `truncation', `wrap', `escape', `control', `selective-display', and `vertical-border'. (fn DISPLAY-TABLE SLOT VALUE)") (autoload 'describe-display-table "disp-table" "\ Describe the display table DT in a help buffer. (fn DT)") (autoload 'describe-current-display-table "disp-table" "\ Describe the display table in use in the selected window and buffer." t) (autoload 'standard-display-8bit "disp-table" "\ Display characters representing raw bytes in the range L to H literally. On a terminal display, each character in the range is displayed by sending the corresponding byte directly to the terminal. On a graphic display, each character in the range is displayed using the default font by a glyph whose code is the corresponding byte. Note that ASCII printable characters (SPC to TILDA) are displayed in the default way after this call. (fn L H)") (autoload 'standard-display-default "disp-table" "\ Display characters in the range L to H using the default notation. (fn L H)") (autoload 'standard-display-ascii "disp-table" "\ Display character C using printable string S. (fn C S)") (autoload 'standard-display-g1 "disp-table" "\ Display character C as character SC in the g1 character set. This function assumes that your terminal uses the SO/SI characters; it is meaningless for a graphical frame. (fn C SC)") (autoload 'standard-display-graphic "disp-table" "\ Display character C as character GC in graphics character set. This function assumes VT100-compatible escapes; it is meaningless for a graphical frame. (fn C GC)") (autoload 'standard-display-underline "disp-table" "\ Display character C as character UC plus underlining. (fn C UC)") (autoload 'create-glyph "disp-table" "\ Allocate a glyph code to display by sending STRING to the terminal. (fn STRING)") (autoload 'make-glyph-code "disp-table" "\ Return a glyph code representing char CHAR with face FACE. (fn CHAR &optional FACE)") (autoload 'glyph-char "disp-table" "\ Return the character of glyph code GLYPH. (fn GLYPH)") (autoload 'glyph-face "disp-table" "\ Return the face of glyph code GLYPH, or nil if glyph has default face. (fn GLYPH)") (autoload 'standard-display-european "disp-table" "\ Semi-obsolete way to toggle display of ISO 8859 European characters. This function is semi-obsolete; you probably don't need it, or else you probably should use `set-language-environment' or `set-locale-environment'. This function enables European character display if ARG is positive, disables it if negative. Otherwise, it toggles European character display. When this mode is enabled, characters in the range of 160 to 255 display not as octal escapes, but as accented characters. Codes 146 and 160 display as apostrophe and space, even though they are not the ASCII codes for apostrophe and space. Enabling European character display with this command noninteractively from Lisp code also selects Latin-1 as the language environment. This provides increased compatibility for users who call this function in `.emacs'. (fn ARG)") (autoload 'standard-display-by-replacement-char "disp-table" "\ Produce code to display characters between FROM and TO using REPL. This function produces a buffer with code to set up `standard-display-table' such that characters that cannot be displayed by the terminal, and don't already have their display set up in `standard-display-table', will be represented by a replacement character. You can evaluate the produced code to use the setup for the current Emacs session, or copy the code into your init file, to make Emacs use it for subsequent sessions. Interactively, the produced code arranges for any character in the range [#x100..#x10FFFF] that the terminal cannot display to be represented by the #xFFFD Unicode replacement character. When called from Lisp, FROM and TO define the range of characters for which to produce the setup code for `standard-display-table'. If they are omitted, they default to #x100 and #x10FFFF respectively, covering the entire non-ASCII range of Unicode characters. REPL is the replacement character to use. If it's omitted, it defaults to #xFFFD, the Unicode replacement character, usually displayed as a black diamond with a question mark inside. The produced code sets up `standard-display-table' to show REPL with the `homoglyph' face, making the replacements stand out on display. This command is most useful with text-mode terminals, such as the Linux console, for which Emacs has a reliable way of determining which characters can be displayed and which cannot. (fn &optional REPL FROM TO)" t) (register-definition-prefixes "disp-table" '("display-table-print-array")) ;;; Generated autoloads from display-fill-column-indicator.el (autoload 'display-fill-column-indicator-mode "display-fill-column-indicator" "\ Toggle display of `fill-column' indicator. This uses `display-fill-column-indicator' internally. To change the position of the column displayed by default customize `display-fill-column-indicator-column'. You can change the character for the indicator setting `display-fill-column-indicator-character'. The globalized version is `global-display-fill-column-indicator-mode', which see. This minor mode assumes the buffer uses a fixed-pitch font; if you use variable-pitch fonts, the indicators on different lines might not appear aligned. See Info node `Displaying Boundaries' for details. This is a minor mode. If called interactively, toggle the `Display-Fill-Column-Indicator mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `display-fill-column-indicator-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (put 'global-display-fill-column-indicator-mode 'globalized-minor-mode t) (defvar global-display-fill-column-indicator-mode nil "\ Non-nil if Global Display-Fill-Column-Indicator mode is enabled. See the `global-display-fill-column-indicator-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-display-fill-column-indicator-mode'.") (custom-autoload 'global-display-fill-column-indicator-mode "display-fill-column-indicator" nil) (autoload 'global-display-fill-column-indicator-mode "display-fill-column-indicator" "\ Toggle Display-Fill-Column-Indicator mode in all buffers. With prefix ARG, enable Global Display-Fill-Column-Indicator mode if ARG is positive; otherwise, disable it. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. Display-Fill-Column-Indicator mode is enabled in all buffers where `display-fill-column-indicator--turn-on' would do it. See `display-fill-column-indicator-mode' for more information on Display-Fill-Column-Indicator mode. `global-display-fill-column-indicator-modes' is used to control which modes this minor mode is used in. (fn &optional ARG)" t) (defvar global-display-fill-column-indicator-modes '((not special-mode) t) "\ Which major modes `display-fill-column-indicator-mode' is switched on in. This variable can be either t (all major modes), nil (no major modes), or a list of modes and (not modes) to switch use this minor mode or not. For instance (c-mode (not message-mode mail-mode) text-mode) means \"use this mode in all modes derived from `c-mode', don't use in modes derived from `message-mode' or `mail-mode', but do use in other modes derived from `text-mode'\". An element with value t means \"use\" and nil means \"don't use\". There's an implicit nil at the end of the list.") (custom-autoload 'global-display-fill-column-indicator-modes "display-fill-column-indicator" t) (register-definition-prefixes "display-fill-column-indicator" '("display-fill-column-indicator--turn-on")) ;;; Generated autoloads from display-line-numbers.el (autoload 'display-line-numbers-mode "display-line-numbers" "\ Toggle display of line numbers in the buffer. This uses `display-line-numbers' internally. To change the type of line numbers displayed by default, customize `display-line-numbers-type'. To change the type while the mode is on, set `display-line-numbers' directly. This is a minor mode. If called interactively, toggle the `Display-Line-Numbers mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `display-line-numbers-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (put 'global-display-line-numbers-mode 'globalized-minor-mode t) (defvar global-display-line-numbers-mode nil "\ Non-nil if Global Display-Line-Numbers mode is enabled. See the `global-display-line-numbers-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-display-line-numbers-mode'.") (custom-autoload 'global-display-line-numbers-mode "display-line-numbers" nil) (autoload 'global-display-line-numbers-mode "display-line-numbers" "\ Toggle Display-Line-Numbers mode in all buffers. With prefix ARG, enable Global Display-Line-Numbers mode if ARG is positive; otherwise, disable it. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. Display-Line-Numbers mode is enabled in all buffers where `display-line-numbers--turn-on' would do it. See `display-line-numbers-mode' for more information on Display-Line-Numbers mode. (fn &optional ARG)" t) (defvar header-line-indent "" "\ String of spaces to indent the beginning of header-line due to line numbers. This is intended to be used in `header-line-format', and requires the `header-line-indent-mode' to be turned on, in order for the width of this string to be kept updated when the line-number width changes on display. An example of a `header-line-format' that uses this variable might look like this: (\"\" header-line-indent THE-REST...) where THE-REST is the format string which produces the actual text of the header-line. Also see `header-line-indent-width'.") (defvar header-line-indent-width 0 "\ The width of the current line number display in the window. This is measured in units of the frame's canonical columns. This is updated when `header-line-indent-mode' is switched on, and is intended for use in `:align-to' display specifications that are part of `header-line-format', when portions of header-line text should be aligned to respective parts of buffer text. Also see `header-line-indent'.") (autoload 'header-line-indent-mode "display-line-numbers" "\ Minor mode to help with alignment of header line when line numbers are shown. This minor mode should be turned on in buffers which display header-line that needs to be aligned with buffer text when `display-line-numbers-mode' is turned on in the buffer. Buffers that have this switched on should have a `header-line-format' that uses the `header-line-indent' or the `header-line-indent-width' variables, which this mode will keep up-to-date with the current display of line numbers. For example, a `header-line-format' that looks like this: (\"\" header-line-indent THE-REST...) will make sure the text produced by THE-REST (which should be a header-line format string) is always indented to be aligned on display with the first column of buffer text. The `header-line-indent-width' variable is also kept updated, and can be used, for instance, in `:align-to' specs as part of `header-line-format', like this: (space :align-to (+ header-line-indent-width 10)) See also `line-number-display-width'. This is a minor mode. If called interactively, toggle the `Header-Line-Indent mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `header-line-indent-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "display-line-numbers" '("display-line-numbers-" "header-line-indent--")) ;;; Generated autoloads from play/dissociate.el (autoload 'dissociated-press "dissociate" "\ Dissociate the text of the current buffer. Output goes in buffer named *Dissociation*, which is redisplayed each time text is added to it. Every so often the user must say whether to continue. If ARG is positive, require ARG chars of continuity. If ARG is negative, require -ARG words of continuity. Default is 2. (fn &optional ARG)" t) ;;; Generated autoloads from dnd.el (defvar dnd-protocol-alist `((,(purecopy "^file:///") . dnd-open-local-file) (,(purecopy "^file://[^/]") . dnd-open-file) (,(purecopy "^file:/[^/]") . dnd-open-local-file) (,(purecopy "^file:[^/]") . dnd-open-local-file) (,(purecopy "^\\(https?\\|ftp\\|nfs\\)://") . dnd-open-file)) "\ The functions to call for different protocols when a drop is made. This variable is used by `dnd-handle-multiple-urls'. The list contains of (REGEXP . FUNCTION) pairs. The functions shall take two arguments, URL, which is the URL dropped and ACTION which is the action to be performed for the drop (move, copy, link, private or ask). If a function's `dnd-multiple-handler' property is set, it is provided a list of each URI dropped instead. If no match is found here, and the value of `browse-url-browser-function' is a pair of (REGEXP . FUNCTION), those regexps are tried for a match. If no match is found, the URL is inserted as text by calling `dnd-insert-text'. The function shall return the action done (move, copy, link or private) if some action was made, or nil if the URL is ignored.") (custom-autoload 'dnd-protocol-alist "dnd" t) (register-definition-prefixes "dnd" '("dnd-")) ;;; Generated autoloads from net/dns.el (autoload 'dns-query "dns" "\ Query a DNS server for NAME of TYPE. If FULL, return the entire record returned. If REVERSE, look up an IP address. (fn NAME &optional TYPE FULL REVERSE)") (register-definition-prefixes "dns" '("dns-")) ;;; Generated autoloads from textmodes/dns-mode.el (autoload 'dns-mode "dns-mode" "\ Major mode for viewing and editing DNS master files. This mode is derived from text mode. It adds syntax highlighting, and some commands for handling DNS master files. Its keymap inherits from `text-mode' and it has the same variables for customizing indentation. It has its own abbrev table and its own syntax table. Turning on DNS mode runs `dns-mode-hook'. (fn)" t) (defalias 'zone-mode 'dns-mode) (autoload 'dns-mode-soa-increment-serial "dns-mode" "\ Locate SOA record and increment the serial field." t) (register-definition-prefixes "dns-mode" '("dns-mode-")) ;;; Generated autoloads from cedet/semantic/doc.el (register-definition-prefixes "semantic/doc" '("semantic-doc")) ;;; Generated autoloads from doc-view.el (autoload 'doc-view-mode-p "doc-view" "\ Return non-nil if document type TYPE is available for `doc-view'. Document types are symbols like `dvi', `ps', `pdf', `epub', `cbz', `fb2', `xps', `oxps', or`odf' (any OpenDocument format). (fn TYPE)") (autoload 'doc-view-mode "doc-view" "\ Major mode in DocView buffers. DocView Mode is an Emacs document viewer. It displays PDF, PS and DVI files (as PNG or SVG images) in Emacs buffers. You can use \\\\[doc-view-toggle-display] to toggle between displaying the document or editing it as text. \\{doc-view-mode-map}" t) (autoload 'doc-view-mode-maybe "doc-view" "\ Switch to `doc-view-mode' if possible. If the required external tools are not available, then fallback to the next best mode.") (autoload 'doc-view-minor-mode "doc-view" "\ Toggle displaying buffer via Doc View (Doc View minor mode). See the command `doc-view-mode' for more information on this mode. This is a minor mode. If called interactively, toggle the `Doc-View minor mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `doc-view-minor-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'doc-view-bookmark-jump "doc-view" "\ (fn BMK)") (register-definition-prefixes "doc-view" '("doc-view-")) ;;; Generated autoloads from progmodes/dockerfile-ts-mode.el (autoload 'dockerfile-ts-mode "dockerfile-ts-mode" "\ Major mode for editing Dockerfiles, powered by tree-sitter. (fn)" t) (register-definition-prefixes "dockerfile-ts-mode" '("dockerfile-ts-mode--")) ;;; Generated autoloads from play/doctor.el (autoload 'doctor "doctor" "\ Switch to *doctor* buffer and start giving psychotherapy." t) (register-definition-prefixes "doctor" '("doc")) ;;; Generated autoloads from cedet/srecode/document.el (register-definition-prefixes "srecode/document" '("srecode-document-")) ;;; Generated autoloads from dom.el (register-definition-prefixes "dom" '("dom-")) ;;; Generated autoloads from dos-fns.el (register-definition-prefixes "dos-fns" '("dos")) ;;; Generated autoloads from dos-vars.el (register-definition-prefixes "dos-vars" '("dos-codepage-setup-hook" "msdos-shells")) ;;; Generated autoloads from dos-w32.el (register-definition-prefixes "dos-w32" '("file-name-buffer-file-type-alist" "find-" "w32-")) ;;; Generated autoloads from double.el (autoload 'double-mode "double" "\ Toggle special insertion on double keypresses (Double mode). When Double mode is enabled, some keys will insert different strings when pressed twice. See `double-map' for details. This is a minor mode. If called interactively, toggle the `Double mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `double-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "double" '("double-")) ;;; Generated autoloads from play/dunnet.el (autoload 'dunnet "dunnet" "\ Switch to *dungeon* buffer and start game." t) (register-definition-prefixes "dunnet" '("dun" "obj-special")) ;;; Generated autoloads from dynamic-setting.el (register-definition-prefixes "dynamic-setting" '("dynamic-setting-handle-config-changed-event" "font-setting-change-default-font")) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (autoload 'define-minor-mode "easy-mmode" "\ Define a new minor mode MODE. This defines the toggle command MODE and (by default) a control variable MODE (you can override this with the :variable keyword, see below). DOC is the documentation for the mode toggle command. The defined mode command takes one optional (prefix) argument. Interactively with no prefix argument, it toggles the mode. A prefix argument enables the mode if the argument is positive, and disables it otherwise. When called from Lisp, the mode command toggles the mode if the argument is `toggle', disables the mode if the argument is a non-positive integer, and enables the mode otherwise (including if the argument is omitted or nil or a positive integer). If DOC is nil, give the mode command a basic doc-string documenting what its argument does. If the word \"ARG\" does not appear in DOC, a paragraph is added to DOC explaining usage of the mode argument. BODY contains code to execute each time the mode is enabled or disabled. It is executed after toggling the mode, and before running MODE-hook. Before the actual body code, you can write keyword arguments, i.e. alternating keywords and values. If you provide BODY, then you must provide at least one keyword argument (e.g. `:lighter nil`). The following special keywords are supported (other keywords are passed to `defcustom' if the minor mode is global): :global GLOBAL If non-nil specifies that the minor mode is not meant to be buffer-local, so don't make the variable MODE buffer-local. By default, the mode is buffer-local. :init-value VAL the initial value of the mode's variable. Note that the minor mode function won't be called by setting this option, so the value *reflects* the minor mode's natural initial state, rather than *setting* it. In the vast majority of cases it should be nil. Not used if you also specify :variable. :lighter SPEC Text displayed in the mode line when the mode is on. :keymap MAP Keymap bound to the mode keymap. Defaults to `MODE-map'. If non-nil, it should be an unquoted variable name (whose value is a keymap), or an expression that returns either a keymap or a list of (KEY . BINDING) pairs where KEY and BINDING are suitable for `define-key'. If you supply a KEYMAP argument that is not a symbol, this macro defines the variable MODE-map and gives it the value that KEYMAP specifies. :interactive VAL Whether this mode should be a command or not. The default is to make it one; use nil to avoid that. If VAL is a list, it's interpreted as a list of major modes this minor mode is useful in. :variable PLACE The location to use instead of the variable MODE to store the state of the mode. This can be simply a different named variable, or a generalized variable. PLACE can also be of the form (GET . SET), where GET is an expression that returns the current state, and SET is a function that takes one argument, the new state, which should be assigned to PLACE. If you specify a :variable, this function does not define a MODE variable (nor any of the terms used in :variable). :after-hook A single Lisp form which is evaluated after the mode hooks have been run. It should not be quoted. For example, you could write (define-minor-mode foo-mode \"If enabled, foo on you!\" :lighter \" Foo\" :require \\='foo :global t :group \\='hassle :version \"27.5\" ...BODY CODE...) For backward compatibility with the Emacs<21 calling convention, the keywords can also be preceded by the obsolete triplet INIT-VALUE LIGHTER KEYMAP. (fn MODE DOC [KEYWORD VAL ... &rest BODY])" nil t) (function-put 'define-minor-mode 'doc-string-elt 2) (function-put 'define-minor-mode 'lisp-indent-function 'defun) (defalias 'define-global-minor-mode #'define-globalized-minor-mode) (autoload 'define-globalized-minor-mode "easy-mmode" "\ Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE. TURN-ON is a function that will be called with no args in every buffer and that should try to turn MODE on if applicable for that buffer. Each of KEY VALUE is a pair of CL-style keyword arguments. The :predicate key specifies in which major modes should the globalized minor mode be switched on. The value should be t (meaning switch on the minor mode in all major modes), nil (meaning don't switch on in any major mode), a list of modes (meaning switch on only in those modes and their descendants), or a list (not MODES...), meaning switch on in any major mode except MODES. The value can also mix all of these forms, see the info node `Defining Minor Modes' for details. The :predicate key causes the macro to create a user option named the same as MODE, but ending with \"-modes\" instead of \"-mode\". That user option can then be used to customize in which modes this globalized minor mode will be switched on. As the minor mode defined by this function is always global, any :global keyword is ignored. Other keywords have the same meaning as in `define-minor-mode', which see. In particular, :group specifies the custom group. The most useful keywords are those that are passed on to the `defcustom'. It normally makes no sense to pass the :lighter or :keymap keywords to `define-globalized-minor-mode', since these are usually passed to the buffer-local version of the minor mode. BODY contains code to execute each time the mode is enabled or disabled. It is executed after toggling the mode, and before running GLOBAL-MODE-hook. If MODE's set-up depends on the major mode in effect when it was enabled, then disabling and reenabling MODE should make MODE work correctly with the current major mode. This is important to prevent problems with derived modes, that is, major modes that call another major mode in their body. When a major mode is initialized, MODE is actually turned on just after running the major mode's hook. However, MODE is not turned on if the hook has explicitly disabled it. (fn GLOBAL-MODE MODE TURN-ON [KEY VALUE]... BODY...)" nil t) (function-put 'define-globalized-minor-mode 'doc-string-elt 2) (function-put 'define-globalized-minor-mode 'lisp-indent-function 'defun) (autoload 'easy-mmode-define-keymap "easy-mmode" "\ Return a keymap built from bindings BS. BS must be a list of (KEY . BINDING) where KEY and BINDINGS are suitable for `define-key'. Optional NAME is passed to `make-sparse-keymap'. Optional map M can be used to modify an existing map. ARGS is a list of additional keyword arguments. Valid keywords and arguments are: :name Name of the keymap; overrides NAME argument. :dense Non-nil for a dense keymap. :inherit Parent keymap. :group Ignored. :suppress Non-nil to call `suppress-keymap' on keymap, `nodigits' to suppress digits as prefix arguments. (fn BS &optional NAME M ARGS)") (make-obsolete 'easy-mmode-define-keymap 'define-keymap "29.1") (autoload 'easy-mmode-defmap "easy-mmode" "\ Define a constant M whose value is the result of `easy-mmode-define-keymap'. The M, BS, and ARGS arguments are as per that function. DOC is the constant's documentation. This macro is deprecated; use `defvar-keymap' instead. (fn M BS DOC &rest ARGS)" nil t) (function-put 'easy-mmode-defmap 'doc-string-elt 3) (function-put 'easy-mmode-defmap 'lisp-indent-function 1) (make-obsolete 'easy-mmode-defmap 'defvar-keymap "29.1") (autoload 'easy-mmode-defsyntax "easy-mmode" "\ Define variable ST as a syntax-table. CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). (fn ST CSS DOC &rest ARGS)" nil t) (function-put 'easy-mmode-defsyntax 'doc-string-elt 3) (function-put 'easy-mmode-defsyntax 'lisp-indent-function 1) (define-obsolete-function-alias 'easy-mmode-define-minor-mode #'define-minor-mode "30.1") (define-obsolete-function-alias 'easy-mmode-define-global-mode #'define-globalized-minor-mode "30.1") (register-definition-prefixes "easy-mmode" '("easy-mmode-")) ;;; Generated autoloads from progmodes/ebnf-abn.el (register-definition-prefixes "ebnf-abn" '("ebnf-abn-")) ;;; Generated autoloads from progmodes/ebnf-bnf.el (register-definition-prefixes "ebnf-bnf" '("ebnf-")) ;;; Generated autoloads from progmodes/ebnf-dtd.el (register-definition-prefixes "ebnf-dtd" '("ebnf-dtd-")) ;;; Generated autoloads from progmodes/ebnf-ebx.el (register-definition-prefixes "ebnf-ebx" '("ebnf-ebx-")) ;;; Generated autoloads from progmodes/ebnf-iso.el (register-definition-prefixes "ebnf-iso" '("ebnf-")) ;;; Generated autoloads from progmodes/ebnf-otz.el (register-definition-prefixes "ebnf-otz" '("ebnf-")) ;;; Generated autoloads from progmodes/ebnf-yac.el (register-definition-prefixes "ebnf-yac" '("ebnf-yac-")) ;;; Generated autoloads from progmodes/ebnf2ps.el (autoload 'ebnf-customize "ebnf2ps" "\ Customization for ebnf group." t) (autoload 'ebnf-print-directory "ebnf2ps" "\ Generate and print a PostScript syntactic chart image of DIRECTORY. If DIRECTORY is nil, it's used `default-directory'. The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are processed. See also `ebnf-print-buffer'. (fn &optional DIRECTORY)" t) (autoload 'ebnf-print-file "ebnf2ps" "\ Generate and print a PostScript syntactic chart image of the file FILE. If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't killed after process termination. See also `ebnf-print-buffer'. (fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t) (autoload 'ebnf-print-buffer "ebnf2ps" "\ Generate and print a PostScript syntactic chart image of the buffer. When called with a numeric prefix argument (\\[universal-argument]), prompts the user for the name of a file to save the PostScript image in, instead of sending it to the printer. More specifically, the FILENAME argument is treated as follows: if it is nil, send the image to the printer. If FILENAME is a string, save the PostScript image in a file with that name. If FILENAME is a number, prompt the user for the name of the file to save in. (fn &optional FILENAME)" t) (autoload 'ebnf-print-region "ebnf2ps" "\ Generate and print a PostScript syntactic chart image of the region. Like `ebnf-print-buffer', but prints just the current region. (fn FROM TO &optional FILENAME)" t) (autoload 'ebnf-spool-directory "ebnf2ps" "\ Generate and spool a PostScript syntactic chart image of DIRECTORY. If DIRECTORY is nil, it's used `default-directory'. The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are processed. See also `ebnf-spool-buffer'. (fn &optional DIRECTORY)" t) (autoload 'ebnf-spool-file "ebnf2ps" "\ Generate and spool a PostScript syntactic chart image of the file FILE. If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't killed after process termination. See also `ebnf-spool-buffer'. (fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t) (autoload 'ebnf-spool-buffer "ebnf2ps" "\ Generate and spool a PostScript syntactic chart image of the buffer. Like `ebnf-print-buffer' except that the PostScript image is saved in a local buffer to be sent to the printer later. Use the command `ebnf-despool' to send the spooled images to the printer." t) (autoload 'ebnf-spool-region "ebnf2ps" "\ Generate a PostScript syntactic chart image of the region and spool locally. Like `ebnf-spool-buffer', but spools just the current region. Use the command `ebnf-despool' to send the spooled images to the printer. (fn FROM TO)" t) (autoload 'ebnf-eps-directory "ebnf2ps" "\ Generate EPS files from EBNF files in DIRECTORY. If DIRECTORY is nil, it's used `default-directory'. The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are processed. See also `ebnf-eps-buffer'. (fn &optional DIRECTORY)" t) (autoload 'ebnf-eps-file "ebnf2ps" "\ Generate an EPS file from EBNF file FILE. If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't killed after EPS generation. See also `ebnf-eps-buffer'. (fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t) (autoload 'ebnf-eps-buffer "ebnf2ps" "\ Generate a PostScript syntactic chart image of the buffer in an EPS file. Generate an EPS file for each production in the buffer. The EPS file name has the following form: .eps is given by variable `ebnf-eps-prefix'. The default value is \"ebnf--\". is the production name. Some characters in the production file name are replaced to produce a valid file name. For example, the production name \"A/B + C\" is modified to produce \"A_B_+_C\", and the EPS file name used in this case will be \"ebnf--A_B_+_C.eps\". WARNING: This function does *NOT* ask any confirmation to override existing files." t) (autoload 'ebnf-eps-region "ebnf2ps" "\ Generate a PostScript syntactic chart image of the region in an EPS file. Generate an EPS file for each production in the region. The EPS file name has the following form: .eps is given by variable `ebnf-eps-prefix'. The default value is \"ebnf--\". is the production name. Some characters in the production file name are replaced to produce a valid file name. For example, the production name \"A/B + C\" is modified to produce \"A_B_+_C\", and the EPS file name used in this case will be \"ebnf--A_B_+_C.eps\". WARNING: This function does *NOT* ask any confirmation to override existing files. (fn FROM TO)" t) (defalias 'ebnf-despool #'ps-despool) (autoload 'ebnf-syntax-directory "ebnf2ps" "\ Do a syntactic analysis of the files in DIRECTORY. If DIRECTORY is nil, use `default-directory'. Only the files in DIRECTORY that match `ebnf-file-suffix-regexp' (which see) are processed. See also `ebnf-syntax-buffer'. (fn &optional DIRECTORY)" t) (autoload 'ebnf-syntax-file "ebnf2ps" "\ Do a syntactic analysis of the named FILE. If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't killed after syntax checking. See also `ebnf-syntax-buffer'. (fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t) (autoload 'ebnf-syntax-buffer "ebnf2ps" "\ Do a syntactic analysis of the current buffer." t) (autoload 'ebnf-syntax-region "ebnf2ps" "\ Do a syntactic analysis of a region. (fn FROM TO)" t) (autoload 'ebnf-setup "ebnf2ps" "\ Return the current ebnf2ps setup.") (autoload 'ebnf-find-style "ebnf2ps" "\ Return style definition if NAME is already defined; otherwise, return nil. See `ebnf-style-database' documentation. (fn NAME)" t) (autoload 'ebnf-insert-style "ebnf2ps" "\ Insert a new style NAME with inheritance INHERITS and values VALUES. See `ebnf-style-database' documentation. (fn NAME INHERITS &rest VALUES)" t) (autoload 'ebnf-delete-style "ebnf2ps" "\ Delete style NAME. See `ebnf-style-database' documentation. (fn NAME)" t) (autoload 'ebnf-merge-style "ebnf2ps" "\ Merge values of style NAME with style VALUES. See `ebnf-style-database' documentation. (fn NAME &rest VALUES)" t) (autoload 'ebnf-apply-style "ebnf2ps" "\ Set STYLE as the current style. Returns the old style symbol. See `ebnf-style-database' documentation. (fn STYLE)" t) (autoload 'ebnf-reset-style "ebnf2ps" "\ Reset current style. Returns the old style symbol. See `ebnf-style-database' documentation. (fn &optional STYLE)" t) (autoload 'ebnf-push-style "ebnf2ps" "\ Push the current style onto a stack and set STYLE as the current style. Returns the old style symbol. See also `ebnf-pop-style'. See `ebnf-style-database' documentation. (fn &optional STYLE)" t) (autoload 'ebnf-pop-style "ebnf2ps" "\ Pop a style from the stack of pushed styles and set it as the current style. Returns the old style symbol. See also `ebnf-push-style'. See `ebnf-style-database' documentation." t) (register-definition-prefixes "ebnf2ps" '("ebnf-")) ;;; Generated autoloads from progmodes/ebrowse.el (autoload 'ebrowse-tree-mode "ebrowse" "\ Major mode for Ebrowse class tree buffers. Each line corresponds to a class in a class tree. Letters do not insert themselves, they are commands. File operations in the tree buffer work on class tree data structures. E.g. \\[save-buffer] writes the tree to the file it was loaded from. Tree mode key bindings: \\{ebrowse-tree-mode-map} (fn)" t) (autoload 'ebrowse-electric-choose-tree "ebrowse" "\ Return a buffer containing a tree or nil if no tree found or canceled." t) (autoload 'ebrowse-member-mode "ebrowse" "\ Major mode for Ebrowse member buffers. (fn)" t) (autoload 'ebrowse-tags-view-declaration "ebrowse" "\ View declaration of member at point." t) (autoload 'ebrowse-tags-find-declaration "ebrowse" "\ Find declaration of member at point." t) (autoload 'ebrowse-tags-view-definition "ebrowse" "\ View definition of member at point." t) (autoload 'ebrowse-tags-find-definition "ebrowse" "\ Find definition of member at point." t) (autoload 'ebrowse-tags-find-declaration-other-window "ebrowse" "\ Find declaration of member at point in other window." t) (autoload 'ebrowse-tags-view-definition-other-window "ebrowse" "\ View definition of member at point in other window." t) (autoload 'ebrowse-tags-find-definition-other-window "ebrowse" "\ Find definition of member at point in other window." t) (autoload 'ebrowse-tags-find-declaration-other-frame "ebrowse" "\ Find definition of member at point in other frame." t) (autoload 'ebrowse-tags-view-definition-other-frame "ebrowse" "\ View definition of member at point in other frame." t) (autoload 'ebrowse-tags-find-definition-other-frame "ebrowse" "\ Find definition of member at point in other frame." t) (autoload 'ebrowse-tags-complete-symbol "ebrowse" "\ Perform completion on the C++ symbol preceding point. A second call of this function without changing point inserts the next match. A call with prefix PREFIX reads the symbol to insert from the minibuffer with completion. (fn PREFIX)" '("P")) (autoload 'ebrowse-tags-loop-continue "ebrowse" "\ Repeat last operation on files in tree. FIRST-TIME non-nil means this is not a repetition, but the first time. TREE-BUFFER if indirectly specifies which files to loop over. (fn &optional FIRST-TIME TREE-BUFFER)" t) (autoload 'ebrowse-tags-search "ebrowse" "\ Search for REGEXP in all files in a tree. If marked classes exist, process marked classes, only. If regular expression is nil, repeat last search. (fn REGEXP)" t) (autoload 'ebrowse-tags-query-replace "ebrowse" "\ Query replace FROM with TO in all files of a class tree. With prefix arg, process files of marked classes only. As each match is found, the user must type a character saying what to do with it. Type SPC or `y' to replace the match, DEL or `n' to skip and go to the next match. For more directions, type \\[help-command] at that time. (fn FROM TO)" t) (autoload 'ebrowse-tags-search-member-use "ebrowse" "\ Search for call sites of a member. If FIX-NAME is specified, search uses of that member. Otherwise, read a member name from the minibuffer. Searches in all files mentioned in a class tree for something that looks like a function call to the member. (fn &optional FIX-NAME)" t) (autoload 'ebrowse-back-in-position-stack "ebrowse" "\ Move backward in the position stack. Prefix arg ARG says how much. (fn ARG)" t) (autoload 'ebrowse-forward-in-position-stack "ebrowse" "\ Move forward in the position stack. Prefix arg ARG says how much. (fn ARG)" t) (autoload 'ebrowse-electric-position-menu "ebrowse" "\ List positions in the position stack in an electric buffer." t) (autoload 'ebrowse-save-tree "ebrowse" "\ Save current tree in same file it was loaded from." t) (autoload 'ebrowse-save-tree-as "ebrowse" "\ Write the current tree data structure to a file. Read the file name from the minibuffer if interactive. Otherwise, FILE-NAME specifies the file to save the tree in. (fn &optional FILE-NAME)" t) (autoload 'ebrowse-statistics "ebrowse" "\ Display statistics for a class tree." t) (register-definition-prefixes "ebrowse" '("ebrowse-" "electric-buffer-menu-mode-hook")) ;;; Generated autoloads from ebuff-menu.el (autoload 'electric-buffer-list "ebuff-menu" "\ Pop up the Buffer Menu in an \"electric\" window. If you type SPC or RET (`Electric-buffer-menu-select'), that selects the buffer at point and quits the \"electric\" window. Otherwise, you can move around in the Buffer Menu, marking buffers to be selected, saved or deleted; these other commands are much like those of `Buffer-menu-mode'. Run hooks in `electric-buffer-menu-mode-hook' on entry. \\ \\[keyboard-quit] or \\[Electric-buffer-menu-quit] -- exit buffer menu, returning to previous window and buffer configuration. If the very first character typed is a space, it also has this effect. \\[Electric-buffer-menu-select] -- select buffer of line point is on. Also show buffers marked with m in other windows, deletes buffers marked with \"D\", and saves those marked with \"S\". \\[Buffer-menu-mark] -- mark buffer to be displayed. \\[Buffer-menu-not-modified] -- clear modified-flag on that buffer. \\[Buffer-menu-save] -- mark that buffer to be saved. \\[Buffer-menu-delete] or \\[Buffer-menu-delete-backwards] -- mark that buffer to be deleted. \\[Buffer-menu-unmark] -- remove all kinds of marks from current line. \\[Buffer-menu-unmark-all] -- remove all kinds of marks from all lines. \\[Electric-buffer-menu-mode-view-buffer] -- view buffer, returning when done. \\[Buffer-menu-backup-unmark] -- back up a line and remove marks. (fn ARG)" t) (register-definition-prefixes "ebuff-menu" '("Electric-buffer-menu-" "electric-buffer-")) ;;; Generated autoloads from echistory.el (autoload 'Electric-command-history-redo-expression "echistory" "\ Edit current history line in minibuffer and execute result. With prefix arg NOCONFIRM, execute current line as-is without editing. (fn &optional NOCONFIRM)" t) (register-definition-prefixes "echistory" '("Electric-history-" "electric-")) ;;; Generated autoloads from ecomplete.el (autoload 'ecomplete-setup "ecomplete" "\ Read the .ecompleterc file.") (register-definition-prefixes "ecomplete" '("ecomplete-")) ;;; Generated autoloads from cedet/ede.el (push (purecopy '(ede 2 0)) package--builtin-versions) (defvar global-ede-mode nil "\ Non-nil if Global Ede mode is enabled. See the `global-ede-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-ede-mode'.") (custom-autoload 'global-ede-mode "ede" nil) (autoload 'global-ede-mode "ede" "\ Toggle global EDE (Emacs Development Environment) mode. This global minor mode enables `ede-minor-mode' in all buffers in an EDE controlled project. This is a global minor mode. If called interactively, toggle the `Global Ede mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='global-ede-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "ede" '("ede" "global-ede-mode-map" "project-try-ede")) ;;; Generated autoloads from cedet/semantic/ede-grammar.el (register-definition-prefixes "semantic/ede-grammar" '("semantic-ede-")) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ If non-nil, evaluating defining forms instruments for Edebug. This applies to `eval-defun', `eval-region' and `eval-buffer'. `eval-region' is also called by `eval-last-sexp', and `eval-print-last-sexp'. You can use the command `edebug-all-defs' to toggle the value of this variable. You may wish to make it local to each buffer with (make-local-variable \\='edebug-all-defs) in your `emacs-lisp-mode-hook'. Note that this user option has no effect unless the edebug package has been loaded.") (custom-autoload 'edebug-all-defs "edebug" t) (defvar edebug-all-forms nil "\ Non-nil means evaluation of all forms will instrument for Edebug. This doesn't apply to loading or evaluations in the minibuffer. Use the command `edebug-all-forms' to toggle the value of this option.") (custom-autoload 'edebug-all-forms "edebug" t) (autoload 'edebug-basic-spec "edebug" "\ Return t if SPEC uses only extant spec symbols. An extant spec symbol is a symbol that is not a function and has a `edebug-form-spec' property. (fn SPEC)") (defalias 'edebug-defun #'edebug-eval-top-level-form) (autoload 'edebug-eval-top-level-form "edebug" "\ Evaluate the top level form point is in, stepping through with Edebug. This is like `eval-defun' except that it steps the code for Edebug before evaluating it. It displays the value in the echo area using `eval-expression' (which see). If you do this on a function definition such as a defun or defmacro, it defines the function and instruments its definition for Edebug, so it will do Edebug stepping when called later. It displays `Edebug: FUNCTION' in the echo area to indicate that FUNCTION is now instrumented for Edebug. If the current defun is actually a call to `defvar' or `defcustom', evaluating it this way resets the variable using its initial value expression even if the variable already has some other value. (Normally `defvar' and `defcustom' do not alter the value if there already is one.)" t) (autoload 'edebug-all-defs "edebug" "\ Toggle edebugging of all definitions." t) (autoload 'edebug-all-forms "edebug" "\ Toggle edebugging of all forms." t) (register-definition-prefixes "edebug" '("edebug")) ;;; Generated autoloads from vc/ediff.el (push (purecopy '(ediff 2 81 6)) package--builtin-versions) (autoload 'ediff-files "ediff" "\ Run Ediff on a pair of files, FILE-A and FILE-B. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. (fn FILE-A FILE-B &optional STARTUP-HOOKS)" t) (autoload 'ediff-files3 "ediff" "\ Run Ediff on three files, FILE-A, FILE-B, and FILE-C. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. (fn FILE-A FILE-B FILE-C &optional STARTUP-HOOKS)" t) (defalias 'ediff3 #'ediff-files3) (defalias 'ediff #'ediff-files) (autoload 'ediff-current-file "ediff" "\ Start ediff between current buffer and its file on disk. This command can be used instead of `revert-buffer'. If there is nothing to revert then this command fails." t) (autoload 'ediff-backup "ediff" "\ Run Ediff on FILE and its backup file. Uses the latest backup, if there are several numerical backups. If this file is a backup, `ediff' it with its original. (fn FILE)" t) (autoload 'ediff-buffers "ediff" "\ Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. JOB-NAME is a symbol describing the Ediff job type; it defaults to `ediff-buffers', but can also be one of `ediff-merge-files-with-ancestor', `ediff-last-dir-ancestor', `ediff-last-dir-C', `ediff-buffers3', `ediff-merge-buffers', or `ediff-merge-buffers-with-ancestor'. (fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME)" t) (defalias 'ebuffers #'ediff-buffers) (autoload 'ediff-buffers3 "ediff" "\ Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. JOB-NAME is a symbol describing the Ediff job type; it defaults to `ediff-buffers3', but can also be one of `ediff-merge-files-with-ancestor', `ediff-last-dir-ancestor', `ediff-last-dir-C', `ediff-buffers', `ediff-merge-buffers', or `ediff-merge-buffers-with-ancestor'. (fn BUFFER-A BUFFER-B BUFFER-C &optional STARTUP-HOOKS JOB-NAME)" t) (defalias 'ebuffers3 #'ediff-buffers3) (autoload 'ediff-directories "ediff" "\ Run Ediff on directories DIR1 and DIR2, comparing files. Consider only files that have the same name in both directories. REGEXP is nil or a regular expression; only file names that match the regexp are considered. (fn DIR1 DIR2 REGEXP)" t) (defalias 'edirs #'ediff-directories) (autoload 'ediff-directory-revisions "ediff" "\ Run Ediff on a directory, DIR1, comparing its files with their revisions. The second argument, REGEXP, is a regular expression that filters the file names. Only the files that are under revision control are taken into account. (fn DIR1 REGEXP)" t) (defalias 'edir-revisions #'ediff-directory-revisions) (autoload 'ediff-directories3 "ediff" "\ Run Ediff on directories DIR1, DIR2, and DIR3, comparing files. Consider only files that have the same name in all three directories. REGEXP is nil or a regular expression; only file names that match the regexp are considered. (fn DIR1 DIR2 DIR3 REGEXP)" t) (defalias 'edirs3 #'ediff-directories3) (autoload 'ediff-merge-directories "ediff" "\ Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have the same name in both. The third argument, REGEXP, is nil or a regular expression; only file names that match the regexp are considered. MERGE-AUTOSTORE-DIR is the directory in which to store merged files. (fn DIR1 DIR2 REGEXP &optional MERGE-AUTOSTORE-DIR)" t) (defalias 'edirs-merge #'ediff-merge-directories) (autoload 'ediff-merge-directories-with-ancestor "ediff" "\ Merge files in DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors. Ediff merges files that have identical names in DIR1, DIR2. If a pair of files in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge without ancestor. The fourth argument, REGEXP, is nil or a regular expression; only file names that match the regexp are considered. MERGE-AUTOSTORE-DIR is the directory in which to store merged files. (fn DIR1 DIR2 ANCESTOR-DIR REGEXP &optional MERGE-AUTOSTORE-DIR)" t) (autoload 'ediff-merge-directory-revisions "ediff" "\ Run Ediff on a directory, DIR1, merging its files with their revisions. The second argument, REGEXP, is a regular expression that filters the file names. Only the files that are under revision control are taken into account. MERGE-AUTOSTORE-DIR is the directory in which to store merged files. (fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t) (defalias 'edir-merge-revisions #'ediff-merge-directory-revisions) (autoload 'ediff-merge-directory-revisions-with-ancestor "ediff" "\ Run Ediff on DIR1 and merge its files with their revisions and ancestors. The second argument, REGEXP, is a regular expression that filters the file names. Only the files that are under revision control are taken into account. MERGE-AUTOSTORE-DIR is the directory in which to store merged files. (fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t) (defalias 'edir-merge-revisions-with-ancestor 'ediff-merge-directory-revisions-with-ancestor) (defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor) (autoload 'ediff-windows-wordwise "ediff" "\ Compare WIND-A and WIND-B, which are selected by clicking, wordwise. This compares the portions of text visible in each of the two windows. With prefix argument, DUMB-MODE, or on a non-graphical display, works as follows: If WIND-A is nil, use selected window. If WIND-B is nil, use window next to WIND-A. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. (fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t) (autoload 'ediff-windows-linewise "ediff" "\ Compare WIND-A and WIND-B, which are selected by clicking, linewise. This compares the portions of text visible in each of the two windows. With prefix argument, DUMB-MODE, or on a non-graphical display, works as follows: If WIND-A is nil, use selected window. If WIND-B is nil, use window next to WIND-A. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. (fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t) (autoload 'ediff-regions-wordwise "ediff" "\ Run Ediff on a pair of regions in specified buffers. BUFFER-A and BUFFER-B are the buffers to be compared. Regions (i.e., point and mark) can be set in advance or marked interactively. This function might be slow for large regions. If you find it slow, use `ediff-regions-linewise' instead. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. (fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t) (autoload 'ediff-regions-linewise "ediff" "\ Run Ediff on a pair of regions in specified buffers. BUFFER-A and BUFFER-B are the buffers to be compared. Regions (i.e., point and mark) can be set in advance or marked interactively. Each region is enlarged to contain full lines. This function is effective for large regions, over 100-200 lines. For small regions, use `ediff-regions-wordwise'. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. (fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t) (defalias 'ediff-merge 'ediff-merge-files) (autoload 'ediff-merge-files "ediff" "\ Merge two files without ancestor. FILE-A and FILE-B are the names of the files to be merged. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. MERGE-BUFFER-FILE is the name of the file to be associated with the merge buffer.. (fn FILE-A FILE-B &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t) (autoload 'ediff-merge-files-with-ancestor "ediff" "\ Merge two files with ancestor. FILE-A and FILE-B are the names of the files to be merged, and FILE-ANCESTOR is the name of the ancestor file. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. MERGE-BUFFER-FILE is the name of the file to be associated with the merge buffer. (fn FILE-A FILE-B FILE-ANCESTOR &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t) (defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor) (autoload 'ediff-merge-buffers "ediff" "\ Merge buffers without ancestor. BUFFER-A and BUFFER-B are the buffers to be merged. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. JOB-NAME is a symbol describing the Ediff job type; it defaults to `ediff-merge-buffers', but can also be one of `ediff-merge-files-with-ancestor', `ediff-last-dir-ancestor', `ediff-last-dir-C', `ediff-buffers', `ediff-buffers3', or `ediff-merge-buffers-with-ancestor'. MERGE-BUFFER-FILE is the name of the file to be associated with the merge buffer. (fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t) (autoload 'ediff-merge-buffers-with-ancestor "ediff" "\ Merge buffers with ancestor. BUFFER-A and BUFFER-B are the buffers to be merged, and BUFFER-ANCESTOR is their ancestor. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. JOB-NAME is a symbol describing the Ediff job type; it defaults to `ediff-merge-buffers-with-ancestor', but can also be one of `ediff-merge-files-with-ancestor', `ediff-last-dir-ancestor', `ediff-last-dir-C', `ediff-buffers', `ediff-buffers3', or `ediff-merge-buffers'. MERGE-BUFFER-FILE is the name of the file to be associated with the merge buffer. (fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t) (autoload 'ediff-merge-revisions "ediff" "\ Run Ediff by merging two revisions of a file. The file is the optional FILE argument or the file visited by the current buffer. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. MERGE-BUFFER-FILE is the name of the file to be associated with the merge buffer. (fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t) (autoload 'ediff-merge-revisions-with-ancestor "ediff" "\ Run Ediff by merging two revisions of a file with a common ancestor. The file is the optional FILE argument or the file visited by the current buffer. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. MERGE-BUFFER-FILE is the name of the file to be associated with the merge buffer. (fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t) (autoload 'ediff-patch-file "ediff" "\ Query for a file name, and then run Ediff by patching that file. If optional PATCH-BUF is given, use the patch in that buffer and don't ask the user. If prefix argument ARG, then: if even argument, assume that the patch is in a buffer. If odd -- assume it is in a file. (fn &optional ARG PATCH-BUF)" t) (autoload 'ediff-patch-buffer "ediff" "\ Run Ediff by patching the buffer specified at prompt. Without the optional prefix ARG, asks if the patch is in some buffer and prompts for the buffer or a file, depending on the answer. With ARG=1, assumes the patch is in a file and prompts for the file. With ARG=2, assumes the patch is in a buffer and prompts for the buffer. PATCH-BUF is an optional argument, which specifies the buffer that contains the patch. If not given, the user is prompted according to the prefix argument. (fn &optional ARG PATCH-BUF)" t) (defalias 'epatch 'ediff-patch-file) (defalias 'epatch-buffer 'ediff-patch-buffer) (autoload 'ediff-revision "ediff" "\ Run Ediff by comparing versions of a file. The file is an optional FILE argument or the file entered at the prompt. Default: the file visited by the current buffer. Uses `vc.el' or `rcs.el' depending on `ediff-version-control-package'. STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers. (fn &optional FILE STARTUP-HOOKS)" t) (defalias 'erevision 'ediff-revision) (autoload 'ediff-version "ediff" "\ Return string describing the version of Ediff. When called interactively, displays the version." t) (autoload 'ediff-documentation "ediff" "\ Display Ediff's manual. With optional NODE, goes to that node. (fn &optional NODE)" t) (autoload 'ediff-files-command "ediff" "\ Call `ediff-files' with the next two command line arguments.") (autoload 'ediff3-files-command "ediff" "\ Call `ediff3-files' with the next three command line arguments.") (autoload 'ediff-merge-command "ediff" "\ Call `ediff-merge-files' with the next two command line arguments.") (autoload 'ediff-merge-with-ancestor-command "ediff" "\ Call `ediff-merge-files-with-ancestor' with next three command line arguments.") (autoload 'ediff-directories-command "ediff" "\ Call `ediff-directories' with the next three command line arguments.") (autoload 'ediff-directories3-command "ediff" "\ Call `ediff-directories3' with the next four command line arguments.") (autoload 'ediff-merge-directories-command "ediff" "\ Call `ediff-merge-directories' with the next three command line arguments.") (autoload 'ediff-merge-directories-with-ancestor-command "ediff" "\ Call `ediff-merge-directories-with-ancestor' with the next four command line arguments.") (register-definition-prefixes "ediff" '("ediff-")) ;;; Generated autoloads from vc/ediff-diff.el (register-definition-prefixes "ediff-diff" '("ediff-")) ;;; Generated autoloads from vc/ediff-help.el (autoload 'ediff-customize "ediff-help" nil t) (register-definition-prefixes "ediff-help" '("ediff-")) ;;; Generated autoloads from vc/ediff-init.el (register-definition-prefixes "ediff-init" '("ediff-" "stipple-pixmap")) ;;; Generated autoloads from vc/ediff-merg.el (register-definition-prefixes "ediff-merg" '("ediff-")) ;;; Generated autoloads from vc/ediff-mult.el (autoload 'ediff-show-registry "ediff-mult" "\ Display Ediff's registry." t) (defalias 'eregistry #'ediff-show-registry) (register-definition-prefixes "ediff-mult" '("ediff-")) ;;; Generated autoloads from vc/ediff-ptch.el (register-definition-prefixes "ediff-ptch" '("ediff-")) ;;; Generated autoloads from vc/ediff-util.el (autoload 'ediff-toggle-multiframe "ediff-util" "\ Switch from multiframe display to single-frame display and back. To change the default, set the variable `ediff-window-setup-function', which see." t) (autoload 'ediff-toggle-use-toolbar "ediff-util" "\ Enable or disable Ediff toolbar. Works only in versions of Emacs that support toolbars. To change the default, set the variable `ediff-use-toolbar-p', which see." t) (register-definition-prefixes "ediff-util" '("ediff-")) ;;; Generated autoloads from vc/ediff-vers.el (register-definition-prefixes "ediff-vers" '("ediff-" "rcs-ediff-view-revision")) ;;; Generated autoloads from vc/ediff-wind.el (register-definition-prefixes "ediff-wind" '("ediff-")) ;;; Generated autoloads from cedet/semantic/edit.el (register-definition-prefixes "semantic/edit" '("semantic-")) ;;; Generated autoloads from edmacro.el (autoload 'edit-kbd-macro "edmacro" "\ Edit a keyboard macro. At the prompt, type any key sequence which is bound to a keyboard macro. Or, type \\[kmacro-end-and-call-macro] or \\`RET' to edit the last keyboard macro, \\[view-lossage] to edit the last 300 keystrokes as a keyboard macro, or \\[execute-extended-command] to edit a macro by its command name. With a prefix argument, format the macro in a more concise way. (fn KEYS &optional PREFIX FINISH-HOOK STORE-HOOK)" t) (autoload 'edit-last-kbd-macro "edmacro" "\ Edit the most recently defined keyboard macro. (fn &optional PREFIX)" t) (autoload 'edit-named-kbd-macro "edmacro" "\ Edit a keyboard macro which has been given a name by `name-last-kbd-macro'. (fn &optional PREFIX)" t) (autoload 'read-kbd-macro "edmacro" "\ Read the region as a keyboard macro definition. The region between START and END is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\". See documentation for `edmacro-mode' for details. Leading/trailing \"C-x (\" and \"C-x )\" in the text are allowed and ignored. The resulting macro is installed as the \"current\" keyboard macro. In Lisp, may also be called with a single STRING argument in which case the result is returned rather than being installed as the current macro. The result is a vector of input events. Second argument NEED-VECTOR means to return an event vector always. (fn START &optional END)" t) (autoload 'format-kbd-macro "edmacro" "\ Return the keyboard macro MACRO as a human-readable string. This string is suitable for passing to `read-kbd-macro'. Second argument VERBOSE means to put one command per line with comments. If VERBOSE is `1', put everything on one line. If VERBOSE is omitted or nil, use a compact 80-column format. (fn &optional MACRO VERBOSE)") (register-definition-prefixes "edmacro" '("edmacro-")) ;;; Generated autoloads from emulation/edt.el (autoload 'edt-set-scroll-margins "edt" "\ Set scroll margins. Argument TOP is the top margin in number of lines or percent of window. Argument BOTTOM is the bottom margin in number of lines or percent of window. (fn TOP BOTTOM)" t) (autoload 'edt-emulation-on "edt" "\ Turn on EDT Emulation." t) (register-definition-prefixes "edt" '("edt-")) ;;; Generated autoloads from emulation/edt-lk201.el (register-definition-prefixes "edt-lk201" '("*EDT-keys*")) ;;; Generated autoloads from emulation/edt-mapper.el (register-definition-prefixes "edt-mapper" '("edt-")) ;;; Generated autoloads from emulation/edt-pc.el (register-definition-prefixes "edt-pc" '("*EDT-keys*")) ;;; Generated autoloads from emulation/edt-vt100.el (register-definition-prefixes "edt-vt100" '("edt-set-term-width-")) ;;; Generated autoloads from progmodes/eglot.el (push (purecopy '(eglot 1 17)) package--builtin-versions) (define-obsolete-function-alias 'eglot-update #'eglot-upgrade-eglot "29.1") (autoload 'eglot "eglot" "\ Start LSP server for PROJECT's buffers under MANAGED-MAJOR-MODES. This starts a Language Server Protocol (LSP) server suitable for the buffers of PROJECT whose `major-mode' is among MANAGED-MAJOR-MODES. CLASS is the class of the LSP server to start and CONTACT specifies how to connect to the server. Interactively, the command attempts to guess MANAGED-MAJOR-MODES, CLASS, CONTACT, and LANGUAGE-IDS from `eglot-server-programs', according to the current buffer's `major-mode'. PROJECT is guessed from `project-find-functions'. The search for active projects in this context binds `eglot-lsp-context' (which see). If it can't guess, it prompts the user for the mode and the server. With a single \\[universal-argument] prefix arg, it always prompts for COMMAND. With two \\[universal-argument], it also always prompts for MANAGED-MAJOR-MODE. The LSP server of CLASS is started (or contacted) via CONTACT. If this operation is successful, current *and future* file buffers of MANAGED-MAJOR-MODE inside PROJECT become \"managed\" by the LSP server, meaning the information about their contents is exchanged periodically with the server to provide enhanced code-analysis via `xref-find-definitions', `flymake-mode', `eldoc-mode', and `completion-at-point', among others. PROJECT is a project object as returned by `project-current'. CLASS is a subclass of `eglot-lsp-server'. CONTACT specifies how to contact the server. It is a keyword-value plist used to initialize CLASS or a plain list as described in `eglot-server-programs', which see. LANGUAGE-IDS is a list of language ID string to send to the server for each element in MANAGED-MAJOR-MODES. INTERACTIVE is ignored and provided for backward compatibility. (fn MANAGED-MAJOR-MODES PROJECT CLASS CONTACT LANGUAGE-IDS &optional INTERACTIVE)" t) (autoload 'eglot-ensure "eglot" "\ Start Eglot session for current buffer if there isn't one. Only use this function (in major mode hooks, etc) if you are confident that Eglot can be started safely and efficiently for *every* buffer visited where these hooks may execute. Since it is difficult to establish this confidence fully, it's often wise to use the interactive command `eglot' instead. This command only needs to be invoked once per project, as all other files of a given major mode visited within the same project will automatically become managed with no further user intervention needed.") (autoload 'eglot-upgrade-eglot "eglot" "\ Update Eglot to latest version. (fn &rest _)" t) (put 'eglot-workspace-configuration 'safe-local-variable #'listp) (put 'eglot--debbugs-or-github-bug-uri 'bug-reference-url-format t) (defun eglot--debbugs-or-github-bug-uri nil (format (if (string= (match-string 2) "github") "https://github.com/joaotavora/eglot/issues/%s" "https://debbugs.gnu.org/%s") (match-string 3))) (register-definition-prefixes "eglot" '("eglot-")) ;;; Generated autoloads from ehelp.el (autoload 'with-electric-help "ehelp" "\ Pop up an \"electric\" help buffer. THUNK is a function of no arguments which is called to initialize the contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be erased before THUNK is called unless NOERASE is non-nil. THUNK will be called while BUFFER is current and with `standard-output' bound to the buffer specified by BUFFER. If THUNK returns nil, we display BUFFER starting at the top, and shrink the window to fit. If THUNK returns non-nil, we don't do those things. After THUNK has been called, this function \"electrically\" pops up a window in which BUFFER is displayed and allows the user to scroll through that buffer in `electric-help-mode'. The window's height will be at least MINHEIGHT if this value is non-nil. If THUNK returns nil, we display BUFFER starting at the top, and shrink the window to fit if `electric-help-shrink-window' is non-nil. If THUNK returns non-nil, we don't do those things. When the user exits (with `electric-help-exit', or otherwise), the help buffer's window disappears (i.e., we use `save-window-excursion'), and BUFFER is put back into its original major mode. (fn THUNK &optional BUFFER NOERASE MINHEIGHT)") (autoload 'electric-helpify "ehelp" "\ (fn FUN &optional NAME)") (register-definition-prefixes "ehelp" '("ehelp-" "electric-")) ;;; Generated autoloads from emacs-lisp/eieio.el (push (purecopy '(eieio 1 4)) package--builtin-versions) (autoload 'make-instance "eieio" "\ Make a new instance of CLASS based on INITARGS. For example: (make-instance \\='foo) INITARGS is a property list with keywords based on the `:initarg' for each slot. For example: (make-instance \\='foo :slot1 value1 :slotN valueN) (fn CLASS &rest INITARGS)") (register-definition-prefixes "eieio" '("child-of-class-p" "defclass" "eieio-" "find-class" "obj" "oref" "oset" "same-class-p" "set-slot-value" "slot-" "with-slots")) ;;; Generated autoloads from emacs-lisp/eieio-base.el (register-definition-prefixes "eieio-base" '("eieio-")) ;;; Generated autoloads from emacs-lisp/eieio-core.el (push (purecopy '(eieio-core 1 4)) package--builtin-versions) (autoload 'eieio-defclass-autoload "eieio-core" "\ Create autoload symbols for the EIEIO class CNAME. SUPERCLASSES are the superclasses that CNAME inherits from. DOC is the docstring for CNAME. This function creates a mock-class for CNAME and adds it into SUPERCLASSES as children. It creates an autoload function for CNAME's constructor. (fn CNAME SUPERCLASSES FILENAME DOC)") (register-definition-prefixes "eieio-core" '("cl--generic-struct-tag" "class-" "eieio-" "inconsistent-class-hierarchy" "invalid-slot-" "unbound-slot")) ;;; Generated autoloads from emacs-lisp/eieio-custom.el (autoload 'customize-object "eieio-custom" "\ Customize OBJ in a custom buffer. Optional argument GROUP is the sub-group of slots to display. (fn OBJ &optional GROUP)") (register-definition-prefixes "eieio-custom" '("eieio-")) ;;; Generated autoloads from emacs-lisp/eieio-datadebug.el (register-definition-prefixes "eieio-datadebug" '("data-debug-insert-object-")) ;;; Generated autoloads from emacs-lisp/eieio-opt.el (autoload 'eieio-browse "eieio-opt" "\ Create an object browser window to show all objects. If optional ROOT-CLASS, then start with that, otherwise start with variable `eieio-default-superclass'. (fn &optional ROOT-CLASS)" t) (define-obsolete-function-alias 'eieio-help-class 'cl--describe-class "25.1") (autoload 'eieio-help-constructor "eieio-opt" "\ Describe CTR if it is a class constructor. (fn CTR)") (make-obsolete 'eieio-help-constructor '"use `describe-function' or `cl--describe-class'." "29.1") (register-definition-prefixes "eieio-opt" '("eieio-")) ;;; Generated autoloads from emacs-lisp/eieio-speedbar.el (register-definition-prefixes "eieio-speedbar" '("eieio-speedbar")) ;;; Generated autoloads from cedet/srecode/el.el (register-definition-prefixes "srecode/el" '("srecode-semantic-apply-tag-to-dict")) ;;; Generated autoloads from cedet/semantic/bovine/el.el (register-definition-prefixes "semantic/bovine/el" '("semantic-")) ;;; Generated autoloads from emacs-lisp/eldoc.el (push (purecopy '(eldoc 1 15 0)) package--builtin-versions) ;;; Generated autoloads from elec-pair.el (defvar electric-pair-mode nil "\ Non-nil if Electric-Pair mode is enabled. See the `electric-pair-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `electric-pair-mode'.") (custom-autoload 'electric-pair-mode "elec-pair" nil) (autoload 'electric-pair-mode "elec-pair" "\ Toggle automatic parens pairing (Electric Pair mode). Electric Pair mode is a global minor mode. When enabled, typing an open parenthesis automatically inserts the corresponding closing parenthesis, and vice versa. (Likewise for brackets, etc.). If the region is active, the parentheses (brackets, etc.) are inserted around the region instead. To toggle the mode in a single buffer, use `electric-pair-local-mode'. This is a global minor mode. If called interactively, toggle the `Electric-Pair mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='electric-pair-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'electric-pair-local-mode "elec-pair" "\ Toggle `electric-pair-mode' only in this buffer. This is a minor mode. If called interactively, toggle the `Electric-Pair-Local mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `electric-pair-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "elec-pair" '("electric-pair-")) ;;; Generated autoloads from elide-head.el (autoload 'elide-head-mode "elide-head" "\ Toggle eliding (hiding) header material in the current buffer. When Elide Header mode is enabled, headers are hidden according to `elide-head-headers-to-hide'. This is suitable as an entry on `find-file-hook' or appropriate mode hooks. This is a minor mode. If called interactively, toggle the `Elide-Head mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `elide-head-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'elide-head "elide-head" "\ Hide header material in buffer according to `elide-head-headers-to-hide'. The header is made invisible with an overlay. With a prefix argument ARG, show an elided material again. This is suitable as an entry on `find-file-hook' or appropriate mode hooks. (fn &optional ARG)" t) (make-obsolete 'elide-head 'elide-head-mode "29.1") (register-definition-prefixes "elide-head" '("elide-head-")) ;;; Generated autoloads from emacs-lisp/elint.el (autoload 'elint-file "elint" "\ Lint the file FILE. (fn FILE)" t) (autoload 'elint-directory "elint" "\ Lint all the .el files in DIRECTORY. A complicated directory may require a lot of memory. (fn DIRECTORY)" t) (autoload 'elint-current-buffer "elint" "\ Lint the current buffer. If necessary, this first calls `elint-initialize'." t) (autoload 'elint-defun "elint" "\ Lint the function at point. If necessary, this first calls `elint-initialize'." t) (autoload 'elint-initialize "elint" "\ Initialize elint. If elint is already initialized, this does nothing, unless optional prefix argument REINIT is non-nil. (fn &optional REINIT)" t) (register-definition-prefixes "elint" '("elint-")) ;;; Generated autoloads from progmodes/elixir-ts-mode.el (autoload 'elixir-ts-mode "elixir-ts-mode" "\ Major mode for editing Elixir, powered by tree-sitter. (fn)" t) (register-definition-prefixes "elixir-ts-mode" '("elixir-ts-")) ;;; Generated autoloads from emacs-lisp/elp.el (autoload 'elp-instrument-function "elp" "\ Instrument FUNSYM for profiling. FUNSYM must be a symbol of a defined function. (fn FUNSYM)" t) (autoload 'elp-instrument-list "elp" "\ Instrument, for profiling, all functions in `elp-function-list'. Use optional LIST if provided instead. If called interactively, prompt for LIST in the minibuffer; type \"nil\" to use `elp-function-list'. (fn &optional LIST)" t) (autoload 'elp-instrument-package "elp" "\ Instrument for profiling, all functions which start with PREFIX. For example, to instrument all ELP functions, do the following: \\[elp-instrument-package] RET elp- RET Note that only functions that are currently loaded will be instrumented. If you run this function, and then later load further functions that start with PREFIX, they will not be instrumented automatically. (fn PREFIX)" t) (autoload 'elp-results "elp" "\ Display current profiling results. If `elp-reset-after-results' is non-nil, then current profiling information for all instrumented functions is reset after results are displayed." t) (register-definition-prefixes "elp" '("elp-")) ;;; Generated autoloads from eshell/em-alias.el (register-definition-prefixes "em-alias" '("eshell" "pcomplete/eshell-mode/alias")) ;;; Generated autoloads from eshell/em-banner.el (register-definition-prefixes "em-banner" '("eshell-banner-")) ;;; Generated autoloads from eshell/em-basic.el (register-definition-prefixes "em-basic" '("eshell" "pcomplete/eshell-mode/eshell-debug")) ;;; Generated autoloads from eshell/em-cmpl.el (register-definition-prefixes "em-cmpl" '("eshell-")) ;;; Generated autoloads from eshell/em-dirs.el (register-definition-prefixes "em-dirs" '("eshell")) ;;; Generated autoloads from eshell/em-elecslash.el (register-definition-prefixes "em-elecslash" '("eshell-elec")) ;;; Generated autoloads from eshell/em-extpipe.el (defgroup eshell-extpipe nil "\ Native shell pipelines. This module lets you construct pipelines that use your operating system's shell instead of Eshell's own pipelining support. This is especially relevant when executing commands on a remote machine using Eshell's Tramp integration: using the remote shell's pipelining avoids copying the data which will flow through the pipeline to local Emacs buffers and then right back again." :tag "External pipelines" :group 'eshell-module) (register-definition-prefixes "em-extpipe" '("eshell-")) ;;; Generated autoloads from eshell/em-glob.el (register-definition-prefixes "em-glob" '("eshell-")) ;;; Generated autoloads from eshell/em-hist.el (register-definition-prefixes "em-hist" '("em-hist-unload-function" "eshell")) ;;; Generated autoloads from eshell/em-ls.el (register-definition-prefixes "em-ls" '("em-ls-unload-function" "eshell")) ;;; Generated autoloads from eshell/em-pred.el (register-definition-prefixes "em-pred" '("eshell-")) ;;; Generated autoloads from eshell/em-prompt.el (register-definition-prefixes "em-prompt" '("eshell-")) ;;; Generated autoloads from eshell/em-rebind.el (register-definition-prefixes "em-rebind" '("eshell-")) ;;; Generated autoloads from eshell/em-script.el (register-definition-prefixes "em-script" '("eshell")) ;;; Generated autoloads from eshell/em-smart.el (register-definition-prefixes "em-smart" '("em-smart-unload-hook" "eshell-")) ;;; Generated autoloads from eshell/em-term.el (register-definition-prefixes "em-term" '("eshell-")) ;;; Generated autoloads from eshell/em-tramp.el (register-definition-prefixes "em-tramp" '("eshell")) ;;; Generated autoloads from eshell/em-unix.el (register-definition-prefixes "em-unix" '("eshell")) ;;; Generated autoloads from eshell/em-xtra.el (register-definition-prefixes "em-xtra" '("eshell/")) ;;; Generated autoloads from cedet/ede/emacs.el (register-definition-prefixes "ede/emacs" '("ede-emacs-")) ;;; Generated autoloads from textmodes/emacs-authors-mode.el (autoload 'emacs-authors-mode "emacs-authors-mode" "\ Major mode for viewing \"etc/AUTHORS\" from the Emacs distribution. Provides some basic font locking and not much else. (fn)" t) (define-obsolete-function-alias 'etc-authors-mode #'emacs-authors-mode "29.1") (register-definition-prefixes "emacs-authors-mode" '("emacs-authors-" "etc-authors-")) ;;; Generated autoloads from emacs-lock.el (autoload 'emacs-lock-mode "emacs-lock" "\ Toggle Emacs Lock mode in the current buffer. If called with a plain prefix argument, ask for the locking mode to be used. Initially, if the user does not pass an explicit locking mode, it defaults to `emacs-lock-default-locking-mode' (which see); afterwards, the locking mode most recently set on the buffer is used instead. When called from Elisp code, ARG can be any locking mode: exit -- Emacs cannot exit while the buffer is locked kill -- the buffer cannot be killed, but Emacs can exit as usual all -- the buffer is locked against both actions Other values are interpreted as usual. See also `emacs-lock-unlockable-modes', which exempts buffers under some major modes from being locked under some circumstances. (fn &optional ARG)" t) (register-definition-prefixes "emacs-lock" '("emacs-lock-")) ;;; Generated autoloads from textmodes/emacs-news-mode.el (autoload 'emacs-news-mode "emacs-news-mode" "\ Major mode for editing the Emacs NEWS file. (fn)" t) (autoload 'emacs-news-view-mode "emacs-news-mode" "\ Major mode for viewing the Emacs NEWS file. (fn)" t) (register-definition-prefixes "emacs-news-mode" '("emacs-news-")) ;;; Generated autoloads from mail/emacsbug.el (autoload 'report-emacs-bug "emacsbug" "\ Report a bug in GNU Emacs. Prompts for bug subject. Leaves you in a mail buffer. Already submitted bugs can be found in the Emacs bug tracker: https://debbugs.gnu.org/cgi/pkgreport.cgi?package=emacs;max-bugs=100;base-order=1;bug-rev=1 (fn TOPIC &optional UNUSED)" t) (set-advertised-calling-convention 'report-emacs-bug '(topic) '"24.5") (autoload 'emacs-build-description "emacsbug" "\ Insert a description of the current Emacs build in the current buffer." t) (autoload 'submit-emacs-patch "emacsbug" "\ Send an Emacs patch to the Emacs maintainers. Interactively, you will be prompted for SUBJECT and a patch FILE name (which will be attached to the mail). You will end up in a Message buffer where you can explain more about the patch. (fn SUBJECT FILE)" t) (register-definition-prefixes "emacsbug" '("report-emacs-bug-")) ;;; Generated autoloads from vc/emerge.el (autoload 'emerge-files "emerge" "\ Run Emerge on two files FILE-A and FILE-B. (fn ARG FILE-A FILE-B FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t) (autoload 'emerge-files-with-ancestor "emerge" "\ Run Emerge on two files, giving another file as the ancestor. (fn ARG FILE-A FILE-B FILE-ANCESTOR FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t) (autoload 'emerge-buffers "emerge" "\ Run Emerge on two buffers BUFFER-A and BUFFER-B. (fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS QUIT-HOOKS)" t) (autoload 'emerge-buffers-with-ancestor "emerge" "\ Run Emerge on two buffers, giving another buffer as the ancestor. (fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t) (autoload 'emerge-files-command "emerge") (autoload 'emerge-files-with-ancestor-command "emerge") (autoload 'emerge-files-remote "emerge" "\ (fn FILE-A FILE-B FILE-OUT)") (autoload 'emerge-files-with-ancestor-remote "emerge" "\ (fn FILE-A FILE-B FILE-ANC FILE-OUT)") (autoload 'emerge-revisions "emerge" "\ Emerge two RCS revisions of a file. (fn ARG FILE REVISION-A REVISION-B &optional STARTUP-HOOKS QUIT-HOOKS)" t) (autoload 'emerge-revisions-with-ancestor "emerge" "\ Emerge two RCS revisions of a file, with another revision as ancestor. (fn ARG FILE REVISION-A REVISION-B ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t) (autoload 'emerge-merge-directories "emerge" "\ (fn A-DIR B-DIR ANCESTOR-DIR OUTPUT-DIR)" t) (register-definition-prefixes "emerge" '("emerge-")) ;;; Generated autoloads from international/emoji.el (autoload 'emoji-insert "emoji" nil t) (autoload 'emoji-recent "emoji" nil t) (autoload 'emoji-search "emoji" nil t) (autoload 'emoji-list "emoji" "\ List emojis and allow selecting and inserting one of them. Select the emoji by typing \\\\[emoji-list-select] on its picture. The glyph will be inserted into the buffer that was current when the command was invoked." t) (autoload 'emoji-describe "emoji" "\ Display the name of the grapheme cluster composed from GLYPH. GLYPH should be a string of one or more characters which together produce an emoji. Interactively, GLYPH is the emoji at point (it could also be any character, not just emoji). If called from Lisp, return the name as a string; return nil if the name is not known. (fn GLYPH &optional INTERACTIVE)" t) (autoload 'emoji-list-select "emoji" nil t) (autoload 'emoji--init "emoji" "\ (fn &optional FORCE INHIBIT-ADJUST)") (autoload 'emoji-zoom-increase "emoji" "\ Increase the size of the character under point. FACTOR is the multiplication factor for the size. (fn &optional FACTOR)" t) (autoload 'emoji-zoom-decrease "emoji" "\ Decrease the size of the character under point." t) (autoload 'emoji-zoom-reset "emoji" "\ Reset the size of the character under point." t) (register-definition-prefixes "emoji" '("emoji-")) ;;; Generated autoloads from textmodes/enriched.el (autoload 'enriched-mode "enriched" "\ Minor mode for editing text/enriched files. These are files with embedded formatting information in the MIME standard text/enriched format. Turning the mode on or off runs `enriched-mode-hook'. More information about Enriched mode is available in the file \"enriched.txt\" in `data-directory'. Commands: \\{enriched-mode-map} This is a minor mode. If called interactively, toggle the `Enriched mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `enriched-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'enriched-encode "enriched" "\ (fn FROM TO ORIG-BUF)") (autoload 'enriched-decode "enriched" "\ (fn FROM TO)") (register-definition-prefixes "enriched" '("enriched-")) ;;; Generated autoloads from epa.el (autoload 'epa-list-keys "epa" "\ List all keys matched with NAME from the public keyring. (fn &optional NAME)" t) (autoload 'epa-list-secret-keys "epa" "\ List all keys matched with NAME from the private keyring. (fn &optional NAME)" t) (autoload 'epa-select-keys "epa" "\ Display a user's keyring and ask him to select keys. CONTEXT is an `epg-context'. PROMPT is a string to prompt with. NAMES is a list of strings to be matched with keys. If it is nil, all the keys are listed. If SECRET is non-nil, list secret keys instead of public keys. (fn CONTEXT PROMPT &optional NAMES SECRET)") (autoload 'epa-decrypt-file "epa" "\ Decrypt DECRYPT-FILE into PLAIN-FILE. If you do not specify PLAIN-FILE, this functions prompts for the value to use. (fn DECRYPT-FILE &optional PLAIN-FILE)" t) (autoload 'epa-verify-file "epa" "\ Verify FILE. (fn FILE)" t) (autoload 'epa-sign-file "epa" "\ Sign FILE by SIGNERS keys selected. (fn FILE SIGNERS MODE)" t) (autoload 'epa-encrypt-file "epa" "\ Encrypt FILE for RECIPIENTS. (fn FILE RECIPIENTS)" t) (autoload 'epa-decrypt-region "epa" "\ Decrypt the current region between START and END. If MAKE-BUFFER-FUNCTION is non-nil, call it to prepare an output buffer. It should return that buffer. If it copies the input, it should delete the text now being decrypted. It should leave point at the proper place to insert the plaintext. Be careful about using this command in Lisp programs! Since this function operates on regions, it does some tricks such as coding-system detection and unibyte/multibyte conversion. If you are sure how the data in the region should be treated, you should consider using the string based counterpart `epg-decrypt-string', or the file based counterpart `epg-decrypt-file' instead. For example: (let ((context (epg-make-context \\='OpenPGP))) (decode-coding-string (epg-decrypt-string context (buffer-substring start end)) \\='utf-8)) (fn START END &optional MAKE-BUFFER-FUNCTION)" t) (autoload 'epa-decrypt-armor-in-region "epa" "\ Decrypt OpenPGP armors in the current region between START and END. Don't use this command in Lisp programs! See the reason described in the `epa-decrypt-region' documentation. (fn START END)" t) (function-put 'epa-decrypt-armor-in-region 'interactive-only 't) (autoload 'epa-verify-region "epa" "\ Verify the current region between START and END. Don't use this command in Lisp programs! Since this function operates on regions, it does some tricks such as coding-system detection and unibyte/multibyte conversion. If you are sure how the data in the region should be treated, you should consider using the string based counterpart `epg-verify-string', or the file based counterpart `epg-verify-file' instead. For example: (let ((context (epg-make-context \\='OpenPGP))) (decode-coding-string (epg-verify-string context (buffer-substring start end)) \\='utf-8)) (fn START END)" t) (function-put 'epa-verify-region 'interactive-only 't) (autoload 'epa-verify-cleartext-in-region "epa" "\ Verify OpenPGP cleartext signed messages in current region from START to END. Don't use this command in Lisp programs! See the reason described in the `epa-verify-region' documentation. (fn START END)" t) (function-put 'epa-verify-cleartext-in-region 'interactive-only 't) (autoload 'epa-sign-region "epa" "\ Sign the current region between START and END by SIGNERS keys selected. Don't use this command in Lisp programs! Since this function operates on regions, it does some tricks such as coding-system detection and unibyte/multibyte conversion. If you are sure how the data should be treated, you should consider using the string based counterpart `epg-sign-string', or the file based counterpart `epg-sign-file' instead. For example: (let ((context (epg-make-context \\='OpenPGP))) (epg-sign-string context (encode-coding-string (buffer-substring start end) \\='utf-8))) (fn START END SIGNERS MODE)" t) (function-put 'epa-sign-region 'interactive-only 't) (autoload 'epa-encrypt-region "epa" "\ Encrypt the current region between START and END for RECIPIENTS. Don't use this command in Lisp programs! Since this function operates on regions, it does some tricks such as coding-system detection and unibyte/multibyte conversion. If you are sure how the data should be treated, you should consider using the string based counterpart `epg-encrypt-string', or the file based counterpart `epg-encrypt-file' instead. For example: (let ((context (epg-make-context \\='OpenPGP))) (epg-encrypt-string context (encode-coding-string (buffer-substring start end) \\='utf-8) nil)) (fn START END RECIPIENTS SIGN SIGNERS)" t) (function-put 'epa-encrypt-region 'interactive-only 't) (autoload 'epa-delete-keys "epa" "\ Delete selected KEYS. (fn KEYS &optional ALLOW-SECRET)" t) (autoload 'epa-import-keys "epa" "\ Import keys from FILE. (fn FILE)" t) (autoload 'epa-import-keys-region "epa" "\ Import keys from the region. (fn START END)" t) (autoload 'epa-import-armor-in-region "epa" "\ Import keys in the OpenPGP armor format in the current region from START to END. (fn START END)" t) (autoload 'epa-export-keys "epa" "\ Export selected KEYS to FILE. (fn KEYS FILE)" t) (autoload 'epa-insert-keys "epa" "\ Insert selected KEYS after the point. (fn KEYS)" t) (register-definition-prefixes "epa" '("epa-")) ;;; Generated autoloads from epa-dired.el (autoload 'epa-dired-do-decrypt "epa-dired" "\ Decrypt marked files." t) (autoload 'epa-dired-do-verify "epa-dired" "\ Verify marked files." t) (autoload 'epa-dired-do-sign "epa-dired" "\ Sign marked files." t) (autoload 'epa-dired-do-encrypt "epa-dired" "\ Encrypt marked files." t) ;;; Generated autoloads from epa-file.el (autoload 'epa-file-handler "epa-file" "\ (fn OPERATION &rest ARGS)") (autoload 'epa-file-enable "epa-file" nil t) (autoload 'epa-file-disable "epa-file" nil t) (register-definition-prefixes "epa-file" '("epa-")) ;;; Generated autoloads from epa-ks.el (autoload 'epa-search-keys "epa-ks" "\ Ask a keyserver for all keys matching QUERY. The keyserver to be used is specified by `epa-keyserver'. If EXACT is non-nil (interactively, prefix argument), require exact matches. Note that the request may fail if the query is not specific enough, since keyservers have strict timeout settings. (fn QUERY EXACT)" t) (register-definition-prefixes "epa-ks" '("epa-k")) ;;; Generated autoloads from epa-mail.el (autoload 'epa-mail-mode "epa-mail" "\ A minor-mode for composing encrypted/clearsigned mails. This is a minor mode. If called interactively, toggle the `epa-mail mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `epa-mail-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'epa-mail-decrypt "epa-mail" "\ Decrypt OpenPGP armors in the current buffer. The buffer is expected to contain a mail message." t) (function-put 'epa-mail-decrypt 'interactive-only 't) (autoload 'epa-mail-verify "epa-mail" "\ Verify OpenPGP cleartext signed messages in the current buffer. The buffer is expected to contain a mail message." t) (function-put 'epa-mail-verify 'interactive-only 't) (autoload 'epa-mail-sign "epa-mail" "\ Sign the current buffer. The buffer is expected to contain a mail message, and signing is performed with your default key. With prefix argument, asks you to select interactively the key to use from your key ring. (fn START END SIGNERS MODE)" t) (function-put 'epa-mail-sign 'interactive-only 't) (autoload 'epa-mail-encrypt "epa-mail" "\ Encrypt the outgoing mail message in the current buffer. Takes the recipients from the text in the header in the buffer and translates them through `epa-mail-aliases'. With prefix argument, asks you to select among them interactively and also whether and how to sign. Called from Lisp, the optional argument RECIPIENTS is a list of recipient addresses, t to perform symmetric encryption, or nil meaning use the defaults. SIGNERS is a list of keys to sign the message with. (fn &optional RECIPIENTS SIGNERS)" t) (autoload 'epa-mail-import-keys "epa-mail" "\ Import keys in the OpenPGP armor format in the current buffer. The buffer is expected to contain a mail message." t) (function-put 'epa-mail-import-keys 'interactive-only 't) (defvar epa-global-mail-mode nil "\ Non-nil if Epa-Global-Mail mode is enabled. See the `epa-global-mail-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `epa-global-mail-mode'.") (custom-autoload 'epa-global-mail-mode "epa-mail" nil) (autoload 'epa-global-mail-mode "epa-mail" "\ Minor mode to hook EasyPG into Mail mode. This is a global minor mode. If called interactively, toggle the `Epa-Global-Mail mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='epa-global-mail-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "epa-mail" '("epa-mail-")) ;;; Generated autoloads from epg.el (push (purecopy '(epg 1 0 0)) package--builtin-versions) (autoload 'epg-make-context "epg" "\ Return a context object. (fn &optional PROTOCOL ARMOR TEXTMODE INCLUDE-CERTS CIPHER-ALGORITHM DIGEST-ALGORITHM COMPRESS-ALGORITHM)") (register-definition-prefixes "epg" '("epg-")) ;;; Generated autoloads from epg-config.el (autoload 'epg-find-configuration "epg-config" "\ Find or create a usable configuration to handle PROTOCOL. This function first looks at the existing configuration found by the previous invocation of this function, unless NO-CACHE is non-nil. Then it walks through PROGRAM-ALIST or `epg-config--program-alist'. If `epg-gpg-program' or `epg-gpgsm-program' is already set with custom, use it. Otherwise, it tries the programs listed in the entry until the version requirement is met. (fn PROTOCOL &optional NO-CACHE PROGRAM-ALIST)") (autoload 'epg-configuration "epg-config" "\ Return a list of internal configuration parameters of `epg-gpg-program'.") (make-obsolete 'epg-configuration 'epg-find-configuration "25.1") (autoload 'epg-check-configuration "epg-config" "\ Verify that a sufficient version of GnuPG is installed. CONFIG should be a `epg-configuration' object (a plist). REQ-VERSIONS should be a list with elements of the form (MIN . MAX) where MIN and MAX are version strings indicating a semi-open range of acceptable versions. REQ-VERSIONS may also be a single minimum version string. (fn CONFIG &optional REQ-VERSIONS)") (autoload 'epg-expand-group "epg-config" "\ Look at CONFIG and try to expand GROUP. (fn CONFIG GROUP)") (register-definition-prefixes "epg-config" '("epg-")) ;;; Generated autoloads from erc/erc.el (push (purecopy '(erc 5 6 -4)) package--builtin-versions) (dolist (symbol '( erc-sasl erc-spelling ; 29 erc-imenu erc-nicks)) ; 30 (custom-add-load symbol symbol)) (custom-autoload 'erc-modules "erc") (autoload 'erc-select-read-args "erc" "\ Prompt for connection parameters and return them in a plist. By default, collect `:server', `:port', `:nickname', and `:password'. With a non-nil prefix argument, also prompt for `:user' and `:full-name'. Also return various environmental properties needed by entry-point commands, like `erc-tls'.") (autoload 'erc-server-select "erc" "\ Interactively connect to a server from `erc-server-alist'." t) (make-obsolete 'erc-server-select 'erc-tls "30.1") (autoload 'erc "erc" "\ Connect to an Internet Relay Chat SERVER on a non-TLS PORT. Use NICK and USER, when non-nil, to inform the IRC commands of the same name, possibly factoring in a non-nil FULL-NAME as well. When PASSWORD is non-nil, also send an opening server password via the \"PASS\" command. Interactively, prompt for SERVER, PORT, NICK, and PASSWORD, along with USER and FULL-NAME when given a prefix argument. Non-interactively, expect the rarely needed ID parameter, when non-nil, to be a symbol or a string for naming the server buffer and identifying the connection unequivocally. Once connected, return the server buffer. (See Info node `(erc) Connecting' for details about all mentioned parameters.) Together with `erc-tls', this command serves as the main entry point for ERC, the powerful, modular, and extensible IRC client. Non-interactively, both commands accept the following keyword arguments, with their defaults supplied by the indicated \"compute\" functions: :server `erc-compute-server' :port `erc-compute-port' :nick `erc-compute-nick' :user `erc-compute-user' :password N/A :full-name `erc-compute-full-name' :id' N/A For example, when called in the following manner (erc :server \"irc.libera.chat\" :full-name \"J. Random Hacker\") ERC assigns SERVER and FULL-NAME the associated keyword values and defers to `erc-compute-port', `erc-compute-user', and `erc-compute-nick' for those respective parameters. (fn &key SERVER PORT NICK USER PASSWORD FULL-NAME ID)" '((let ((erc--display-context `((erc-interactive-display . erc) ,@erc--display-context))) (erc-select-read-args)))) (defalias 'erc-select #'erc) (autoload 'erc-tls "erc" "\ Connect to an IRC server over a TLS-encrypted connection. Interactively, prompt for SERVER, PORT, NICK, and PASSWORD, along with USER and FULL-NAME when given a prefix argument. Non-interactively, also accept a CLIENT-CERTIFICATE, which should be a list containing the file name of the certificate's key followed by that of the certificate itself. Alternatively, accept a value of t instead of a list, to tell ERC to query `auth-source' for the certificate's details. Example client certificate (CertFP) usage: (erc-tls :server \"irc.libera.chat\" :port 6697 :client-certificate \\='(\"/home/bandali/my-cert.key\" \"/home/bandali/my-cert.crt\")) See the alternative entry-point command `erc' as well as Info node `(erc) Connecting' for a fuller description of the various parameters, like ID. (fn &key SERVER PORT NICK USER PASSWORD FULL-NAME CLIENT-CERTIFICATE ID)" '((let ((erc-default-port erc-default-port-tls) (erc--display-context `((erc-interactive-display . erc-tls) ,@erc--display-context))) (erc-select-read-args)))) (autoload 'erc-handle-irc-url "erc" "\ Use ERC to IRC on HOST:PORT in CHANNEL. If ERC is already connected to HOST:PORT, simply /join CHANNEL. Otherwise, connect to HOST:PORT as NICK and /join CHANNEL. Beginning with ERC 5.5, new connections require human intervention. Customize `erc-url-connect-function' to override this. (fn HOST PORT CHANNEL NICK PASSWORD &optional SCHEME)") (register-definition-prefixes "erc" '("erc-")) ;;; Generated autoloads from erc/erc-autoaway.el (register-definition-prefixes "erc-autoaway" '("erc-auto")) ;;; Generated autoloads from erc/erc-backend.el (register-definition-prefixes "erc-backend" '("erc-")) ;;; Generated autoloads from erc/erc-button.el (register-definition-prefixes "erc-button" '("erc-")) ;;; Generated autoloads from erc/erc-capab.el (register-definition-prefixes "erc-capab" '("erc-capab-identify-")) ;;; Generated autoloads from erc/erc-common.el (register-definition-prefixes "erc-common" '("define-erc-module" "erc-")) ;;; Generated autoloads from erc/erc-compat.el (register-definition-prefixes "erc-compat" '("erc-")) ;;; Generated autoloads from erc/erc-dcc.el (register-definition-prefixes "erc-dcc" '("erc-" "pcomplete/erc-mode/")) ;;; Generated autoloads from erc/erc-desktop-notifications.el (register-definition-prefixes "erc-desktop-notifications" '("erc-notifications-")) ;;; Generated autoloads from erc/erc-ezbounce.el (register-definition-prefixes "erc-ezbounce" '("erc-ezb-")) ;;; Generated autoloads from erc/erc-fill.el (register-definition-prefixes "erc-fill" '("erc-")) ;;; Generated autoloads from erc/erc-goodies.el (register-definition-prefixes "erc-goodies" '("erc-")) ;;; Generated autoloads from erc/erc-ibuffer.el (register-definition-prefixes "erc-ibuffer" '("erc-")) ;;; Generated autoloads from erc/erc-identd.el (register-definition-prefixes "erc-identd" '("erc-identd-")) ;;; Generated autoloads from erc/erc-imenu.el (register-definition-prefixes "erc-imenu" '("erc-")) ;;; Generated autoloads from erc/erc-join.el (register-definition-prefixes "erc-join" '("erc-")) ;;; Generated autoloads from erc/erc-lang.el (register-definition-prefixes "erc-lang" '("erc-cmd-LANG" "iso-639-1-languages" "language")) ;;; Generated autoloads from erc/erc-list.el (register-definition-prefixes "erc-list" '("erc-")) ;;; Generated autoloads from erc/erc-log.el (register-definition-prefixes "erc-log" '("erc-")) ;;; Generated autoloads from erc/erc-match.el (register-definition-prefixes "erc-match" '("erc-")) ;;; Generated autoloads from erc/erc-menu.el (register-definition-prefixes "erc-menu" '("erc-menu-")) ;;; Generated autoloads from erc/erc-netsplit.el (register-definition-prefixes "erc-netsplit" '("erc-")) ;;; Generated autoloads from erc/erc-networks.el (autoload 'erc-determine-network "erc-networks" "\ Return the name of the network or \"Unknown\" as a symbol. Use the server parameter NETWORK if provided, otherwise parse the server name and search for a match in `erc-networks-alist'.") (make-obsolete 'erc-determine-network '"maybe see `erc-networks--determine'" "29.1") (register-definition-prefixes "erc-networks" '("erc-")) ;;; Generated autoloads from erc/erc-nicks.el (register-definition-prefixes "erc-nicks" '("erc-nicks-")) ;;; Generated autoloads from erc/erc-notify.el (register-definition-prefixes "erc-notify" '("erc-")) ;;; Generated autoloads from erc/erc-page.el (register-definition-prefixes "erc-page" '("erc-")) ;;; Generated autoloads from erc/erc-pcomplete.el (register-definition-prefixes "erc-pcomplete" '("erc-pcomplet" "pcomplete")) ;;; Generated autoloads from erc/erc-replace.el (register-definition-prefixes "erc-replace" '("erc-replace-")) ;;; Generated autoloads from erc/erc-ring.el (register-definition-prefixes "erc-ring" '("erc-")) ;;; Generated autoloads from erc/erc-sasl.el (register-definition-prefixes "erc-sasl" '("erc-sasl-")) ;;; Generated autoloads from erc/erc-services.el (register-definition-prefixes "erc-services" '("erc-")) ;;; Generated autoloads from erc/erc-sound.el (register-definition-prefixes "erc-sound" '("erc-")) ;;; Generated autoloads from erc/erc-speedbar.el (register-definition-prefixes "erc-speedbar" '("erc-")) ;;; Generated autoloads from erc/erc-spelling.el (register-definition-prefixes "erc-spelling" '("erc-spelling-")) ;;; Generated autoloads from erc/erc-stamp.el (register-definition-prefixes "erc-stamp" '("erc-")) ;;; Generated autoloads from erc/erc-status-sidebar.el (register-definition-prefixes "erc-status-sidebar" '("erc-status-sidebar-")) ;;; Generated autoloads from erc/erc-track.el (register-definition-prefixes "erc-track" '("erc-")) ;;; Generated autoloads from erc/erc-truncate.el (register-definition-prefixes "erc-truncate" '("erc-")) ;;; Generated autoloads from erc/erc-xdcc.el (register-definition-prefixes "erc-xdcc" '("erc-")) ;;; Generated autoloads from emacs-lisp/ert.el (autoload 'ert-deftest "ert" "\ Define NAME (a symbol) as a test. BODY is evaluated as a `progn' when the test is run. It should signal a condition on failure or just return if the test passes. `should', `should-not', `should-error', `skip-when', and `skip-unless' are useful for assertions in BODY. Use `ert' to run tests interactively. Tests that are expected to fail can be marked as such using :expected-result. See `ert-test-result-type-p' for a description of valid values for RESULT-TYPE. Macros in BODY are expanded when the test is defined, not when it is run. If a macro (possibly with side effects) is to be tested, it has to be wrapped in `(eval (quote ...))'. If NAME is already defined as a test and Emacs is running in batch mode, an error is signaled. (fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] BODY...)" nil 'macro) (autoload 'ert-run-tests-batch "ert" "\ Run the tests specified by SELECTOR, printing results to the terminal. SELECTOR works as described in `ert-select-tests', except if SELECTOR is nil, in which case all tests rather than none will be run; this makes the command line \"emacs -batch -l my-tests.el -f ert-run-tests-batch-and-exit\" useful. Returns the stats object. (fn &optional SELECTOR)") (autoload 'ert-run-tests-batch-and-exit "ert" "\ Like `ert-run-tests-batch', but exits Emacs when done. The exit status will be 0 if all test results were as expected, 1 on unexpected results, or 2 if the tool detected an error outside of the tests (e.g. invalid SELECTOR or bug in the code that runs the tests). (fn &optional SELECTOR)") (autoload 'ert-run-tests-interactively "ert" "\ Run the tests specified by SELECTOR and display the results in a buffer. SELECTOR works as described in `ert-select-tests'. (fn SELECTOR)" t) (defalias 'ert #'ert-run-tests-interactively) (autoload 'ert-describe-test "ert" "\ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). (fn TEST-OR-TEST-NAME)" t) (register-definition-prefixes "ert" '("ert-")) ;;; Generated autoloads from emacs-lisp/ert-font-lock.el (autoload 'ert-font-lock-deftest "ert-font-lock" "\ Define test NAME (a symbol) using assertions from TEST-STR. Other than MAJOR-MODE and TEST-STR parameters, this macro accepts the same parameters and keywords as `ert-deftest' and is intended to be used through `ert'. (fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE TEST-STR)" nil t) (function-put 'ert-font-lock-deftest 'doc-string-elt 3) (function-put 'ert-font-lock-deftest 'lisp-indent-function 2) (autoload 'ert-font-lock-deftest-file "ert-font-lock" "\ Define test NAME (a symbol) using assertions from FILE. FILE - path to a file with assertions in ERT resource director as return by `ert-resource-directory'. Other than MAJOR-MODE and FILE parameters, this macro accepts the same parameters and keywords as `ert-deftest' and is intended to be used through `ert'. (fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE FILE)" nil t) (function-put 'ert-font-lock-deftest-file 'doc-string-elt 3) (function-put 'ert-font-lock-deftest-file 'lisp-indent-function 2) (autoload 'ert-font-lock-test-string "ert-font-lock" "\ Check font faces in TEST-STRING set by MODE. The function is meant to be run from within an ERT test. (fn TEST-STRING MODE)") (autoload 'ert-font-lock-test-file "ert-font-lock" "\ Check font faces in FILENAME set by MODE. The function is meant to be run from within an ERT test. (fn FILENAME MODE)") (register-definition-prefixes "ert-font-lock" '("ert-font-lock--")) ;;; Generated autoloads from emacs-lisp/ert-x.el (autoload 'ert-kill-all-test-buffers "ert-x" "\ Kill all test buffers that are still live." t) (register-definition-prefixes "ert-x" '("ert-")) ;;; Generated autoloads from progmodes/erts-mode.el (autoload 'erts-mode "erts-mode" "\ Major mode for editing erts (Emacs testing) files. This mode mainly provides some font locking. \\{erts-mode-map} (fn)" t) (register-definition-prefixes "erts-mode" '("erts-")) ;;; Generated autoloads from eshell/esh-arg.el (register-definition-prefixes "esh-arg" '("eshell-")) ;;; Generated autoloads from eshell/esh-cmd.el (register-definition-prefixes "esh-cmd" '("eshell")) ;;; Generated autoloads from eshell/esh-ext.el (register-definition-prefixes "esh-ext" '("eshell")) ;;; Generated autoloads from eshell/esh-io.el (register-definition-prefixes "esh-io" '("eshell-")) ;;; Generated autoloads from eshell/esh-mode.el (autoload 'eshell-mode "esh-mode" "\ Emacs shell interactive mode. (fn)" t) (autoload 'eshell-bookmark-jump "esh-mode" "\ Default bookmark handler for Eshell buffers. (fn BOOKMARK)") (register-definition-prefixes "esh-mode" '("eshell")) ;;; Generated autoloads from eshell/esh-module.el (register-definition-prefixes "esh-module" '("eshell-")) ;;; Generated autoloads from eshell/esh-opt.el (register-definition-prefixes "esh-opt" '("eshell-")) ;;; Generated autoloads from eshell/esh-proc.el (register-definition-prefixes "esh-proc" '("eshell")) ;;; Generated autoloads from eshell/esh-util.el (register-definition-prefixes "esh-util" '("eshell-")) ;;; Generated autoloads from eshell/esh-var.el (register-definition-prefixes "esh-var" '("eshell" "pcomplete/eshell-mode/")) ;;; Generated autoloads from eshell/eshell.el (push (purecopy '(eshell 2 4 2)) package--builtin-versions) (autoload 'eshell "eshell" "\ Create an interactive Eshell buffer. Start a new Eshell session, or switch to an already active session. Return the buffer selected (or created). With a nonnumeric prefix arg, create a new session. With a numeric prefix arg (as in `\\[universal-argument] 42 \\[eshell]'), switch to the session with that number, or create it if it doesn't already exist. The buffer name used for Eshell sessions is determined by the value of `eshell-buffer-name', which see. Eshell is a shell-like command interpreter. For more information on Eshell, see Info node `(eshell)Top'. (fn &optional ARG)" t) (autoload 'eshell-command "eshell" "\ Execute the Eshell command string COMMAND. If TO-CURRENT-BUFFER is non-nil (interactively, with the prefix argument), then insert output into the current buffer at point. (fn COMMAND &optional TO-CURRENT-BUFFER)" t) (autoload 'eshell-command-result "eshell" "\ Execute the given Eshell COMMAND, and return the result. The result might be any Lisp object. If STATUS-VAR is a symbol, it will be set to the exit status of the command. This is the only way to determine whether the value returned corresponding to a successful execution. (fn COMMAND &optional STATUS-VAR)") (register-definition-prefixes "eshell" '("eshell-")) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ File name of tags table. To switch to a new tags table, do not set this variable; instead, invoke `visit-tags-table', which is the only reliable way of setting the value of this variable, whether buffer-local or global. Use the `etags' program to make a tags table file.") (put 'tags-file-name 'variable-interactive (purecopy "fVisit tags table: ")) (put 'tags-file-name 'safe-local-variable 'stringp) (defvar tags-case-fold-search 'default "\ Whether tags operations should be case-sensitive. A value of t means case-insensitive, a value of nil means case-sensitive. Any other value means use the setting of `case-fold-search'.") (custom-autoload 'tags-case-fold-search "etags" t) (put 'tags-case-fold-search 'safe-local-variable 'symbolp) (defvar tags-table-list nil "\ List of file names of tags tables to search. An element that is a directory means the file \"TAGS\" in that directory. To switch to a new list of tags tables, setting this variable is sufficient. If you set this variable, do not also set `tags-file-name'. Use the `etags' program to make a tags table file.") (custom-autoload 'tags-table-list "etags" t) (defvar tags-compression-info-list (purecopy '("" ".Z" ".bz2" ".gz" ".xz" ".tgz")) "\ List of extensions tried by etags when `auto-compression-mode' is on. An empty string means search the non-compressed file.") (custom-autoload 'tags-compression-info-list "etags" t) (defvar tags-add-tables 'ask-user "\ Control whether to add a new tags table to the current list. t means do; nil means don't (always start a new list). Any other value means ask the user whether to add a new tags table to the current list (as opposed to starting a new list).") (custom-autoload 'tags-add-tables "etags" t) (defvar find-tag-hook nil "\ Hook to be run by \\[find-tag] after finding a tag. See `run-hooks'. The value in the buffer in which \\[find-tag] is done is used, not the value in the buffer \\[find-tag] goes to.") (custom-autoload 'find-tag-hook "etags" t) (defvar find-tag-default-function nil "\ A function of no arguments used by \\[find-tag] to pick a default tag. If nil, and the symbol that is the value of `major-mode' has a `find-tag-default-function' property (see `put'), that is used. Otherwise, `find-tag-default' is used.") (custom-autoload 'find-tag-default-function "etags" t) (autoload 'tags-table-mode "etags" "\ Major mode for tags table file buffers. (fn)" t) (autoload 'visit-tags-table "etags" "\ Tell tags commands to use tags table file FILE. FILE should be the name of a file created with the `etags' program. A directory name is ok too; it means file TAGS in that directory. Normally \\[visit-tags-table] sets the global value of `tags-file-name'. With a prefix arg, set the buffer-local value instead. When called from Lisp, if the optional arg LOCAL is non-nil, set the local value. When you find a tag with \\[find-tag], the buffer it finds the tag in is given a local value of this variable which is the name of the tags file the tag was in. (fn FILE &optional LOCAL)" t) (autoload 'visit-tags-table-buffer "etags" "\ Select the buffer containing the current tags table. Optional arg CONT specifies which tags table to visit. If CONT is a string, visit that file as a tags table. If CONT is t, visit the next table in `tags-table-list'. If CONT is the atom `same', don't look for a new table; just select the buffer visiting `tags-file-name'. If CONT is nil or absent, choose a first buffer from information in `tags-file-name', `tags-table-list', `tags-table-list-pointer'. Optional second arg CBUF, if non-nil, specifies the initial buffer, which is important if that buffer has a local value of `tags-file-name'. Returns t if it visits a tags table, or nil if there are no more in the list. (fn &optional CONT CBUF)") (autoload 'tags-reset-tags-tables "etags" "\ Reset tags state to cancel effect of any previous \\[visit-tags-table] or \\[find-tag]." t) (autoload 'tags-table-files "etags" "\ Return a list of files in the current tags table. Assumes the tags table is the current buffer. The file names are returned as they appeared in the `etags' command that created the table, usually without directory names.") (autoload 'tags-lazy-completion-table "etags") (defun tags-completion-at-point-function () (if (or tags-table-list tags-file-name) (progn (load "etags") (tags-completion-at-point-function)))) (autoload 'find-tag-noselect "etags" "\ Find tag (in current tags table) whose name contains TAGNAME. Returns the buffer containing the tag's definition and moves its point there, but does not select the buffer. The default for TAGNAME is the expression in the buffer near point. If second arg NEXT-P is t (interactively, with prefix arg), search for another tag that matches the last tagname or regexp used. When there are multiple matches for a tag, more exact matches are found first. If NEXT-P is the atom `-' (interactively, with prefix arg that is a negative number or just \\[negative-argument]), pop back to the previous tag gone to. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp. A marker representing the point when this command is invoked is pushed onto a ring and may be popped back to with \\[pop-tag-mark]. Contrast this with the ring of marks gone to by the command. See documentation of variable `tags-file-name'. (fn TAGNAME &optional NEXT-P REGEXP-P)" t) (autoload 'find-tag "etags" "\ Find tag (in current tags table) whose name contains TAGNAME. Select the buffer containing the tag's definition, and move point there. The default for TAGNAME is the expression in the buffer around or before point. If second arg NEXT-P is t (interactively, with prefix arg), search for another tag that matches the last tagname or regexp used. When there are multiple matches for a tag, more exact matches are found first. If NEXT-P is the atom `-' (interactively, with prefix arg that is a negative number or just \\[negative-argument]), pop back to the previous tag gone to. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp. A marker representing the point when this command is invoked is pushed onto a ring and may be popped back to with \\[pop-tag-mark]. Contrast this with the ring of marks gone to by the command. See documentation of variable `tags-file-name'. (fn TAGNAME &optional NEXT-P REGEXP-P)" t) (make-obsolete 'find-tag 'xref-find-definitions "25.1") (autoload 'find-tag-other-window "etags" "\ Find tag (in current tags table) whose name contains TAGNAME. Select the buffer containing the tag's definition in another window, and move point there. The default for TAGNAME is the expression in the buffer around or before point. If second arg NEXT-P is t (interactively, with prefix arg), search for another tag that matches the last tagname or regexp used. When there are multiple matches for a tag, more exact matches are found first. If NEXT-P is negative (interactively, with prefix arg that is a negative number or just \\[negative-argument]), pop back to the previous tag gone to. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp. A marker representing the point when this command is invoked is pushed onto a ring and may be popped back to with \\[pop-tag-mark]. Contrast this with the ring of marks gone to by the command. See documentation of variable `tags-file-name'. (fn TAGNAME &optional NEXT-P REGEXP-P)" t) (make-obsolete 'find-tag-other-window 'xref-find-definitions-other-window "25.1") (autoload 'find-tag-other-frame "etags" "\ Find tag (in current tags table) whose name contains TAGNAME. Select the buffer containing the tag's definition in another frame, and move point there. The default for TAGNAME is the expression in the buffer around or before point. If second arg NEXT-P is t (interactively, with prefix arg), search for another tag that matches the last tagname or regexp used. When there are multiple matches for a tag, more exact matches are found first. If NEXT-P is negative (interactively, with prefix arg that is a negative number or just \\[negative-argument]), pop back to the previous tag gone to. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp. A marker representing the point when this command is invoked is pushed onto a ring and may be popped back to with \\[pop-tag-mark]. Contrast this with the ring of marks gone to by the command. See documentation of variable `tags-file-name'. (fn TAGNAME &optional NEXT-P)" t) (make-obsolete 'find-tag-other-frame 'xref-find-definitions-other-frame "25.1") (autoload 'find-tag-regexp "etags" "\ Find tag (in current tags table) whose name matches REGEXP. Select the buffer containing the tag's definition and move point there. If second arg NEXT-P is t (interactively, with prefix arg), search for another tag that matches the last tagname or regexp used. When there are multiple matches for a tag, more exact matches are found first. If NEXT-P is negative (interactively, with prefix arg that is a negative number or just \\[negative-argument]), pop back to the previous tag gone to. If third arg OTHER-WINDOW is non-nil, select the buffer in another window. A marker representing the point when this command is invoked is pushed onto a ring and may be popped back to with \\[pop-tag-mark]. Contrast this with the ring of marks gone to by the command. See documentation of variable `tags-file-name'. (fn REGEXP &optional NEXT-P OTHER-WINDOW)" t) (make-obsolete 'find-tag-regexp 'xref-find-apropos "25.1") (defalias 'pop-tag-mark 'xref-go-back) (defalias 'next-file 'tags-next-file) (autoload 'tags-next-file "etags" "\ Select next file among files in current tags table. A first argument of t (prefix arg, if interactive) initializes to the beginning of the list of files in the tags table. If the argument is neither nil nor t, it is evalled to initialize the list of files. Non-nil second argument NOVISIT means use a temporary buffer to save time and avoid uninteresting warnings. Value is nil if the file was already visited; if the file was newly read in, the value is the filename. (fn &optional INITIALIZE NOVISIT)" t) (autoload 'tags-loop-continue "etags" "\ Continue last \\[tags-search] or \\[tags-query-replace] command. Used noninteractively with non-nil argument to begin such a command (the argument is passed to `next-file', which see). (fn &optional FIRST-TIME)" t) (make-obsolete 'tags-loop-continue 'fileloop-continue "27.1") (autoload 'tags-search "etags" "\ Search through all files listed in tags table for match for REGEXP. Stops when a match is found. To continue searching for next match, use the command \\[fileloop-continue]. If FILES if non-nil should be a list or an iterator returning the files to search. The search will be restricted to these files. Also see the documentation of the `tags-file-name' variable. (fn REGEXP &optional FILES)" t) (autoload 'tags-query-replace "etags" "\ Do `query-replace-regexp' of FROM with TO on all files listed in tags table. Third arg DELIMITED (prefix arg) means replace only word-delimited matches. If you exit (\\[keyboard-quit], RET or q), you can resume the query replace with the command \\[fileloop-continue]. As each match is found, the user must type a character saying what to do with it. Type SPC or `y' to replace the match, DEL or `n' to skip and go to the next match. For more directions, type \\[help-command] at that time. For non-interactive use, this is superseded by `fileloop-initialize-replace'. (fn FROM TO &optional DELIMITED FILES)" t) (set-advertised-calling-convention 'tags-query-replace '(from to &optional delimited) '"27.1") (autoload 'list-tags "etags" "\ Display list of tags in file FILE. This searches only the first table in the list, and no included tables. FILE should be as it appeared in the `etags' command, usually without a directory specification. If called interactively, FILE defaults to the file name of the current buffer. (fn FILE &optional NEXT-MATCH)" t) (autoload 'tags-apropos "etags" "\ Display list of all tags in tags table REGEXP matches. (fn REGEXP)" t) (make-obsolete 'tags-apropos 'xref-find-apropos "25.1") (autoload 'select-tags-table "etags" "\ Select a tags table file from a menu of those you have already used. The list of tags tables to select from is stored in `tags-table-set-list'; see the doc of that variable if you want to add names to the list." t) (autoload 'complete-tag "etags" "\ Perform tags completion on the text around point. Completes to the set of names listed in the current tags table. The string to complete is chosen in the same way as the default for \\[find-tag] (which see)." t) (autoload 'etags--xref-backend "etags") (register-definition-prefixes "etags" '("default-tags-table-function" "etags-" "file-of-tag" "find-tag-" "goto-tag-location-function" "initialize-new-tags-table" "last-tag" "list-tags-function" "select-tags-table-" "snarf-tag-function" "tag" "verify-tags-table-function")) ;;; Generated autoloads from progmodes/etags-regen.el (put 'etags-regen-regexp-alist 'safe-local-variable (lambda (value) (and (listp value) (seq-every-p (lambda (group) (and (consp group) (listp (car group)) (listp (cdr group)) (seq-every-p #'stringp (car group)) (seq-every-p #'stringp (cdr group)))) value)))) (put 'etags-regen-file-extensions 'safe-local-variable (lambda (value) (and (listp value) (seq-every-p #'stringp value)))) (put 'etags-regen-ignores 'safe-local-variable (lambda (value) (and (listp value) (seq-every-p #'stringp value)))) (defvar etags-regen-mode nil "\ Non-nil if Etags-Regen mode is enabled. See the `etags-regen-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `etags-regen-mode'.") (custom-autoload 'etags-regen-mode "etags-regen" nil) (autoload 'etags-regen-mode "etags-regen" "\ Minor mode to automatically generate and update tags tables. This minor mode generates the tags table automatically based on the current project configuration, and later updates it as you edit the files and save the changes. If you select a tags table manually (for example, using \\[visit-tags-table]), then this mode will be effectively disabled for the entire session. Use \\[tags-reset-tags-tables] to countermand the effect of a previous \\[visit-tags-table]. This is a global minor mode. If called interactively, toggle the `Etags-Regen mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='etags-regen-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "etags-regen" '("etags-regen-")) ;;; Generated autoloads from language/ethio-util.el (autoload 'setup-ethiopic-environment-internal "ethio-util") (autoload 'ethio-sera-to-fidel-buffer "ethio-util" "\ Convert the current buffer from SERA to FIDEL. FIDEL is the Amharic alphabet; SERA (System for Ethiopic Representation in ASCII) is the Latin representation of Ethiopic script. The variable `ethio-primary-language' specifies the primary language and `ethio-secondary-language' specifies the secondary. If the 1st optional argument SECONDARY is non-nil, assume the buffer begins with the secondary language; otherwise with the primary language. If the 2nd optional argument FORCE is non-nil, perform conversion even if the buffer is read-only. See also the descriptions of the variables `ethio-use-colon-for-colon' and `ethio-use-three-dot-question'. (fn &optional SECONDARY FORCE)" t) (autoload 'ethio-sera-to-fidel-region "ethio-util" "\ Convert the characters in region from SERA to FIDEL. FIDEL is the Amharic alphabet; SERA (System for Ethiopic Representation in ASCII) is the Latin representation of Ethiopic script. The variable `ethio-primary-language' specifies the primary language and `ethio-secondary-language' specifies the secondary. If the 3rd argument SECONDARY is given and non-nil, assume the region begins with the secondary language; otherwise with the primary language. If the 4th argument FORCE is given and non-nil, perform conversion even if the buffer is read-only. See also the descriptions of the variables `ethio-use-colon-for-colon' and `ethio-use-three-dot-question'. (fn BEGIN END &optional SECONDARY FORCE)" t) (autoload 'ethio-sera-to-fidel-marker "ethio-util" "\ Convert regions surrounded by \"\" and \"\" from SERA to FIDEL. FIDEL is the Amharic alphabet; SERA (System for Ethiopic Representation in ASCII) is the Latin representation of Ethiopic script. Assume that each region begins with `ethio-primary-language'. The markers \"\" and \"\" themselves are not deleted. (fn &optional FORCE)" t) (autoload 'ethio-fidel-to-sera-buffer "ethio-util" "\ Convert all the FIDEL characters in the current buffer to the SERA format. FIDEL is the Amharic alphabet; SERA (System for Ethiopic Representation in ASCII) is the Latin representation of Ethiopic script. The variable `ethio-primary-language' specifies the primary language and `ethio-secondary-language' specifies the secondary. If the 1st optional argument SECONDARY is non-nil, try to convert the region so that it begins with the secondary language; otherwise with the primary language. If the 2nd optional argument FORCE is non-nil, convert even if the buffer is read-only. See also the descriptions of the variables `ethio-use-colon-for-colon', `ethio-use-three-dot-question', `ethio-quote-vowel-always' and `ethio-numeric-reduction'. (fn &optional SECONDARY FORCE)" t) (autoload 'ethio-fidel-to-sera-region "ethio-util" "\ Convert all the FIDEL characters in the region to the SERA format. FIDEL is the Amharic alphabet; SERA (System for Ethiopic Representation in ASCII) is the Latin representation of Ethiopic script. The variable `ethio-primary-language' specifies the primary language and `ethio-secondary-language' specifies the secondary. If the 3rd argument SECONDARY is given and non-nil, convert the region so that it begins with the secondary language; otherwise with the primary language. If the 4th argument FORCE is given and non-nil, convert even if the buffer is read-only. See also the descriptions of the variables `ethio-use-colon-for-colon', `ethio-use-three-dot-question', `ethio-quote-vowel-always' and `ethio-numeric-reduction'. (fn BEGIN END &optional SECONDARY FORCE)" t) (autoload 'ethio-fidel-to-sera-marker "ethio-util" "\ Convert the regions surrounded by \"\" and \"\" from FIDEL to SERA. FIDEL is the Amharic alphabet; SERA (System for Ethiopic Representation in ASCII) is the Latin representation of Ethiopic script. The markers \"\" and \"\" themselves are not deleted. (fn &optional FORCE)" t) (autoload 'ethio-modify-vowel "ethio-util" "\ Modify the vowel of the FIDEL that is under the cursor. FIDEL is the Amharic/Ethiopic alphabet." t) (autoload 'ethio-replace-space "ethio-util" "\ Replace ASCII spaces with Ethiopic word separators in the region. In the specified region, replace word separators surrounded by two Ethiopic characters, depending on the first argument CH, which should be 1, 2, or 3. If CH = 1, word separator will be replaced with an ASCII space. If CH = 2, with two ASCII spaces. If CH = 3, with the Ethiopic colon-like word separator. The 2nd and 3rd arguments BEGIN and END specify the region. (fn CH BEGIN END)" t) (autoload 'ethio-input-special-character "ethio-util" "\ This function is deprecated. (fn ARG)" t) (autoload 'ethio-fidel-to-tex-buffer "ethio-util" "\ Convert each FIDEL characters in the current buffer into a fidel-tex command. FIDEL is the Amharic/Ethiopic alphabet." t) (autoload 'ethio-tex-to-fidel-buffer "ethio-util" "\ Convert fidel-tex commands in the current buffer into FIDEL chars. FIDEL is the Amharic/Ethiopic alphabet." t) (autoload 'ethio-fidel-to-java-buffer "ethio-util" "\ Convert Ethiopic characters in the buffer into the Java escape sequences. Each escape sequence is of the form \\uXXXX, where XXXX is the character's codepoint (in hex) in Unicode. If `ethio-java-save-lowercase' is non-nil, use [0-9a-f]. Otherwise, [0-9A-F].") (autoload 'ethio-java-to-fidel-buffer "ethio-util" "\ Convert the Java escape sequences in the buffer into Ethiopic characters.") (autoload 'ethio-find-file "ethio-util" "\ Transliterate file content into Ethiopic depending on filename suffix. If the file-name extension is \".sera\", convert from SERA to FIDEL. If the file-name extension is \".html\", convert regions enclosed by \"..\" from SERA to FIDEL. If the file-name extension is \".tex\", convert fidel-tex commands to FIDEL characters. If the file-name extension is \".java\", convert Java escape sequences to FIDEL characters. FIDEL is the Amharic alphabet; SERA (System for Ethiopic Representation in ASCII) is the Latin representation of Ethiopic script.") (autoload 'ethio-write-file "ethio-util" "\ Transliterate Ethiopic characters to ASCII depending on the file extension. If the file-name extension is \".sera\", convert from FIDEL to SERA. If the file-name extension is \".html\", convert FIDEL characters to SERA regions enclosed by \"..\". If the file-name extension is \".tex\", convert FIDEL characters to fidel-tex commands. If the file-name extension is \".java\", convert FIDEL characters to Java escape sequences. FIDEL is the Amharic alphabet; SERA (System for Ethiopic Representation in ASCII) is the Latin representation of Ethiopic script.") (autoload 'ethio-insert-ethio-space "ethio-util" "\ Insert the Ethiopic word delimiter (the colon-like character). With ARG, insert that many delimiters. (fn ARG)" t) (autoload 'ethio-composition-function "ethio-util" "\ (fn POS TO FONT-OBJECT STRING DIRECTION)") (register-definition-prefixes "ethio-util" '("ethio-" "exit-ethiopic-environment")) ;;; Generated autoloads from leim/quail/ethiopic.el (register-definition-prefixes "quail/ethiopic" '("ethio-select-a-translation")) ;;; Generated autoloads from net/eudc.el (autoload 'eudc-set-server "eudc" "\ Set the directory server to SERVER using PROTOCOL. Unless NO-SAVE is non-nil, the server is saved as the default server for future sessions. (fn SERVER PROTOCOL &optional NO-SAVE)" t) (autoload 'eudc-get-email "eudc" "\ Get the email field of NAME from the directory server. If ERROR is non-nil, report an error if there is none. (fn NAME &optional ERROR)" t) (autoload 'eudc-get-phone "eudc" "\ Get the phone field of NAME from the directory server. If ERROR is non-nil, report an error if there is none. (fn NAME &optional ERROR)" t) (autoload 'eudc-expand-try-all "eudc" "\ Wrap `eudc-expand-inline' with a prefix argument. If TRY-ALL-SERVERS -- the prefix argument when called interactively -- is non-nil, collect results from all servers. If TRY-ALL-SERVERS is nil, do not try subsequent servers after one server returns any match. (fn &optional TRY-ALL-SERVERS)" t) (autoload 'eudc-expand-inline "eudc" "\ Query the directory server, and expand the query string before point. The query string consists of the buffer substring from the point back to the preceding comma, colon or beginning of line. The variable `eudc-inline-query-format' controls how to associate the individual inline query words with directory attribute names. After querying the server for the given string, the expansion specified by `eudc-inline-expansion-format' is inserted in the buffer at point. If SAVE-QUERY-AS-KILL is non-nil, then save the pre-expansion text to the kill ring. `eudc-expansion-save-query-as-kill' being non-nil inverts the meaning of SAVE-QUERY-AS-KILL. Multiple servers can be tried with the same query until one finds a match, see `eudc-inline-expansion-servers'. If TRY-ALL-SERVERS is non-nil, collect results from all servers. (fn &optional SAVE-QUERY-AS-KILL TRY-ALL-SERVERS)" t) (autoload 'eudc-format-inline-expansion-result "eudc" "\ Format a query result according to `eudc-inline-expansion-format'. (fn RES QUERY-ATTRS)") (autoload 'eudc-query-with-words "eudc" "\ Query the directory server, and return the matching responses. The variable `eudc-inline-query-format' controls how to associate the individual QUERY-WORDS with directory attribute names. After querying the server for the given string, the expansion specified by `eudc-inline-expansion-format' is applied to the matches before returning them. Multiple servers can be tried with the same query until one finds a match, see `eudc-inline-expansion-servers'. When TRY-ALL-SERVERS is non-nil, keep collecting results from subsequent servers after the first match. (fn QUERY-WORDS &optional TRY-ALL-SERVERS)") (autoload 'eudc-query-form "eudc" "\ Display a form to query the directory server. If given a non-nil argument GET-FIELDS-FROM-SERVER, the function first queries the server for the existing fields and displays a corresponding form. (fn &optional GET-FIELDS-FROM-SERVER)" t) (autoload 'eudc-load-eudc "eudc" "\ Load the Emacs Unified Directory Client. This does nothing except loading eudc by autoload side-effect." t) (defvar eudc-tools-menu (let ((map (make-sparse-keymap "Directory Servers"))) (define-key map [phone] `(menu-item ,(purecopy "Get Phone") eudc-get-phone :help ,(purecopy "Get the phone field of name from the directory server"))) (define-key map [email] `(menu-item ,(purecopy "Get Email") eudc-get-email :help ,(purecopy "Get the email field of NAME from the directory server"))) (define-key map [separator-eudc-email] menu-bar-separator) (define-key map [expand-inline] `(menu-item ,(purecopy "Expand Inline Query") eudc-expand-inline :help ,(purecopy "Query the directory server, and expand the query string before point"))) (define-key map [query] `(menu-item ,(purecopy "Query with Form") eudc-query-form :help ,(purecopy "Display a form to query the directory server"))) (define-key map [separator-eudc-query] menu-bar-separator) (define-key map [new] `(menu-item ,(purecopy "New Server") eudc-set-server :help ,(purecopy "Set the directory server to SERVER using PROTOCOL"))) (define-key map [load] `(menu-item ,(purecopy "Load Hotlist of Servers") eudc-load-eudc :help ,(purecopy "Load the Emacs Unified Directory Client"))) map)) (fset 'eudc-tools-menu (symbol-value 'eudc-tools-menu)) (register-definition-prefixes "eudc" '("eudc-")) ;;; Generated autoloads from net/eudc-bob.el (autoload 'eudc-display-generic-binary "eudc-bob" "\ Display a button for unidentified binary DATA. (fn DATA)") (autoload 'eudc-display-url "eudc-bob" "\ Display URL and make it clickable. (fn URL)") (autoload 'eudc-display-mail "eudc-bob" "\ Display e-mail address and make it clickable. (fn MAIL)") (autoload 'eudc-display-sound "eudc-bob" "\ Display a button to play the sound DATA. (fn DATA)") (autoload 'eudc-display-jpeg-inline "eudc-bob" "\ Display the JPEG DATA inline at point if possible. (fn DATA)") (autoload 'eudc-display-jpeg-as-button "eudc-bob" "\ Display a button for the JPEG DATA. (fn DATA)") (register-definition-prefixes "eudc-bob" '("eudc-bob-")) ;;; Generated autoloads from net/eudc-capf.el (autoload 'eudc-capf-complete "eudc-capf" "\ Email address completion function for `completion-at-point-functions'. This function checks whether the current major mode is one of the modes listed in `eudc-capf-modes', and whether point is on a line with a message header listing email recipients, that is, a line whose beginning matches `message-email-recipient-header-regexp', and, if the check succeeds, searches for records matching the words before point. The return value is either nil when no match is found, or a completion table as required for functions listed in `completion-at-point-functions'.") (autoload 'eudc-capf-message-expand-name "eudc-capf" "\ Email address completion function for `message-completion-alist'. When this function is added to `message-completion-alist', replacing any existing entry for `message-expand-name' there, with an appropriate regular expression such as for example `message-email-recipient-header-regexp', then EUDC will be queried for email addresses, and the results delivered to `completion-at-point'.") (register-definition-prefixes "eudc-capf" '("eudc-capf-modes")) ;;; Generated autoloads from net/eudc-export.el (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ Insert record at point into the BBDB database. This function can only be called from a directory query result buffer." t) (autoload 'eudc-try-bbdb-insert "eudc-export" "\ Call `eudc-insert-record-at-point-into-bbdb' if on a record." t) (register-definition-prefixes "eudc-export" '("eudc-")) ;;; Generated autoloads from net/eudc-hotlist.el (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ Edit the hotlist of directory servers in a specialized buffer." t) (register-definition-prefixes "eudc-hotlist" '("eudc-hotlist-")) ;;; Generated autoloads from net/eudc-vars.el (register-definition-prefixes "eudc-vars" '("eudc-")) ;;; Generated autoloads from net/eudcb-bbdb.el (register-definition-prefixes "eudcb-bbdb" '("eudc-bbdb-")) ;;; Generated autoloads from net/eudcb-ecomplete.el (autoload 'eudc-ecomplete-query-internal "eudcb-ecomplete" "\ Query `ecomplete' with QUERY. QUERY is a list of cons cells (ATTR . VALUE). Since `ecomplete' does not provide attributes in the usual sense, the back-end-specific attribute names in `eudc-ecomplete-attributes-translation-alist' are used as the KEY (that is, the \"type\" of match) when looking for matches in `ecomplete-database'. RETURN-ATTRS is ignored. (fn QUERY &optional RETURN-ATTRS)") (register-definition-prefixes "eudcb-ecomplete" '("eudc-ecomplete-attributes-translation-alist")) ;;; Generated autoloads from net/eudcb-ldap.el (register-definition-prefixes "eudcb-ldap" '("eudc-")) ;;; Generated autoloads from net/eudcb-mab.el (register-definition-prefixes "eudcb-mab" '("eudc-")) ;;; Generated autoloads from net/eudcb-macos-contacts.el (register-definition-prefixes "eudcb-macos-contacts" '("eudc-macos-contacts-")) ;;; Generated autoloads from net/eudcb-mailabbrev.el (autoload 'eudc-mailabbrev-query-internal "eudcb-mailabbrev" "\ Query `mailabbrev' with QUERY. QUERY is a list of cons cells (ATTR . VALUE). Since `mailabbrev' does not provide attributes in the usual sense, only the email, name, and firstname attributes in the QUERY are considered, and their values are matched against the alias names in the mailrc file. When a mailrc alias is a distribution list, that is it expands to more that one email address, the individual recipient specifications are formatted using `eudc-rfc5322-make-address', and returned as a comma-separated list in the email address attribute. RETURN-ATTRS is a list of attributes to return, defaulting to `eudc-default-return-attributes'. (fn QUERY &optional RETURN-ATTRS)") ;;; Generated autoloads from emacs-lisp/ewoc.el (autoload 'ewoc-create "ewoc" "\ Create an empty ewoc. The ewoc will be inserted in the current buffer at the current position. PRETTY-PRINTER should be a function that takes one argument, an element, and inserts a string representing it in the buffer (at point). The string PRETTY-PRINTER inserts may be empty or span several lines. The PRETTY-PRINTER should use `insert', and not `insert-before-markers'. Optional second and third arguments HEADER and FOOTER are strings, possibly empty, that will always be present at the top and bottom, respectively, of the ewoc. Normally, a newline is automatically inserted after the header, the footer and every node's printed representation. Optional fourth arg NOSEP non-nil inhibits this. (fn PRETTY-PRINTER &optional HEADER FOOTER NOSEP)") (register-definition-prefixes "ewoc" '("ewoc-")) ;;; Generated autoloads from net/eww.el (defvar eww-suggest-uris '(eww-links-at-point thing-at-point-url-at-point eww-current-url eww-bookmark-urls) "\ List of functions called to form the list of default URIs for `eww'. Each of the elements is a function returning either a string or a list of strings. The results will be joined into a single list with duplicate entries (if any) removed.") (custom-autoload 'eww-suggest-uris "eww" t) (autoload 'eww-browse "eww" "\ Function to be run to parse command line URLs. This is meant to be used for MIME handlers or command line use. Setting the handler for \"text/x-uri;\" to \"emacs -f eww-browse %u\" will then start up Emacs and call eww to browse the url. This can also be used on the command line directly: emacs -f eww-browse https://gnu.org will start Emacs and browse the GNU web site." t) (autoload 'eww "eww" "\ Fetch URL and render the page. If the input doesn't look like an URL or a domain name, the word(s) will be searched for via `eww-search-prefix'. If NEW-BUFFER is non-nil (interactively, the prefix arg), use a new buffer instead of reusing the default EWW buffer. If BUFFER, the data to be rendered is in that buffer. In that case, this function doesn't actually fetch URL. BUFFER will be killed after rendering. For more information, see Info node `(eww) Top'. (fn URL &optional NEW-BUFFER BUFFER)" t) (defalias 'browse-web 'eww) (autoload 'eww-open-file "eww" "\ Render FILE using EWW. If NEW-BUFFER is non-nil (interactively, the prefix arg), use a new buffer instead of reusing the default EWW buffer. (fn FILE &optional NEW-BUFFER)" t) (autoload 'eww-search-words "eww" "\ Search the web for the text in the region. If region is active (and not whitespace), search the web for the text between region beginning and end. Else, prompt the user for a search string. See the variable `eww-search-prefix' for the search engine used." t) (autoload 'eww-mode "eww" "\ Mode for browsing the web. \\{eww-mode-map} (fn)" t) (autoload 'eww-browse-url "eww" "\ Ask the EWW browser to load URL. Interactively, if the variable `browse-url-new-window-flag' is non-nil, loads the document in a new buffer tab on the window tab-line. A non-nil prefix argument reverses the effect of `browse-url-new-window-flag'. If `tab-bar-mode' is enabled, then whenever a document would otherwise be loaded in a new buffer, it is loaded in a new tab in the tab-bar on an existing frame. See more options in `eww-browse-url-new-window-is-tab'. Non-interactively, this uses the optional second argument NEW-WINDOW instead of `browse-url-new-window-flag'. (fn URL &optional NEW-WINDOW)") (autoload 'eww-list-bookmarks "eww" "\ Display the bookmarks." t) (autoload 'eww-bookmark-jump "eww" "\ Default bookmark handler for EWW buffers. (fn BOOKMARK)") (register-definition-prefixes "eww" '("eww-")) ;;; Generated autoloads from progmodes/executable.el (autoload 'executable-command-find-posix-p "executable" "\ Check if PROGRAM handles arguments Posix-style. If PROGRAM is non-nil, use that instead of \"find\". (fn &optional PROGRAM)") (autoload 'executable-interpret "executable" "\ Run script with user-specified args, and collect output in a buffer. While script runs asynchronously, you can use the \\[next-error] command to find the next error. The buffer is also in `comint-mode' and `compilation-shell-minor-mode', so that you can answer any prompts. (fn COMMAND)" t) (autoload 'executable-set-magic "executable" "\ Set this buffer's interpreter to INTERPRETER with optional ARGUMENT. The variables `executable-magicless-file-regexp', `executable-prefix-env', `executable-insert', `executable-query' and `executable-chmod' control when and how magic numbers are inserted or replaced and scripts made executable. (fn INTERPRETER &optional ARGUMENT NO-QUERY-FLAG INSERT-FLAG)" t) (autoload 'executable-make-buffer-file-executable-if-script-p "executable" "\ Make file executable according to umask if not already executable. If file already has any execute bits set at all, do not change existing file modes.") (register-definition-prefixes "executable" '("executable-")) ;;; Generated autoloads from image/exif.el (register-definition-prefixes "exif" '("exif-")) ;;; Generated autoloads from expand.el (autoload 'expand-add-abbrevs "expand" "\ Add a list of abbreviations to abbrev table TABLE. ABBREVS is a list of abbrev definitions; each abbrev description entry has the form (ABBREV EXPANSION ARG). ABBREV is the abbreviation to replace. EXPANSION is the replacement string or a function which will make the expansion. For example, you could use the DMacros or skeleton packages to generate such functions. ARG is an optional argument which can be a number or a list of numbers. If ARG is a number, point is placed ARG chars from the beginning of the expanded text. If ARG is a list of numbers, point is placed according to the first member of the list, but you can visit the other specified positions cyclically with the functions `expand-jump-to-previous-slot' and `expand-jump-to-next-slot'. If ARG is omitted, point is placed at the end of the expanded text. (fn TABLE ABBREVS)") (autoload 'expand-abbrev-hook "expand" "\ Abbrev hook used to do the expansion job of expand abbrevs. See `expand-add-abbrevs'. Value is non-nil if expansion was done.") (autoload 'expand-jump-to-previous-slot "expand" "\ Move the cursor to the previous slot in the last abbrev expansion. This is used only in conjunction with `expand-add-abbrevs'." t) (autoload 'expand-jump-to-next-slot "expand" "\ Move the cursor to the next slot in the last abbrev expansion. This is used only in conjunction with `expand-add-abbrevs'." t) (define-key abbrev-map "p" 'expand-jump-to-previous-slot) (define-key abbrev-map "n" 'expand-jump-to-next-slot) (register-definition-prefixes "expand" '("expand-")) ;;; Generated autoloads from cedet/srecode/expandproto.el (register-definition-prefixes "srecode/expandproto" '("srecode-")) ;;; Generated autoloads from external-completion.el (push (purecopy '(external-completion 0 1)) package--builtin-versions) (register-definition-prefixes "external-completion" '("external-completion-")) ;;; Generated autoloads from cedet/srecode/extract.el (register-definition-prefixes "srecode/extract" '("srecode-extract")) ;;; Generated autoloads from ezimage.el (register-definition-prefixes "ezimage" '("defezimage" "ezimage-")) ;;; Generated autoloads from progmodes/f90.el (autoload 'f90-mode "f90" "\ Major mode for editing Fortran 90,95 code in free format. For fixed format code, use `fortran-mode'. \\[f90-indent-line] indents the current line. \\[f90-indent-new-line] indents current line and creates a new indented line. \\[f90-indent-subprogram] indents the current subprogram. Type \\=`? or \\=`\\[help-command] to display a list of built-in abbrevs for F90 keywords. Key definitions: \\{f90-mode-map} Variables controlling indentation style and extra features: `f90-do-indent' Extra indentation within do blocks (default 3). `f90-if-indent' Extra indentation within if/select/where/forall blocks (default 3). `f90-type-indent' Extra indentation within type/enum/interface/block-data blocks (default 3). `f90-program-indent' Extra indentation within program/module/subroutine/function blocks (default 2). `f90-associate-indent' Extra indentation within associate blocks (default 2). `f90-critical-indent' Extra indentation within critical/block blocks (default 2). `f90-continuation-indent' Extra indentation applied to continuation lines (default 5). `f90-comment-region' String inserted by function \\[f90-comment-region] at start of each line in region (default \"!!!$\"). `f90-indented-comment-re' Regexp determining the type of comment to be intended like code (default \"!\"). `f90-directive-comment-re' Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented (default \"!hpf\\\\$\"). `f90-break-delimiters' Regexp holding list of delimiters at which lines may be broken (default \"[-+*/><=,% \\t]\"). `f90-break-before-delimiters' Non-nil causes `f90-do-auto-fill' to break lines before delimiters (default t). `f90-beginning-ampersand' Automatic insertion of `&' at beginning of continuation lines (default t). `f90-smart-end' From an END statement, check and fill the end using matching block start. Allowed values are `blink', `no-blink', and nil, which determine whether to blink the matching beginning (default `blink'). `f90-auto-keyword-case' Automatic change of case of keywords (default nil). The possibilities are `downcase-word', `upcase-word', `capitalize-word'. `f90-leave-line-no' Do not left-justify line numbers (default nil). Turning on F90 mode calls the value of the variable `f90-mode-hook' with no args, if that value is non-nil. (fn)" t) (register-definition-prefixes "f90" '("f90-")) ;;; Generated autoloads from face-remap.el (autoload 'face-remap-add-relative "face-remap" "\ Add a face remapping entry of FACE to SPECS in the current buffer. Return a cookie which can be used to delete this remapping with `face-remap-remove-relative'. The remaining arguments, SPECS, should form a list of faces. Each list element should be either a face name or a property list of face attribute/value pairs. If more than one face is listed, that specifies an aggregate face, in the same way as in a `face' text property, except for possible priority changes noted below. The face remapping specified by SPECS takes effect alongside the remappings from other calls to `face-remap-add-relative' for the same FACE, as well as the normal definition of FACE (at lowest priority). This function tries to sort multiple remappings for the same face, so that remappings specifying relative face attributes are applied after remappings specifying absolute face attributes. The base (lowest priority) remapping may be set to something other than the normal definition of FACE via `face-remap-set-base'. (fn FACE &rest SPECS)") (autoload 'face-remap-reset-base "face-remap" "\ Set the base remapping of FACE to the normal definition of FACE. This causes the remappings specified by `face-remap-add-relative' to apply on top of the normal definition of FACE. (fn FACE)") (autoload 'face-remap-set-base "face-remap" "\ Set the base remapping of FACE in the current buffer to SPECS. This causes the remappings specified by `face-remap-add-relative' to apply on top of the face specification given by SPECS. The remaining arguments, SPECS, specify the base of the remapping. Each one of SPECS should be either a face name or a property list of face attribute/value pairs, like in a `face' text property. If SPECS is empty or a single face `eq' to FACE, call `face-remap-reset-base' to use the normal definition of FACE as the base remapping; note that this is different from SPECS containing a single value nil, which means not to inherit from the global definition of FACE at all. (fn FACE &rest SPECS)") (autoload 'text-scale-set "face-remap" "\ Set the scale factor of the default face in the current buffer to LEVEL. If LEVEL is non-zero, `text-scale-mode' is enabled, otherwise it is disabled. LEVEL is a number of steps, with 0 representing the default size. Each step scales the height of the default face by the variable `text-scale-mode-step' (a negative number decreases the height by the same amount). (fn LEVEL)" t) (autoload 'text-scale-increase "face-remap" "\ Increase the font size of the default face in current buffer by INC steps. If the new height is other than the default, `text-scale-mode' is enabled. Each step scales the height of the default face by the variable `text-scale-mode-step' (a negative number of steps decreases the height by the same amount). As a special case, an argument of 0 will remove any scaling currently active. (fn INC)" t) (autoload 'text-scale-decrease "face-remap" "\ Decrease the font size of the default face in the current buffer by DEC steps. See `text-scale-increase' for more details. (fn DEC)" t) (define-key ctl-x-map [(control ?+)] 'text-scale-adjust) (define-key ctl-x-map [(control ?-)] 'text-scale-adjust) (define-key ctl-x-map [(control ?=)] 'text-scale-adjust) (define-key ctl-x-map [(control ?0)] 'text-scale-adjust) (autoload 'text-scale-adjust "face-remap" "\ Adjust the font size in the current buffer by INC steps. Interactively, INC is the prefix numeric argument, and defaults to 1. The actual adjustment made depends on the final component of the keybinding used to invoke the command, with all modifiers removed: \\`+', \\`=' Increase font size in current buffer by one step \\`-' Decrease font size in current buffer by one step \\`0' Reset the font size to the global default After adjusting, continue to read input events and further adjust the font size as long as the input event (with all modifiers removed) is one of the above characters. Each step scales the height of the default face by the factor that is the value of `text-scale-mode-step' (a negative number of steps decreases the height by that factor). As a special case, an argument of 0 will remove any scaling currently active, thus resetting the font size to the original value. This command is a special-purpose wrapper around the `text-scale-increase' command which makes repetition convenient even when it is bound in a non-top-level keymap. For binding in a top-level keymap, `text-scale-increase' or `text-scale-decrease' may be more appropriate. Most faces are affected by these font size changes, but not faces that have an explicit `:height' setting. The two exceptions to this are the `default' and `header-line' faces: they will both be scaled even if they have an explicit `:height' setting. See also the related command `global-text-scale-adjust'. Unlike that command, which scales the font size with a increment, `text-scale-adjust' scales the font size with a factor, `text-scale-mode-step'. With a small `text-scale-mode-step' factor, the two commands behave similarly. (fn INC)" t) (define-key global-map [pinch] 'text-scale-pinch) (autoload 'text-scale-pinch "face-remap" "\ Adjust the height of the default face by the scale in the pinch event EVENT. (fn EVENT)" t) (define-key ctl-x-map [(control meta ?+)] 'global-text-scale-adjust) (define-key ctl-x-map [(control meta ?=)] 'global-text-scale-adjust) (define-key ctl-x-map [(control meta ?-)] 'global-text-scale-adjust) (define-key ctl-x-map [(control meta ?0)] 'global-text-scale-adjust) (autoload 'global-text-scale-adjust "face-remap" "\ Change (a.k.a. \"adjust\") the font size of all faces by INCREMENT. Interactively, INCREMENT is the prefix numeric argument, and defaults to 1. Positive values of INCREMENT increase the font size, negative values decrease it. When you invoke this command, it performs the initial change of the font size, and after that allows further changes by typing one of the following keys immediately after invoking the command: \\`+', \\`=' Globally increase the height of the default face \\`-' Globally decrease the height of the default face \\`0' Globally reset the height of the default face (The change of the font size produced by these keys depends on the final component of the key sequence, with all modifiers removed.) Buffer-local face adjustments have higher priority than global face adjustments. The variable `global-text-scale-adjust-resizes-frames' controls whether the frames are resized to keep the same number of lines and characters per line when the font size is adjusted. See also the related command `text-scale-adjust'. Unlike that command, which scales the font size with a factor, `global-text-scale-adjust' scales the font size with an increment. (fn INCREMENT)" t) (autoload 'buffer-face-mode "face-remap" "\ Minor mode for a buffer-specific default face. When enabled, the face specified by the variable `buffer-face-mode-face' is used to display the buffer text. This is a minor mode. If called interactively, toggle the `Buffer-Face mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `buffer-face-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'buffer-face-set "face-remap" "\ Enable `buffer-face-mode', using face specs SPECS. Each argument in SPECS should be a face, i.e. either a face name or a property list of face attributes and values. If more than one face is listed, that specifies an aggregate face, like in a `face' text property. If SPECS is nil or omitted, disable `buffer-face-mode'. This function makes the variable `buffer-face-mode-face' buffer local, and sets it to FACE. (fn &rest SPECS)" t) (autoload 'buffer-face-toggle "face-remap" "\ Toggle `buffer-face-mode', using face specs SPECS. Each argument in SPECS should be a face, i.e. either a face name or a property list of face attributes and values. If more than one face is listed, that specifies an aggregate face, like in a `face' text property. If `buffer-face-mode' is already enabled, and is currently using the face specs SPECS, then it is disabled; if `buffer-face-mode' is disabled, or is enabled and currently displaying some other face, then is left enabled, but the face changed to reflect SPECS. This function will make the variable `buffer-face-mode-face' buffer local, and set it to SPECS. (fn &rest SPECS)" t) (autoload 'variable-pitch-mode "face-remap" "\ Variable-pitch default-face mode. An interface to `buffer-face-mode' which uses the `variable-pitch' face. Besides the choice of face, it is the same as `buffer-face-mode'. (fn &optional ARG)" t) (register-definition-prefixes "face-remap" '("buffer-face-mode-" "face-" "global-text-scale-adjust-" "internal-lisp-face-attributes" "text-scale-")) ;;; Generated autoloads from facemenu.el (autoload 'facemenu-menu "facemenu" nil nil 'keymap) (define-key global-map [C-down-mouse-2] 'facemenu-menu) (autoload 'list-colors-display "facemenu" "\ Display names of defined colors, and show what they look like. If the optional argument LIST is non-nil, it should be a list of colors to display. Otherwise, this command computes a list of colors that the current display can handle. Customize `list-colors-sort' to change the order in which colors are shown. Type \\\\[revert-buffer] after customizing `list-colors-sort' to redisplay colors in the new order. If the optional argument BUFFER-NAME is nil, it defaults to \"*Colors*\". If the optional argument CALLBACK is non-nil, it should be a function to call each time the user types RET or clicks on a color. The function should accept a single argument, the color name. (fn &optional LIST BUFFER-NAME CALLBACK)" t) (register-definition-prefixes "facemenu" '("facemenu-" "list-colors-")) ;;; Generated autoloads from emacs-lisp/faceup.el (push (purecopy '(faceup 0 0 6)) package--builtin-versions) (autoload 'faceup-view-buffer "faceup" "\ Display the faceup representation of the current buffer." t) (autoload 'faceup-write-file "faceup" "\ Save the faceup representation of the current buffer to the file FILE-NAME. Unless a name is given, the file will be named xxx.faceup, where xxx is the file name associated with the buffer. If optional second arg CONFIRM is non-nil, this function asks for confirmation before overwriting an existing file. Interactively, confirmation is required unless you supply a prefix argument. (fn &optional FILE-NAME CONFIRM)" t) (autoload 'faceup-render-view-buffer "faceup" "\ Convert BUFFER containing Faceup markup to a new buffer and display it. (fn &optional BUFFER)" t) (autoload 'faceup-clean-buffer "faceup" "\ Remove faceup markup from buffer." t) (autoload 'faceup-defexplainer "faceup" "\ Define an Ert explainer function for FUNCTION. FUNCTION must return an explanation when the test fails and `faceup-test-explain' is set. (fn FUNCTION)" nil t) (register-definition-prefixes "faceup" '("faceup-")) ;;; Generated autoloads from cedet/semantic/analyze/fcn.el (register-definition-prefixes "semantic/analyze/fcn" '("semantic-analyze-")) ;;; Generated autoloads from mail/feedmail.el (push (purecopy '(feedmail 11)) package--builtin-versions) (autoload 'feedmail-send-it "feedmail" "\ Send the current mail buffer using the Feedmail package. This is a suitable value for `send-mail-function'. It can be used with various lower-level mechanisms to provide features such as queueing.") (autoload 'feedmail-run-the-queue-no-prompts "feedmail" "\ Like `feedmail-run-the-queue', but suppress confirmation prompts. (fn &optional ARG)" t) (autoload 'feedmail-run-the-queue-global-prompt "feedmail" "\ Like `feedmail-run-the-queue', but with a global confirmation prompt. This is generally most useful if run non-interactively, since you can bail out with an appropriate answer to the global confirmation prompt. (fn &optional ARG)" t) (autoload 'feedmail-run-the-queue "feedmail" "\ Visit each message in the feedmail queue directory and send it out. Return value is a list of three things: number of messages sent, number of messages skipped, and number of non-message things in the queue (commonly backup file names and the like). (fn &optional ARG)" t) (autoload 'feedmail-queue-reminder "feedmail" "\ Perform some kind of reminder activity about queued and draft messages. Called with an optional symbol argument which says what kind of event is triggering the reminder activity. The default is `on-demand', which is what you typically would use if you were putting this in your Emacs start-up or mail hook code. Other recognized values for WHAT-EVENT (these are passed internally by feedmail): after-immediate (a message has just been sent in immediate mode) after-queue (a message has just been queued) after-draft (a message has just been placed in the draft directory) after-run (the queue has just been run, possibly sending messages) WHAT-EVENT is used as a key into the table `feedmail-queue-reminder-alist'. If the associated value is a function, it is called without arguments and is expected to perform the reminder activity. You can supply your own reminder functions by redefining `feedmail-queue-reminder-alist'. If you don't want any reminders, you can set `feedmail-queue-reminder-alist' to nil. (fn &optional WHAT-EVENT)" t) (register-definition-prefixes "feedmail" '("feedmail-")) ;;; Generated autoloads from ffap.el (defvar ffap-file-finder #'find-file "\ The command called by `find-file-at-point' to find a file.") (custom-autoload 'ffap-file-finder "ffap" t) (autoload 'ffap-next "ffap" "\ Search buffer for next file or URL, and run ffap. Optional argument BACK says to search backwards. Optional argument WRAP says to try wrapping around if necessary. Interactively: use a single prefix \\[universal-argument] to search backwards, double prefix to wrap forward, triple to wrap backwards. Actual search is done by the function `ffap-next-guess'. (fn &optional BACK WRAP)" t) (autoload 'ffap-machine-at-point "ffap" "\ Return machine name at point if it exists, or nil.") (autoload 'ffap-url-at-point "ffap" "\ Return URL from around point if it exists, or nil. Sets the variable `ffap-string-at-point-region' to the bounds of URL, if any.") (autoload 'find-file-at-point "ffap" "\ Find FILENAME, guessing a default from text around point. If `ffap-url-regexp' is not nil, the FILENAME may also be an URL. With a prefix, this command behaves exactly like `ffap-file-finder'. If `ffap-require-prefix' is set, the prefix meaning is reversed. See also the variables `ffap-dired-wildcards', `ffap-url-unwrap-local', `ffap-url-unwrap-remote', `ffap-file-name-with-spaces', and the functions `ffap-file-at-point' and `ffap-url-at-point'. (fn &optional FILENAME)" t) (defalias 'ffap 'find-file-at-point) (autoload 'ffap-menu "ffap" "\ Put up a menu of files and URLs mentioned in this buffer. Then set mark, jump to choice, and try to fetch it. The menu is cached in `ffap-menu-alist', and rebuilt by `ffap-menu-rescan'. The optional RESCAN argument (a prefix, interactively) forces a rebuild. Searches with `ffap-menu-regexp'. (fn &optional RESCAN)" t) (autoload 'ffap-at-mouse "ffap" "\ Find file or URL guessed from text around mouse click. Interactively, calls `ffap-at-mouse-fallback' if no guess is found. Return value: * if a guess string is found, return it (after finding it) * if the fallback is called, return whatever it returns * otherwise, nil (fn E)" t) (autoload 'dired-at-point "ffap" "\ Start Dired, defaulting to file at point. See `ffap'. If `dired-at-point-require-prefix' is set, the prefix meaning is reversed. (fn &optional FILENAME)" t) (autoload 'ffap-guess-file-name-at-point "ffap" "\ Try to get a file name at point. This hook is intended to be put in `file-name-at-point-functions'.") (autoload 'ffap-bindings "ffap" "\ Evaluate the forms in variable `ffap-bindings'." t) (register-definition-prefixes "ffap" '("dired-at-point-" "ffap-" "find-file-literally-at-point")) ;;; Generated autoloads from cedet/srecode/fields.el (register-definition-prefixes "srecode/fields" '("srecode-")) ;;; Generated autoloads from filecache.el (autoload 'file-cache-add-directory "filecache" "\ Add all files in DIRECTORY to the file cache. If called from Lisp with a non-nil REGEXP argument is non-nil, only add files whose names match REGEXP. (fn DIRECTORY &optional REGEXP)" t) (autoload 'file-cache-add-directory-list "filecache" "\ Add DIRECTORIES (a list of directory names) to the file cache. If called interactively, read the directory names one by one. If the optional REGEXP argument is non-nil, only files which match it will be added to the cache. Note that the REGEXP is applied to the files in each directory, not to the directory list itself. (fn DIRECTORIES &optional REGEXP)" t) (autoload 'file-cache-add-file "filecache" "\ Add FILE to the file cache. (fn FILE)" t) (autoload 'file-cache-add-directory-using-find "filecache" "\ Use the `find' command to add files to the file cache. Find is run in DIRECTORY. (fn DIRECTORY)" t) (autoload 'file-cache-add-directory-using-locate "filecache" "\ Use the `locate' command to add files to the file cache. STRING is passed as an argument to the locate command. (fn STRING)" t) (autoload 'file-cache-add-directory-recursively "filecache" "\ Add DIR and any subdirectories to the file-cache. This function does not use any external programs. If the optional REGEXP argument is non-nil, only files which match it will be added to the cache. Note that the REGEXP is applied to the files in each directory, not to the directory list itself. (fn DIR &optional REGEXP)" t) (autoload 'file-cache-minibuffer-complete "filecache" "\ Complete a filename in the minibuffer using a preloaded cache. Filecache does two kinds of substitution: it completes on names in the cache, and, once it has found a unique name, it cycles through the directories that the name is available in. With a prefix argument, the name is considered already unique; only the second substitution (directories) is done. (fn ARG)" t) (register-definition-prefixes "filecache" '("file-cache-")) ;;; Generated autoloads from fileloop.el (autoload 'fileloop-initialize "fileloop" "\ Initialize a new round of operation on several files. FILES can be either a list of file names, or an iterator (used with `iter-next') which returns a file name at each step. SCAN-FUNCTION is a function called with no argument inside a buffer and it should return non-nil if that buffer has something on which to operate. OPERATE-FUNCTION is a function called with no argument; it is expected to perform the operation on the current file buffer and when done should return non-nil to mean that we should immediately continue operating on the next file and nil otherwise. (fn FILES SCAN-FUNCTION OPERATE-FUNCTION)") (autoload 'fileloop-initialize-search "fileloop" "\ (fn REGEXP FILES CASE-FOLD)") (autoload 'fileloop-initialize-replace "fileloop" "\ Initialize a new round of query&replace on several files. FROM is a regexp and TO is the replacement to use. FILES describes the files, as in `fileloop-initialize'. CASE-FOLD can be t, nil, or `default': if it is nil, matching of FROM is case-sensitive. if it is t, matching of FROM is case-insensitive, except when `search-upper-case' is non-nil and FROM includes upper-case letters. if it is `default', the function uses the value of `case-fold-search' instead. DELIMITED if non-nil means replace only word-delimited matches. (fn FROM TO FILES CASE-FOLD &optional DELIMITED)") (register-definition-prefixes "fileloop" '("fileloop-")) ;;; Generated autoloads from filenotify.el (autoload 'file-notify-handle-event "filenotify" "\ Handle a file system monitoring event, coming from backends. If OBJECT is a filewatch event, call its callback. Otherwise, signal a `file-notify-error'. (fn OBJECT)" t) (function-put 'file-notify-handle-event 'completion-predicate #'ignore) (register-definition-prefixes "filenotify" '("file-notify-")) ;;; Generated autoloads from cedet/ede/files.el (register-definition-prefixes "ede/files" '("ede-")) ;;; Generated autoloads from files-x.el (autoload 'add-file-local-variable "files-x" "\ Add file-local VARIABLE with its VALUE to the Local Variables list. This command deletes all existing settings of VARIABLE (except `mode' and `eval') and adds a new file-local VARIABLE with VALUE to the Local Variables list. If there is no Local Variables list in the current file buffer then this function adds the first line containing the string `Local Variables:' and the last line containing the string `End:'. (fn VARIABLE VALUE &optional INTERACTIVE)" t) (autoload 'delete-file-local-variable "files-x" "\ Delete all settings of file-local VARIABLE from the Local Variables list. (fn VARIABLE &optional INTERACTIVE)" t) (autoload 'add-file-local-variable-prop-line "files-x" "\ Add file-local VARIABLE with its VALUE to the -*- line. This command deletes all existing settings of VARIABLE (except `mode' and `eval') and adds a new file-local VARIABLE with VALUE to the -*- line. If there is no -*- line at the beginning of the current file buffer then this function adds it. (fn VARIABLE VALUE &optional INTERACTIVE)" t) (autoload 'delete-file-local-variable-prop-line "files-x" "\ Delete all settings of file-local VARIABLE from the -*- line. (fn VARIABLE &optional INTERACTIVE)" t) (autoload 'add-dir-local-variable "files-x" "\ Add directory-local VARIABLE with its VALUE and MODE to .dir-locals.el. With a prefix argument, prompt for the file to modify. When called from Lisp, FILE may be the expanded name of the dir-locals file where to add VARIABLE. (fn MODE VARIABLE VALUE &optional FILE)" t) (autoload 'delete-dir-local-variable "files-x" "\ Delete all MODE settings of dir-local VARIABLE from .dir-locals.el. With a prefix argument, prompt for the file to modify. When called from Lisp, FILE may be the expanded name of the dir-locals file from where to delete VARIABLE. (fn MODE VARIABLE &optional FILE)" t) (autoload 'copy-file-locals-to-dir-locals "files-x" "\ Copy file-local variables to .dir-locals.el. With a prefix argument, prompt for the file to modify. When called from Lisp, FILE may be the expanded name of the dir-locals file where to copy the file-local variables. (fn &optional FILE)" t) (autoload 'copy-dir-locals-to-file-locals "files-x" "\ Copy directory-local variables to the Local Variables list." t) (autoload 'copy-dir-locals-to-file-locals-prop-line "files-x" "\ Copy directory-local variables to the -*- line." t) (defvar enable-connection-local-variables t "\ Non-nil means enable use of connection-local variables.") (autoload 'connection-local-set-profiles "files-x" "\ Add PROFILES for CRITERIA. CRITERIA is a plist identifying a connection and the application using this connection, see `connection-local-criteria-alist'. PROFILES are the names of connection profiles (a symbol). When a connection to a remote server is opened and CRITERIA matches to that server, the connection-local variables from PROFILES are applied to the corresponding process buffer. The variables for a connection profile are defined using `connection-local-set-profile-variables'. (fn CRITERIA &rest PROFILES)") (autoload 'connection-local-set-profile-variables "files-x" "\ Map the symbol PROFILE to a list of variable settings. VARIABLES is a list that declares connection-local variables for the connection profile. An element in VARIABLES is an alist whose elements are of the form (VAR . VALUE). When a connection to a remote server is opened, the server's connection profiles are found. A server may be assigned a connection profile using `connection-local-set-profiles'. Then variables are set in the server's process buffer according to the VARIABLES list of the connection profile. The list is processed in order. (fn PROFILE VARIABLES)") (autoload 'connection-local-update-profile-variables "files-x" "\ Update the variable settings for PROFILE in-place. VARIABLES is a list that declares connection-local variables for the connection profile. An element in VARIABLES is an alist whose elements are of the form (VAR . VALUE). Unlike `connection-local-set-profile-variables' (which see), this function preserves the values of any existing variable definitions that aren't listed in VARIABLES. (fn PROFILE VARIABLES)") (autoload 'hack-connection-local-variables "files-x" "\ Read connection-local variables according to CRITERIA. Store the connection-local variables in buffer local variable `connection-local-variables-alist'. This does nothing if `enable-connection-local-variables' is nil. (fn CRITERIA)") (autoload 'hack-connection-local-variables-apply "files-x" "\ Apply connection-local variables identified by CRITERIA. Other local variables, like file-local and dir-local variables, will not be changed. (fn CRITERIA)") (autoload 'with-connection-local-variables "files-x" "\ Apply connection-local variables according to `default-directory'. Execute BODY, and unwind connection-local variables. (fn &rest BODY)" nil t) (autoload 'with-connection-local-application-variables "files-x" "\ Apply connection-local variables for APPLICATION in `default-directory'. Execute BODY, and unwind connection-local variables. (fn APPLICATION &rest BODY)" nil t) (function-put 'with-connection-local-application-variables 'lisp-indent-function 1) (autoload 'with-connection-local-variables-1 "files-x" "\ Apply connection-local variables according to `default-directory'. Call BODY-FUN with no args, and then unwind connection-local variables. (fn BODY-FUN)") (autoload 'setq-connection-local "files-x" "\ Set each VARIABLE connection-locally to VALUE. When `connection-local-profile-name-for-setq' is set, assign each variable's value on that connection profile, and set that profile for `connection-local-criteria'. You can use this in combination with `with-connection-local-variables', as in (with-connection-local-variables (setq-connection-local VARIABLE VALUE)) If there's no connection-local profile to use, just set the variables normally, as with `setq'. The variables are literal symbols and should not be quoted. The second VALUE is not computed until after the first VARIABLE is set, and so on; each VALUE can use the new value of variables set earlier in the `setq-connection-local'. The return value of the `setq-connection-local' form is the value of the last VALUE. (fn [VARIABLE VALUE]...)" nil t) (autoload 'connection-local-p "files-x" "\ Non-nil if VARIABLE has a connection-local binding in `default-directory'. `default-directory' must be a remote file name. If APPLICATION is nil, the value of `connection-local-default-application' is used. (fn VARIABLE &optional APPLICATION)" nil t) (autoload 'connection-local-value "files-x" "\ Return connection-local VARIABLE for APPLICATION in `default-directory'. `default-directory' must be a remote file name. If APPLICATION is nil, the value of `connection-local-default-application' is used. If VARIABLE does not have a connection-local binding, the return value is the default binding of the variable. (fn VARIABLE &optional APPLICATION)" nil t) (autoload 'path-separator "files-x" "\ The connection-local value of `path-separator'.") (autoload 'null-device "files-x" "\ The connection-local value of `null-device'.") (register-definition-prefixes "files-x" '("connection-local-" "dir-locals-to-string" "modify-" "read-")) ;;; Generated autoloads from filesets.el (autoload 'filesets-init "filesets" "\ Filesets initialization. Set up hooks, load the cache file -- if existing -- and build the menu.") (register-definition-prefixes "filesets" '("filesets-")) ;;; Generated autoloads from cedet/semantic/symref/filter.el (register-definition-prefixes "semantic/symref/filter" '("semantic-symref-")) ;;; Generated autoloads from cedet/srecode/filters.el (register-definition-prefixes "srecode/filters" '("srecode-comment-prefix")) ;;; Generated autoloads from cedet/srecode/find.el (register-definition-prefixes "srecode/find" '("srecode-")) ;;; Generated autoloads from cedet/semantic/find.el (register-definition-prefixes "semantic/find" '("semantic-")) ;;; Generated autoloads from find-cmd.el (push (purecopy '(find-cmd 0 6)) package--builtin-versions) (autoload 'find-cmd "find-cmd" "\ Initiate the building of a find command. For example: (find-cmd \\='(prune (name \".svn\" \".git\" \".CVS\")) \\='(and (or (name \"*.pl\" \"*.pm\" \"*.t\") (mtime \"+1\")) (fstype \"nfs\" \"ufs\")))) `default-directory' is used as the initial search path. The result is a string that should be ready for the command line. (fn &rest SUBFINDS)") (register-definition-prefixes "find-cmd" '("find-")) ;;; Generated autoloads from find-dired.el (autoload 'find-dired "find-dired" "\ Run `find' and go into Dired mode on a buffer of the output. The command run (after changing into DIR) is essentially find . \\( ARGS \\) -ls except that the car of the variable `find-ls-option' specifies what to use in place of \"-ls\" as the final argument. Collect output in the \"*Find*\" buffer. To kill the job before it finishes, type \\[kill-find]. For more information on how to write valid find expressions for ARGS, see Info node `(find) Finding Files'. If you are not using GNU findutils (on macOS and *BSD systems), see instead the man page for \"find\". (fn DIR ARGS)" t) (autoload 'find-dired-with-command "find-dired" "\ Run `find' and go into Dired mode on a buffer of the output. The user-supplied COMMAND is run after changing into DIR and should look like find . GLOBALARGS \\( ARGS \\) -ls The car of the variable `find-ls-option' specifies what to use in place of \"-ls\" as the starting input. Collect output in the \"*Find*\" buffer. To kill the job before it finishes, type \\[kill-find]. (fn DIR COMMAND)" t) (autoload 'find-name-dired "find-dired" "\ Search DIR recursively for files matching the globbing PATTERN, and run Dired on those files. PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. The default command run (after changing into DIR) is find . -name \\='PATTERN\\=' -ls See `find-name-arg' to customize the arguments. (fn DIR PATTERN)" t) (autoload 'find-grep-dired "find-dired" "\ Find files in DIR that contain matches for REGEXP and start Dired on output. The command run (after changing into DIR) is find . \\( -type f -exec `grep-program' `find-grep-options' \\ -e REGEXP {} \\; \\) -ls where the first string in the value of the variable `find-ls-option' specifies what to use in place of \"-ls\" as the final argument. (fn DIR REGEXP)" t) (register-definition-prefixes "find-dired" '("find-" "kill-find")) ;;; Generated autoloads from find-file.el (defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") \, (lambda nil (match-string 2)))) "\ List of special constructs recognized by `ff-treat-as-special'. Each element, tried in order, has the form (REGEXP . EXTRACT). If REGEXP matches the current line (from the beginning of the line), `ff-treat-as-special' calls function EXTRACT with no args. If EXTRACT returns nil, keep trying. Otherwise, return the filename that EXTRACT returned.") (custom-autoload 'ff-special-constructs "find-file" t) (autoload 'ff-get-other-file "find-file" "\ Find the header or source file corresponding to this file. See also the documentation for `ff-find-other-file'. If optional IN-OTHER-WINDOW is non-nil, find the file in another window. (fn &optional IN-OTHER-WINDOW)" t) (defalias 'ff-find-related-file #'ff-find-other-file) (autoload 'ff-find-other-file "find-file" "\ Find the header or source file corresponding to this file. Being on a `#include' line pulls in that file. If optional IN-OTHER-WINDOW is non-nil, find the file in the other window. If optional IGNORE-INCLUDE is non-nil, ignore being on `#include' lines. If optional EVENT is non-nil (default `last-nonmenu-event', move point to the end position of that event before calling the various ff-* hooks. Variables of interest include: - `ff-case-fold-search' Non-nil means ignore cases in matches (see `case-fold-search'). If you have extensions in different cases, you will want this to be nil. - `ff-always-in-other-window' If non-nil, always open the other file in another window, unless an argument is given to `ff-find-other-file'. - `ff-ignore-include' If non-nil, ignores #include lines. - `ff-always-try-to-create' If non-nil, always attempt to create the other file if it was not found. - `ff-quiet-mode' If non-nil, does not trace which directories are being searched. - `ff-special-constructs' A list of regular expressions specifying how to recognize special constructs such as include files etc, and an associated method for extracting the filename from that construct. - `ff-other-file-alist' Alist of extensions to find given the current file's extension. - `ff-search-directories' List of directories searched through with each extension specified in `ff-other-file-alist' that matches this file's extension. - `ff-pre-find-hook' List of functions to be called before the search for the file starts. - `ff-pre-load-hook' List of functions to be called before the other file is loaded. - `ff-post-load-hook' List of functions to be called after the other file is loaded. - `ff-not-found-hook' List of functions to be called if the other file could not be found. - `ff-file-created-hook' List of functions to be called if the other file has been created. (fn &optional IN-OTHER-WINDOW IGNORE-INCLUDE EVENT)" t) (define-obsolete-function-alias 'ff-mouse-find-other-file #'ff-find-other-file "28.1") (define-obsolete-function-alias 'ff-mouse-find-other-file-other-window #'ff-find-other-file-other-window "28.1") (autoload 'ff-find-other-file-other-window "find-file" "\ Visit the file you point at in another window. (fn EVENT)" t) (register-definition-prefixes "find-file" '("cc-" "ff-" "modula2-other-file-alist")) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload 'find-library "find-func" "\ Find the Emacs Lisp source of LIBRARY. Interactively, prompt for LIBRARY using the one at or near point. This function searches `find-library-source-path' if non-nil, and `load-path' otherwise. See the `find-library-include-other-files' user option for customizing the candidate completions. (fn LIBRARY)" t) (autoload 'read-library-name "find-func" "\ Read and return a library name, defaulting to the one near point. A library name is the filename of an Emacs Lisp library located in a directory under `load-path' (or `find-library-source-path', if non-nil).") (autoload 'find-library-other-window "find-func" "\ Find the Emacs Lisp source of LIBRARY in another window. See `find-library' for more details. (fn LIBRARY)" t) (autoload 'find-library-other-frame "find-func" "\ Find the Emacs Lisp source of LIBRARY in another frame. See `find-library' for more details. (fn LIBRARY)" t) (autoload 'find-function-search-for-symbol "find-func" "\ Search for SYMBOL's definition of type TYPE in LIBRARY. Visit the library in a buffer, and return a cons cell (BUFFER . POSITION), or just (BUFFER . nil) if the definition can't be found in the file. If TYPE is nil, look for a function definition. Otherwise, TYPE specifies the kind of definition, and it is interpreted via `find-function-regexp-alist'. The search is done in the source for library LIBRARY. (fn SYMBOL TYPE LIBRARY)") (autoload 'find-function-noselect "find-func" "\ Return a pair (BUFFER . POINT) pointing to the definition of FUNCTION. Finds the source file containing the definition of FUNCTION in a buffer and the point of the definition. The buffer is not selected. If the function definition can't be found in the buffer, returns (BUFFER). If FUNCTION is a built-in function, this function normally attempts to find it in the Emacs C sources; however, if LISP-ONLY is non-nil, signal an error instead. (fn FUNCTION &optional LISP-ONLY)") (autoload 'find-function "find-func" "\ Find the definition of the FUNCTION near point. Finds the source file containing the definition of the function near point (selected by `function-called-at-point') in a buffer and places point before the definition. Set mark before moving, if the buffer already existed. See also `find-function-recenter-line' and `find-function-after-hook'. (fn FUNCTION)" t) (autoload 'find-function-other-window "find-func" "\ Find, in another window, the definition of FUNCTION near point. See `find-function' for more details. (fn FUNCTION)" t) (autoload 'find-function-other-frame "find-func" "\ Find, in another frame, the definition of FUNCTION near point. See `find-function' for more details. (fn FUNCTION)" t) (autoload 'find-variable-noselect "find-func" "\ Return a pair `(BUFFER . POINT)' pointing to the definition of VARIABLE. Finds the library containing the definition of VARIABLE in a buffer and the point of the definition. The buffer is not selected. If the variable's definition can't be found in the buffer, return (BUFFER). (fn VARIABLE &optional FILE)") (autoload 'find-variable "find-func" "\ Find the definition of the VARIABLE at or before point. Finds the library containing the definition of the variable near point (selected by `variable-at-point') in a buffer and places point before the definition. Set mark before moving, if the buffer already existed. See also `find-function-recenter-line' and `find-function-after-hook'. (fn VARIABLE)" t) (autoload 'find-variable-other-window "find-func" "\ Find, in another window, the definition of VARIABLE near point. See `find-variable' for more details. (fn VARIABLE)" t) (autoload 'find-variable-other-frame "find-func" "\ Find, in another frame, the definition of VARIABLE near point. See `find-variable' for more details. (fn VARIABLE)" t) (autoload 'find-definition-noselect "find-func" "\ Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL. If the definition can't be found in the buffer, return (BUFFER). TYPE says what type of definition: nil for a function, `defvar' for a variable, `defface' for a face. This function does not switch to the buffer nor display it. (fn SYMBOL TYPE &optional FILE)") (autoload 'find-face-definition "find-func" "\ Find the definition of FACE. FACE defaults to the name near point. Finds the Emacs Lisp library containing the definition of the face near point (selected by `variable-at-point') in a buffer and places point before the definition. Set mark before moving, if the buffer already existed. See also `find-function-recenter-line' and `find-function-after-hook'. (fn FACE)" t) (autoload 'find-function-on-key "find-func" "\ Find the function that KEY invokes. KEY is a string. Set mark before moving, if the buffer already existed. (fn KEY)" t) (autoload 'find-function-on-key-other-window "find-func" "\ Find, in the other window, the function that KEY invokes. See `find-function-on-key'. (fn KEY)" t) (autoload 'find-function-on-key-other-frame "find-func" "\ Find, in the other frame, the function that KEY invokes. See `find-function-on-key'. (fn KEY)" t) (autoload 'find-function-at-point "find-func" "\ Find directly the function at point in the other window." t) (autoload 'find-variable-at-point "find-func" "\ Find directly the variable at point in the other window." t) (autoload 'find-function-setup-keys "find-func" "\ Define some key bindings for the `find-function' family of functions.") (register-definition-prefixes "find-func" '("find-" "read-library-name--find-files")) ;;; Generated autoloads from find-lisp.el (autoload 'find-lisp-find-dired "find-lisp" "\ Find the files within DIR whose names match REGEXP. A Dired buffer with the results will be opened. (fn DIR REGEXP)" t) (autoload 'find-lisp-find-dired-subdirectories "find-lisp" "\ Find all subdirectories of DIR. (fn DIR)" t) (autoload 'find-lisp-find-dired-subdirs-other-window "find-lisp" "\ Same as `find-lisp-find-dired-subdirectories', but use another window. (fn DIR)" t) (autoload 'find-lisp-find-dired-filter "find-lisp" "\ Change the filter on a `find-lisp-find-dired' buffer to REGEXP. (fn REGEXP)" t) (register-definition-prefixes "find-lisp" '("find-lisp-")) ;;; Generated autoloads from finder.el (autoload 'finder-list-keywords "finder" "\ Display descriptions of the keywords in the Finder buffer." t) (autoload 'finder-commentary "finder" "\ Display FILE's commentary section. FILE should be in a form suitable for passing to `locate-library'. (fn FILE)" t) (autoload 'finder-by-keyword "finder" "\ Find packages matching a given keyword." t) (register-definition-prefixes "finder" '("finder-" "generated-finder-keywords-file")) ;;; Generated autoloads from flow-ctrl.el (autoload 'enable-flow-control "flow-ctrl" "\ Toggle flow control handling. When handling is enabled, user can type C-s as C-\\, and C-q as C-^. With arg, enable flow control mode if arg is positive, otherwise disable. (fn &optional ARGUMENT)" t) (autoload 'enable-flow-control-on "flow-ctrl" "\ Enable flow control if using one of a specified set of terminal types. Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control on VT-100 and H19 terminals. When flow control is enabled, you must type C-\\ to get the effect of a C-s, and type C-^ to get the effect of a C-q. (fn &rest LOSING-TERMINAL-TYPES)") (register-definition-prefixes "flow-ctrl" '("flow-control-c-")) ;;; Generated autoloads from mail/flow-fill.el (autoload 'fill-flowed-encode "flow-fill" "\ (fn &optional BUFFER)") (autoload 'fill-flowed "flow-fill" "\ Apply RFC2646 decoding to BUFFER. If BUFFER is nil, default to the current buffer. If DELETE-SPACE, delete RFC2646 spaces padding at the end of lines. (fn &optional BUFFER DELETE-SPACE)") (register-definition-prefixes "flow-fill" '("fill-flowed-")) ;;; Generated autoloads from progmodes/flymake.el (push (purecopy '(flymake 1 3 7)) package--builtin-versions) (autoload 'flymake-log "flymake" "\ Log, at level LEVEL, the message MSG formatted with ARGS. LEVEL is passed to `display-warning', which is used to display the warning. If this form is included in a file, the generated warning contains an indication of the file that generated it. (fn LEVEL MSG &rest ARGS)" nil t) (autoload 'flymake-make-diagnostic "flymake" "\ Make a Flymake diagnostic for LOCUS's region from BEG to END. LOCUS is a buffer object or a string designating a file name. TYPE is a diagnostic symbol and TEXT is string describing the problem detected in this region. DATA is any object that the caller wishes to attach to the created diagnostic for later retrieval with `flymake-diagnostic-data'. If LOCUS is a buffer BEG and END should be buffer positions inside it. If LOCUS designates a file, BEG and END should be a cons (LINE . COL) indicating a file position. In this second case, END may be omitted in which case the region is computed using `flymake-diag-region' if the diagnostic is appended to an actual buffer. OVERLAY-PROPERTIES is an alist of properties attached to the created diagnostic, overriding the default properties and any properties listed in the `flymake-overlay-control' property of the diagnostic's type symbol. (fn LOCUS BEG END TYPE TEXT &optional DATA OVERLAY-PROPERTIES)") (autoload 'flymake-diagnostics "flymake" "\ Get Flymake diagnostics in region determined by BEG and END. If neither BEG or END is supplied, use whole accessible buffer, otherwise if BEG is non-nil and END is nil, consider only diagnostics at BEG. (fn &optional BEG END)") (autoload 'flymake-diag-region "flymake" "\ Compute BUFFER's region (BEG . END) corresponding to LINE and COL. If COL is nil, return a region just for LINE. Return nil if the region is invalid. This function saves match data. (fn BUFFER LINE &optional COL)") (autoload 'flymake-mode "flymake" "\ Toggle Flymake mode on or off. Flymake is an Emacs minor mode for on-the-fly syntax checking. Flymake collects diagnostic information from multiple sources, called backends, and visually annotates the buffer with the results. Flymake performs these checks while the user is editing. The customization variables `flymake-start-on-flymake-mode', `flymake-no-changes-timeout' determine the exact circumstances whereupon Flymake decides to initiate a check of the buffer. The commands `flymake-goto-next-error' and `flymake-goto-prev-error' can be used to navigate among Flymake diagnostics annotated in the buffer. By default, `flymake-mode' doesn't override the \\[next-error] command, but if you're using Flymake a lot (and don't use the regular compilation mechanisms that often), it can be useful to put something like the following in your init file: (setq next-error-function \\='flymake-goto-next-error) The visual appearance of each type of diagnostic can be changed by setting properties `flymake-overlay-control', `flymake-bitmap' and `flymake-severity' on the symbols of diagnostic types (like `:error', `:warning' and `:note'). Activation or deactivation of backends used by Flymake in each buffer happens via the special hook `flymake-diagnostic-functions'. Some backends may take longer than others to respond or complete, and some may decide to disable themselves if they are not suitable for the current buffer. The commands `flymake-running-backends', `flymake-disabled-backends' and `flymake-reporting-backends' summarize the situation, as does the special *Flymake log* buffer. This is a minor mode. If called interactively, toggle the `Flymake mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `flymake-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'flymake-mode-on "flymake" "\ Turn Flymake mode on.") (autoload 'flymake-mode-off "flymake" "\ Turn Flymake mode off.") (register-definition-prefixes "flymake" '("flymake-")) ;;; Generated autoloads from progmodes/flymake-cc.el (autoload 'flymake-cc "flymake-cc" "\ Flymake backend for GNU-style C compilers. This backend uses `flymake-cc-command' (which see) to launch a process that is passed the current buffer's contents via stdin. REPORT-FN is Flymake's callback. (fn REPORT-FN &rest ARGS)") (register-definition-prefixes "flymake-cc" '("flymake-cc-")) ;;; Generated autoloads from progmodes/flymake-proc.el (push (purecopy '(flymake-proc 1 0)) package--builtin-versions) (register-definition-prefixes "flymake-proc" '("flymake-proc-")) ;;; Generated autoloads from textmodes/flyspell.el (autoload 'flyspell-prog-mode "flyspell" "\ Turn on `flyspell-mode' for comments and strings." t) (defvar flyspell-mode nil "Non-nil if Flyspell mode is enabled.") (autoload 'flyspell-mode "flyspell" "\ Toggle on-the-fly spell checking (Flyspell mode). Flyspell mode is a buffer-local minor mode. When enabled, it spawns a single Ispell process and checks each word. The default flyspell behavior is to highlight incorrect words. This mode is geared toward text modes. In buffers that contain code, `flyspell-prog-mode' is usually a better choice. Bindings: \\[ispell-word]: correct words (using Ispell). \\[flyspell-auto-correct-word]: automatically correct word. \\[flyspell-auto-correct-previous-word]: automatically correct the last misspelled word. \\[flyspell-correct-word] (or down-mouse-2): popup correct words. Hooks: This runs `flyspell-mode-hook' after flyspell mode is entered or exit. Remark: `flyspell-mode' uses `ispell-mode'. Thus all Ispell options are valid. For instance, a different dictionary can be used by invoking `ispell-change-dictionary'. Consider using the `ispell-parser' to check your text. For instance consider adding: (add-hook \\='tex-mode-hook (lambda () (setq ispell-parser \\='tex))) in your init file. \\[flyspell-region] checks all words inside a region. \\[flyspell-buffer] checks the whole buffer. This is a minor mode. If called interactively, toggle the `Flyspell mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `flyspell-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'turn-on-flyspell "flyspell" "\ Unconditionally turn on Flyspell mode.") (autoload 'turn-off-flyspell "flyspell" "\ Unconditionally turn off Flyspell mode.") (autoload 'flyspell--mode-off "flyspell" "\ Turn Flyspell mode off.") (autoload 'flyspell-region "flyspell" "\ Flyspell text between BEG and END. Make sure `flyspell-mode' is turned on if you want the highlight of a misspelled word removed when you've corrected it. (fn BEG END)" t) (autoload 'flyspell-buffer "flyspell" "\ Flyspell whole buffer." t) (register-definition-prefixes "flyspell" '("flyspell-" "mail-mode-flyspell-verify" "make-flyspell-overlay" "sgml-mode-flyspell-verify" "tex")) ;;; Generated autoloads from foldout.el (push (purecopy '(foldout 1 10)) package--builtin-versions) (register-definition-prefixes "foldout" '("foldout-")) ;;; Generated autoloads from follow.el (autoload 'turn-on-follow-mode "follow" "\ Turn on Follow mode. Please see the function `follow-mode'.") (autoload 'turn-off-follow-mode "follow" "\ Turn off Follow mode. Please see the function `follow-mode'.") (autoload 'follow-mode "follow" "\ Toggle Follow mode. Follow mode is a minor mode that combines windows into one tall virtual window. This is accomplished by two main techniques: * The windows always displays adjacent sections of the buffer. This means that whenever one window is moved, all the others will follow. (Hence the name Follow mode.) * Should point (cursor) end up outside a window, another window displaying that point is selected, if possible. This makes it possible to walk between windows using normal cursor movement commands. Follow mode comes to its prime when used on a large screen and two or more side-by-side windows are used. The user can, with the help of Follow mode, use these full-height windows as though they were one. Imagine yourself editing a large function, or section of text, and being able to use 144 or 216 lines instead of the normal 72... (your mileage may vary). To split one large window into two side-by-side windows, the commands \\[split-window-right] or \\[follow-delete-other-windows-and-split] can be used. Only windows displayed in the same frame follow each other. This command runs the normal hook `follow-mode-hook'. Keys specific to Follow mode: \\{follow-mode-map} This is a minor mode. If called interactively, toggle the `Follow mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `follow-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'follow-scroll-up-window "follow" "\ Scroll text in a Follow mode window up by that window's size. The other windows in the window chain will scroll synchronously. If called with no ARG, the `next-screen-context-lines' last lines of the window will be visible after the scroll. If called with an argument, scroll ARG lines up. Negative ARG means scroll downward. Works like `scroll-up' when not in Follow mode. (fn &optional ARG)" t) (autoload 'follow-scroll-down-window "follow" "\ Scroll text in a Follow mode window down by that window's size. The other windows in the window chain will scroll synchronously. If called with no ARG, the `next-screen-context-lines' top lines of the window in the chain will be visible after the scroll. If called with an argument, scroll ARG lines down. Negative ARG means scroll upward. Works like `scroll-down' when not in Follow mode. (fn &optional ARG)" t) (autoload 'follow-scroll-up "follow" "\ Scroll text in a Follow mode window chain up. If called with no ARG, the `next-screen-context-lines' last lines of the bottom window in the chain will be visible in the top window. If called with an argument, scroll ARG lines up. Negative ARG means scroll downward. Works like `scroll-up' when not in Follow mode. (fn &optional ARG)" t) (autoload 'follow-scroll-down "follow" "\ Scroll text in a Follow mode window chain down. If called with no ARG, the `next-screen-context-lines' top lines of the top window in the chain will be visible in the bottom window. If called with an argument, scroll ARG lines down. Negative ARG means scroll upward. Works like `scroll-down' when not in Follow mode. (fn &optional ARG)" t) (autoload 'follow-delete-other-windows-and-split "follow" "\ Create two side by side windows and enter Follow mode. Execute this command to display as much as possible of the text in the selected window. All other windows, in the current frame, are deleted and the selected window is split in two side-by-side windows. Follow mode is activated, hence the two windows always will display two successive pages. (If one window is moved, the other one will follow.) If ARG is positive, the leftmost window is selected. If negative, the rightmost is selected. If ARG is nil, the leftmost window is selected if the original window is the first one in the frame. (fn &optional ARG)" t) (register-definition-prefixes "follow" '("follow-")) ;;; Generated autoloads from international/fontset.el (register-definition-prefixes "fontset" '("build-default-fontset-data" "charset-script-alist" "create-" "fontset-" "generate-fontset-menu" "set" "standard-fontset-spec" "x-" "xlfd-")) ;;; Generated autoloads from mail/footnote.el (autoload 'footnote-mode "footnote" "\ Toggle Footnote mode. Footnote mode is a buffer-local minor mode. If enabled, it provides footnote support for `message-mode'. To get started, play around with the following keys: \\{footnote-minor-mode-map} This is a minor mode. If called interactively, toggle the `Footnote mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `footnote-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "footnote" '("footnote-")) ;;; Generated autoloads from cedet/semantic/format.el (register-definition-prefixes "semantic/format" '("semantic-")) ;;; Generated autoloads from format-spec.el (autoload 'format-spec "format-spec" "\ Return a string based on FORMAT and SPECIFICATION. FORMAT is a string containing `format'-like specs like \"su - %u %k\". SPECIFICATION is an alist mapping format specification characters to their substitutions. For instance: (format-spec \"su - %u %l\" \\=`((?u . ,(user-login-name)) (?l . \"ls\"))) Each %-spec may contain optional flag, width, and precision specifiers, as follows: %character The following flags are allowed: * 0: Pad to the width, if given, with zeros instead of spaces. * -: Pad to the width, if given, on the right instead of the left. * <: Truncate to the width and precision, if given, on the left. * >: Truncate to the width and precision, if given, on the right. * ^: Convert to upper case. * _: Convert to lower case. The width and precision specifiers behave like the corresponding ones in `format' when applied to %s. For example, \"%<010b\" means \"substitute into the output the value associated with ?b in SPECIFICATION, either padding it with leading zeros or truncating leading characters until it's ten characters wide\". the substitution for a specification character can also be a function, taking no arguments and returning a string to be used for the replacement. It will only be called if FORMAT uses that character. For example: (format-spec \"%n\" \\=`((?n . ,(lambda () (read-number \"Number: \"))))) Note that it is best to make sure the function is not quoted, like above, so that it is compiled by the byte-compiler. Any text properties of FORMAT are copied to the result, with any text properties of a %-spec itself copied to its substitution. IGNORE-MISSING indicates how to handle %-spec characters not present in SPECIFICATION. If it is nil or omitted, emit an error; if it is the symbol `ignore', leave those %-specs verbatim in the result, including their text properties, if any; if it is the symbol `delete', remove those %-specs from the result; otherwise do the same as for the symbol `ignore', but also leave any occurrences of \"%%\" in FORMAT verbatim in the result. If SPLIT, instead of returning a single string, a list of strings is returned, where each format spec is its own element. (fn FORMAT SPECIFICATION &optional IGNORE-MISSING SPLIT)") (register-definition-prefixes "format-spec" '("format-spec-")) ;;; Generated autoloads from forms.el (autoload 'forms-mode "forms" "\ Major mode to visit files in a field-structured manner using a form. Commands: Equivalent keys in read-only mode: TAB forms-next-field TAB C-c TAB forms-next-field C-c < forms-first-record < C-c > forms-last-record > C-c ? describe-mode ? C-c C-k forms-delete-record C-c C-q forms-toggle-read-only q C-c C-o forms-insert-record C-c C-l forms-jump-record l C-c C-n forms-next-record n C-c C-p forms-prev-record p C-c C-r forms-search-reverse r C-c C-s forms-search-forward s C-c C-x forms-exit x (fn &optional PRIMARY)" t) (autoload 'forms-find-file "forms" "\ Visit a file in Forms mode. (fn FN)" t) (autoload 'forms-find-file-other-window "forms" "\ Visit a file in Forms mode in other window. (fn FN)" t) (register-definition-prefixes "forms" '("forms-")) ;;; Generated autoloads from progmodes/fortran.el (autoload 'fortran-mode "fortran" "\ Major mode for editing Fortran code in fixed format. For free format code, use `f90-mode'. \\[fortran-indent-line] indents the current Fortran line correctly. Note that DO statements must not share a common CONTINUE. Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords. Key definitions: \\{fortran-mode-map} Variables controlling indentation style and extra features: `fortran-comment-line-start' To use comments starting with `!', set this to the string \"!\". `fortran-do-indent' Extra indentation within DO blocks (default 3). `fortran-if-indent' Extra indentation within IF blocks (default 3). `fortran-structure-indent' Extra indentation within STRUCTURE, UNION, MAP and INTERFACE blocks. (default 3) `fortran-continuation-indent' Extra indentation applied to continuation statements (default 5). `fortran-comment-line-extra-indent' Amount of extra indentation for text in full-line comments (default 0). `fortran-comment-indent-style' How to indent the text in full-line comments. Allowed values are: nil don't change the indentation `fixed' indent to `fortran-comment-line-extra-indent' beyond the value of either `fortran-minimum-statement-indent-fixed' (fixed format) or `fortran-minimum-statement-indent-tab' (TAB format), depending on the continuation format in use. `relative' indent to `fortran-comment-line-extra-indent' beyond the indentation for a line of code. (default `fixed') `fortran-comment-indent-char' Single-character string to be inserted instead of space for full-line comment indentation (default \" \"). `fortran-minimum-statement-indent-fixed' Minimum indentation for statements in fixed format mode (default 6). `fortran-minimum-statement-indent-tab' Minimum indentation for statements in TAB format mode (default 9). `fortran-line-number-indent' Maximum indentation for line numbers (default 1). A line number will get less than this much indentation if necessary to avoid reaching column 5. `fortran-check-all-num-for-matching-do' Non-nil causes all numbered lines to be treated as possible \"continue\" statements (default nil). `fortran-blink-matching-if' Non-nil causes \\[fortran-indent-line] on an ENDIF (or ENDDO) statement to blink on the matching IF (or DO [WHILE]). (default nil) `fortran-continuation-string' Single-character string to be inserted in column 5 of a continuation line (default \"$\"). `fortran-comment-region' String inserted by \\[fortran-comment-region] at start of each line in the region (default \"c$$$\"). `fortran-electric-line-number' Non-nil causes line number digits to be moved to the correct column as typed (default t). `fortran-break-before-delimiters' Non-nil causes lines to be broken before delimiters (default t). Turning on Fortran mode calls the value of the variable `fortran-mode-hook' with no args, if that value is non-nil. (fn)" t) (register-definition-prefixes "fortran" '("fortran-")) ;;; Generated autoloads from play/fortune.el (autoload 'fortune-add-fortune "fortune" "\ Add STRING to a fortune file FILE. Interactively, if called with a prefix argument, read the file name to use. Otherwise use the value of `fortune-file'. (fn STRING FILE)" t) (autoload 'fortune-from-region "fortune" "\ Append the current region to a local fortune-like data file. Interactively, if called with a prefix argument, read the file name to use. Otherwise use the value of `fortune-file'. (fn BEG END FILE)" t) (autoload 'fortune-compile "fortune" "\ Compile fortune file. If called with a prefix asks for the FILE to compile, otherwise uses the value of `fortune-file'. This currently cannot handle directories. (fn &optional FILE)" t) (autoload 'fortune-to-signature "fortune" "\ Create signature from output of the fortune program. If called with a prefix asks for the FILE to choose the fortune from, otherwise uses the value of `fortune-file'. If you want to have fortune choose from a set of files in a directory, call interactively with prefix and choose the directory as the fortune-file. (fn &optional FILE)" t) (autoload 'fortune-message "fortune" "\ Display a fortune cookie to the mini-buffer. If called with a prefix, it has the same behavior as `fortune'. Optional FILE is a fortune file from which a cookie will be selected. (fn &optional FILE)" t) (autoload 'fortune "fortune" "\ Display a fortune cookie. If called with a prefix asks for the FILE to choose the fortune from, otherwise uses the value of `fortune-file'. If you want to have fortune choose from a set of files in a directory, call interactively with prefix and choose the directory as the fortune-file. (fn &optional FILE)" t) (register-definition-prefixes "fortune" '("fortune-")) ;;; Generated autoloads from frameset.el (defvar frameset-session-filter-alist (append '((left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) (mapcar (lambda (p) (cons p :never)) frame-internal-parameters)) "\ Minimum set of parameters to filter for live (on-session) framesets. DO NOT MODIFY. See `frameset-filter-alist' for a full description.") (defvar frameset-persistent-filter-alist (append '((background-color . frameset-filter-sanitize-color) (bottom . frameset-filter-shelve-param) (buffer-list . :never) (buffer-predicate . :never) (buried-buffer-list . :never) (client . :never) (delete-before . :never) (font . frameset-filter-font-param) (font-backend . :never) (foreground-color . frameset-filter-sanitize-color) (frameset--text-pixel-height . :save) (frameset--text-pixel-width . :save) (fullscreen . frameset-filter-shelve-param) (GUI:bottom . frameset-filter-unshelve-param) (GUI:font . frameset-filter-unshelve-param) (GUI:fullscreen . frameset-filter-unshelve-param) (GUI:height . frameset-filter-unshelve-param) (GUI:left . frameset-filter-unshelve-param) (GUI:right . frameset-filter-unshelve-param) (GUI:top . frameset-filter-unshelve-param) (GUI:width . frameset-filter-unshelve-param) (height . frameset-filter-shelve-param) (left . frameset-filter-shelve-param) (parent-frame . :never) (mouse-wheel-frame . :never) (right . frameset-filter-shelve-param) (top . frameset-filter-shelve-param) (tty . frameset-filter-tty-to-GUI) (tty-type . frameset-filter-tty-to-GUI) (width . frameset-filter-shelve-param) (window-system . :never)) frameset-session-filter-alist) "\ Parameters to filter for persistent framesets. DO NOT MODIFY. See `frameset-filter-alist' for a full description.") (defvar frameset-filter-alist frameset-persistent-filter-alist "\ Alist of frame parameters and filtering functions. This alist is the default value of the FILTERS argument of `frameset-save' and `frameset-restore' (which see). Initially, `frameset-filter-alist' is set to, and shares the value of, `frameset-persistent-filter-alist'. You can override any item in this alist by `push'ing a new item onto it. If, for some reason, you intend to modify existing values, do (setq frameset-filter-alist (copy-tree frameset-filter-alist)) before changing anything. On saving, PARAMETERS is the parameter alist of each frame processed, and FILTERED is the parameter alist that gets saved to the frameset. On restoring, PARAMETERS is the parameter alist extracted from the frameset, and FILTERED is the resulting frame parameter alist used to restore the frame. Elements of `frameset-filter-alist' are conses (PARAM . ACTION), where PARAM is a parameter name (a symbol identifying a frame parameter), and ACTION can be: nil The parameter is copied to FILTERED. :never The parameter is never copied to FILTERED. :save The parameter is copied only when saving the frame. :restore The parameter is copied only when restoring the frame. FILTER A filter function. FILTER can be a symbol FILTER-FUN, or a list (FILTER-FUN ARGS...). FILTER-FUN is invoked with (apply FILTER-FUN CURRENT FILTERED PARAMETERS SAVING ARGS) where CURRENT A cons (PARAM . VALUE), where PARAM is the one being filtered and VALUE is its current value. FILTERED The resulting alist (so far). PARAMETERS The complete alist of parameters being filtered, SAVING Non-nil if filtering before saving state, nil if filtering before restoring it. ARGS Any additional arguments specified in the ACTION. FILTER-FUN is allowed to modify items in FILTERED, but no other arguments. It must return: nil Skip CURRENT (do not add it to FILTERED). t Add CURRENT to FILTERED as is. (NEW-PARAM . NEW-VALUE) Add this to FILTERED instead of CURRENT. Frame parameters not on this alist are passed intact, as if they were defined with ACTION = nil.") (autoload 'frameset-frame-id "frameset" "\ Return the frame id of FRAME, if it has one; else, return nil. A frame id is a string that uniquely identifies a frame. It is persistent across `frameset-save' / `frameset-restore' invocations, and once assigned is never changed unless the same frame is duplicated (via `frameset-restore'), in which case the newest frame keeps the id and the old frame's is set to nil. (fn FRAME)") (autoload 'frameset-frame-id-equal-p "frameset" "\ Return non-nil if FRAME's id matches ID. (fn FRAME ID)") (autoload 'frameset-frame-with-id "frameset" "\ Return the live frame with id ID, if exists; else nil. If FRAME-LIST is a list of frames, check these frames only. If nil, check all live frames. (fn ID &optional FRAME-LIST)") (autoload 'frameset-save "frameset" "\ Return a frameset for FRAME-LIST, a list of frames. Dead frames and non-frame objects are silently removed from the list. If nil, FRAME-LIST defaults to the output of `frame-list' (all live frames). APP, NAME and DESCRIPTION are optional data; see the docstring of the `frameset' defstruct for details. FILTERS is an alist of parameter filters; if nil, the value of the variable `frameset-filter-alist' is used instead. PREDICATE is a predicate function, which must return non-nil for frames that should be saved; if PREDICATE is nil, all frames from FRAME-LIST are saved. PROPERTIES is a user-defined property list to add to the frameset. (fn FRAME-LIST &key APP NAME DESCRIPTION FILTERS PREDICATE PROPERTIES)") (autoload 'frameset-restore "frameset" "\ Restore a FRAMESET into the current display(s). PREDICATE is a function called with two arguments, the parameter alist and the window-state of the frame being restored, in that order (see the docstring of the `frameset' defstruct for additional details). If PREDICATE returns nil, the frame described by that parameter alist and window-state is not restored. FILTERS is an alist of parameter filters; if nil, the value of `frameset-filter-alist' is used instead. REUSE-FRAMES selects the policy to reuse frames when restoring: t All existing frames can be reused. nil No existing frame can be reused. match Only frames with matching frame ids can be reused. PRED A predicate function; it receives as argument a live frame, and must return non-nil to allow reusing it, nil otherwise. FORCE-DISPLAY can be: t Frames are restored in the current display. nil Frames are restored, if possible, in their original displays. delete Frames in other displays are deleted instead of restored. PRED A function called with two arguments, the parameter alist and the window state (in that order). It must return t, nil or `delete', as above but affecting only the frame that will be created from that parameter alist. FORCE-ONSCREEN can be: t Force onscreen only those frames that are fully offscreen. nil Do not force any frame back onscreen. all Force onscreen any frame fully or partially offscreen. PRED A function called with three arguments, - the live frame just restored, - a list (LEFT TOP WIDTH HEIGHT), describing the frame, - a list (LEFT TOP WIDTH HEIGHT), describing the workarea. It must return non-nil to force the frame onscreen, nil otherwise. CLEANUP-FRAMES allows \"cleaning up\" the frame list after restoring a frameset: t Delete all frames that were not created or restored upon. nil Keep all frames. FUNC A function called with two arguments: - FRAME, a live frame. - ACTION, which can be one of :rejected Frame existed, but was not a candidate for reuse. :ignored Frame existed, was a candidate, but wasn't reused. :reused Frame existed, was a candidate, and restored upon. :created Frame didn't exist, was created and restored upon. Return value is ignored. Note the timing and scope of the operations described above: REUSE-FRAMES affects existing frames; PREDICATE, FILTERS and FORCE-DISPLAY affect the frame being restored before that happens; FORCE-ONSCREEN affects the frame once it has been restored; and CLEANUP-FRAMES affects all frames alive after the restoration, including those that have been reused or created anew. All keyword parameters default to nil. (fn FRAMESET &key PREDICATE FILTERS REUSE-FRAMES FORCE-DISPLAY FORCE-ONSCREEN CLEANUP-FRAMES)") (autoload 'frameset-to-register "frameset" "\ Store the current frameset in register REGISTER. Use \\[jump-to-register] to restore the frameset. Argument is a character, naming the register. Interactively, reads the register using `register-read-with-preview'. (fn REGISTER)" t) (register-definition-prefixes "frameset" '("frameset-")) ;;; Generated autoloads from fringe.el (unless (fboundp 'define-fringe-bitmap) (defun define-fringe-bitmap (_bitmap _bits &optional _height _width _align) "Define fringe bitmap BITMAP from BITS of size HEIGHT x WIDTH. BITMAP is a symbol identifying the new fringe bitmap. BITS is either a string or a vector of integers. HEIGHT is height of bitmap. If HEIGHT is nil, use length of BITS. WIDTH must be an integer between 1 and 16, or nil which defaults to 8. Optional fifth arg ALIGN may be one of `top', `center', or `bottom', indicating the positioning of the bitmap relative to the rows where it is used; the default is to center the bitmap. Fifth arg may also be a list (ALIGN PERIODIC) where PERIODIC non-nil specifies that the bitmap should be repeated. If BITMAP already exists, the existing definition is replaced.")) (register-definition-prefixes "fringe" '("fringe-" "set-fringe-")) ;;; Generated autoloads from cedet/semantic/fw.el (register-definition-prefixes "semantic/fw" '("semantic")) ;;; Generated autoloads from play/gamegrid.el (register-definition-prefixes "gamegrid" '("gamegrid-")) ;;; Generated autoloads from play/gametree.el (register-definition-prefixes "gametree" '("gametree-")) ;;; Generated autoloads from cedet/semantic/bovine/gcc.el (register-definition-prefixes "semantic/bovine/gcc" '("semantic-")) ;;; Generated autoloads from progmodes/gdb-mi.el (defvar gdb-enable-debug nil "\ Non-nil if Gdb-Enable-Debug mode is enabled. See the `gdb-enable-debug' command for a description of this minor mode.") (custom-autoload 'gdb-enable-debug "gdb-mi" nil) (autoload 'gdb-enable-debug "gdb-mi" "\ Toggle logging of transaction between Emacs and Gdb. The log is stored in `gdb-debug-log' as an alist with elements whose cons is send, send-item or recv and whose cdr is the string being transferred. This list may grow up to a size of `gdb-debug-log-max' after which the oldest element (at the end of the list) is deleted every time a new one is added (at the front). This is a global minor mode. If called interactively, toggle the `Gdb-Enable-Debug mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='gdb-enable-debug)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'gdb "gdb-mi" "\ Run gdb passing it COMMAND-LINE as arguments. If COMMAND-LINE names a program FILE to debug, gdb will run in a buffer named *gud-FILE*, and the directory containing FILE becomes the initial working directory and source-file directory for your debugger. If COMMAND-LINE requests that gdb attaches to a process PID, gdb will run in *gud-PID*, otherwise it will run in *gud*; in these cases the initial working directory is the `default-directory' of the buffer in which this command was invoked. COMMAND-LINE should include \"-i=mi\" to use gdb's MI text interface. Note that the old \"--annotate\" option is no longer supported. If option `gdb-many-windows' is nil (the default value) then gdb just pops up the GUD buffer unless `gdb-show-main' is t. In this case it starts with two windows: one displaying the GUD buffer and the other with the source file with the main routine of the inferior. If option `gdb-many-windows' is t, regardless of the value of `gdb-show-main', the layout below will appear. Keybindings are shown in some of the buffers. Watch expressions appear in the speedbar/slowbar. The following commands help control operation : `gdb-many-windows' - Toggle the number of windows gdb uses. `gdb-restore-windows' - To restore the window layout. See Info node `(emacs)GDB Graphical Interface' for a more detailed description of this mode. +----------------------------------------------------------------------+ | GDB Toolbar | +-----------------------------------+----------------------------------+ | GUD buffer (I/O of GDB) | Locals buffer | | | | | | | | | | +-----------------------------------+----------------------------------+ | Source buffer | I/O buffer (of debugged program) | | | (comint-mode) | | | | | | | | | | | | | | | | | | | +-----------------------------------+----------------------------------+ | Stack buffer | Breakpoints buffer | | RET gdb-select-frame | SPC gdb-toggle-breakpoint | | | RET gdb-goto-breakpoint | | | D gdb-delete-breakpoint | +-----------------------------------+----------------------------------+ (fn COMMAND-LINE)" t) (register-definition-prefixes "gdb-mi" '("breakpoint" "def-gdb-" "gdb" "gud-" "hollow-right-triangle")) ;;; Generated autoloads from emacs-lisp/generator.el (register-definition-prefixes "generator" '("cps-" "iter-")) ;;; Generated autoloads from emacs-lisp/generic.el (defvar generic-mode-list nil "\ A list of mode names for `generic-mode'. Do not add entries to this list directly; use `define-generic-mode' instead (which see).") (autoload 'define-generic-mode "generic" "\ Create a new generic mode MODE. A \"generic\" mode is a simple major mode with basic support for comment syntax and Font Lock mode, but otherwise does not have any special keystrokes or functionality available. MODE is the name of the command for the generic mode; don't quote it. The optional DOCSTRING is the documentation for the mode command. If you do not supply it, `define-generic-mode' uses a default documentation string instead. COMMENT-LIST is a list in which each element is either a character, a string of one or two characters, or a cons cell. A character or a string is set up in the mode's syntax table as a \"comment starter\". If the entry is a cons cell, the `car' is set up as a \"comment starter\" and the `cdr' as a \"comment ender\". (Use nil for the latter if you want comments to end at the end of the line.) Note that the syntax table has limitations about what comment starters and enders are actually possible. KEYWORD-LIST is a list of keywords to highlight with `font-lock-keyword-face'. Each keyword should be a string. FONT-LOCK-LIST is a list of additional expressions to highlight. Each element of this list should have the same form as an element of `font-lock-keywords'. AUTO-MODE-LIST is a list of regular expressions to add to `auto-mode-alist'. These regular expressions are added when Emacs runs the macro expansion. FUNCTION-LIST is a list of functions to call to do some additional setup. The mode command calls these functions just before it runs the mode hook `MODE-hook'. See the file generic-x.el for some examples of `define-generic-mode'. (fn MODE COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST AUTO-MODE-LIST FUNCTION-LIST &optional DOCSTRING)" nil t) (function-put 'define-generic-mode 'lisp-indent-function 1) (function-put 'define-generic-mode 'doc-string-elt 7) (autoload 'generic-mode-internal "generic" "\ Go into the generic mode MODE. (fn MODE COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST FUNCTION-LIST)") (autoload 'generic-mode "generic" "\ Enter generic mode MODE. Generic modes provide basic comment and font-lock functionality for \"generic\" files. (Files which are too small to warrant their own mode, but have comment characters, keywords, and the like.) To define a generic-mode, use the function `define-generic-mode'. Some generic modes are defined in `generic-x.el'. (fn MODE)" t) (autoload 'generic-make-keywords-list "generic" "\ Return a `font-lock-keywords' construct that highlights KEYWORD-LIST. KEYWORD-LIST is a list of keyword strings that should be highlighted with face FACE. This function calculates a regular expression that matches these keywords and concatenates it with PREFIX and SUFFIX. Then it returns a construct based on this regular expression that can be used as an element of `font-lock-keywords'. (fn KEYWORD-LIST FACE &optional PREFIX SUFFIX)") (make-obsolete 'generic-make-keywords-list 'regexp-opt "24.4") (register-definition-prefixes "generic" '("generic-")) ;;; Generated autoloads from cedet/ede/generic.el (register-definition-prefixes "ede/generic" '("ede-generic-")) ;;; Generated autoloads from cedet/srecode/getset.el (register-definition-prefixes "srecode/getset" '("srecode-")) ;;; Generated autoloads from progmodes/glasses.el (autoload 'glasses-mode "glasses" "\ Minor mode for making identifiers likeThis readable. When this mode is active, it tries to add virtual separators (like underscores) at places they belong to. This is a minor mode. If called interactively, toggle the `Glasses mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `glasses-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "glasses" '("glasses-")) ;;; Generated autoloads from cedet/semantic/symref/global.el (register-definition-prefixes "semantic/symref/global" '("semantic-symref-global--line-re")) ;;; Generated autoloads from textmodes/glyphless-mode.el (autoload 'glyphless-display-mode "glyphless-mode" "\ Minor mode for displaying glyphless characters in the current buffer. If enabled, all glyphless characters will be displayed as boxes that display their acronyms. This is a minor mode. If called interactively, toggle the `Glyphless-Display mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `glyphless-display-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "glyphless-mode" '("glyphless-mode-")) ;;; Generated autoloads from gnus/gmm-utils.el (autoload 'gmm-regexp-concat "gmm-utils" "\ Potentially concat a list of regexps into a single one. The concatenation is done with logical ORs. (fn REGEXP)") (autoload 'gmm-message "gmm-utils" "\ If LEVEL is lower than `gmm-verbose' print ARGS using `message'. Guideline for numbers: 1 - error messages 3 - non-serious error messages 5 - messages for things that take a long time 7 - not very important messages on stuff 9 - messages inside loops. (fn LEVEL &rest ARGS)") (autoload 'gmm-error "gmm-utils" "\ Beep an error if LEVEL is equal to or less than `gmm-verbose'. ARGS are passed to `message'. (fn LEVEL &rest ARGS)") (autoload 'gmm-widget-p "gmm-utils" "\ Non-nil if SYMBOL is a widget. (fn SYMBOL)") (autoload 'gmm-tool-bar-from-list "gmm-utils" "\ Make a tool bar from ICON-LIST. Within each entry of ICON-LIST, the first element is a menu command, the second element is an icon file name and the third element is a test function. You can use \\[describe-key] to find out the name of a menu command. The fourth and all following elements are passed as the PROPS argument to the function `tool-bar-local-item'. If ZAP-LIST is a list, remove those item from the default `tool-bar-map'. If it is t, start with a new sparse map. You can use \\[describe-key] to find out the name of an icon item. When \\[describe-key] shows \" runs the command find-file\", then use `new-file' in ZAP-LIST. DEFAULT-MAP specifies the default key map for ICON-LIST. (fn ICON-LIST ZAP-LIST DEFAULT-MAP)") (register-definition-prefixes "gmm-utils" '("defun-gmm" "gmm-")) ;;; Generated autoloads from gnus/gnus.el (push (purecopy '(gnus 5 13)) package--builtin-versions) (custom-autoload 'gnus-select-method "gnus") (autoload 'gnus-child-no-server "gnus" "\ Read network news as a child, without connecting to the local server. (fn &optional ARG)" t) (autoload 'gnus-slave-no-server "gnus" "\ Read network news as a child, without connecting to the local server. (fn &optional ARG)" t) (autoload 'gnus-no-server "gnus" "\ Read network news. If ARG is a positive number, Gnus will use that as the startup level. If ARG is nil, Gnus will be started at level 2. If ARG is non-nil and not a positive number, Gnus will prompt the user for the name of an NNTP server to use. As opposed to `gnus', this command will not connect to the local server. (fn &optional ARG CHILD)" t) (autoload 'gnus-child "gnus" "\ Read news as a child. (fn &optional ARG)" t) (autoload 'gnus-slave "gnus" "\ Read news as a child. (fn &optional ARG)" t) (autoload 'gnus-other-frame "gnus" "\ Pop up a frame to read news. This will call one of the Gnus commands which is specified by the user option `gnus-other-frame-function' (default `gnus') with the argument ARG if Gnus is not running, otherwise pop up a Gnus frame and run the command specified by `gnus-other-frame-resume-function'. The optional second argument DISPLAY should be a standard display string such as \"unix:0\" to specify where to pop up a frame. If DISPLAY is omitted or the function `make-frame-on-display' is not available, the current display is used. (fn &optional ARG DISPLAY)" t) (autoload 'gnus "gnus" "\ Read network news. If ARG is non-nil and a positive number, Gnus will use that as the startup level. If ARG is non-nil and not a positive number, Gnus will prompt the user for the name of an NNTP server to use. (fn &optional ARG DONT-CONNECT CHILD)" t) (register-definition-prefixes "gnus" '("gnus-")) ;;; Generated autoloads from gnus/gnus-agent.el (autoload 'gnus-unplugged "gnus-agent" "\ Start Gnus unplugged." t) (autoload 'gnus-plugged "gnus-agent" "\ Start Gnus plugged." t) (autoload 'gnus-child-unplugged "gnus-agent" "\ Read news as a child unplugged. (fn &optional ARG)" t) (autoload 'gnus-slave-unplugged "gnus-agent" "\ Read news as a child unplugged. (fn &optional ARG)" t) (autoload 'gnus-agentize "gnus-agent" "\ Allow Gnus to be an offline newsreader. The gnus-agentize function is now called internally by gnus when gnus-agent is set. If you wish to avoid calling gnus-agentize, customize `gnus-agent' to nil. This will modify the `gnus-setup-news-hook', and `message-send-mail-real-function' variables, and install the Gnus agent minor mode in all Gnus buffers." t) (autoload 'gnus-agent-possibly-save-gcc "gnus-agent" "\ Save GCC if Gnus is unplugged.") (autoload 'gnus-agent-rename-group "gnus-agent" "\ Rename fully-qualified OLD-GROUP as NEW-GROUP. Always updates the agent, even when disabled, as the old agent files would corrupt gnus when the agent was next enabled. Depends upon the caller to determine whether group renaming is supported. (fn OLD-GROUP NEW-GROUP)") (autoload 'gnus-agent-delete-group "gnus-agent" "\ Delete fully-qualified GROUP. Always updates the agent, even when disabled, as the old agent files would corrupt gnus when the agent was next enabled. Depends upon the caller to determine whether group deletion is supported. (fn GROUP)") (autoload 'gnus-agent-get-undownloaded-list "gnus-agent" "\ Construct list of articles that have not been downloaded.") (autoload 'gnus-agent-possibly-alter-active "gnus-agent" "\ Possibly expand a group's active range to include articles downloaded into the agent. (fn GROUP ACTIVE &optional INFO)") (autoload 'gnus-agent-find-parameter "gnus-agent" "\ Search for GROUPs SYMBOL in the group's parameters, the group's topic parameters, the group's category, or the customizable variables. Returns the first non-nil value found. (fn GROUP SYMBOL)") (autoload 'gnus-agent-batch-fetch "gnus-agent" "\ Start Gnus and fetch session." t) (autoload 'gnus-agent-batch "gnus-agent" "\ Start Gnus, send queue and fetch session." t) (autoload 'gnus-agent-regenerate "gnus-agent" "\ Regenerate all agent covered files. CLEAN is obsolete and ignored. (fn &optional CLEAN REREAD)" t) (register-definition-prefixes "gnus-agent" '("gnus-")) ;;; Generated autoloads from gnus/gnus-art.el (autoload 'gnus-article-prepare-display "gnus-art" "\ Make the current buffer look like a nice article.") (register-definition-prefixes "gnus-art" '("article-" "gnus-")) ;;; Generated autoloads from gnus/gnus-async.el (register-definition-prefixes "gnus-async" '("gnus-")) ;;; Generated autoloads from gnus/gnus-bcklg.el (register-definition-prefixes "gnus-bcklg" '("gnus-backlog-")) ;;; Generated autoloads from gnus/gnus-bookmark.el (autoload 'gnus-bookmark-set "gnus-bookmark" "\ Set a bookmark for this article." '(gnus-article-mode gnus-summary-mode)) (autoload 'gnus-bookmark-jump "gnus-bookmark" "\ Jump to a Gnus bookmark (BMK-NAME). (fn &optional BMK-NAME)" t) (autoload 'gnus-bookmark-bmenu-list "gnus-bookmark" "\ Display a list of existing Gnus bookmarks. The list is displayed in a buffer named `*Gnus Bookmark List*'. The leftmost column displays a D if the bookmark is flagged for deletion, or > if it is flagged for displaying." t) (register-definition-prefixes "gnus-bookmark" '("gnus-bookmark-")) ;;; Generated autoloads from gnus/gnus-cache.el (autoload 'gnus-jog-cache "gnus-cache" "\ Go through all groups and put the articles into the cache. Usage: $ emacs -batch -l ~/.emacs -l gnus -f gnus-jog-cache" t) (autoload 'gnus-cache-generate-active "gnus-cache" "\ Generate the cache active file. (fn &optional DIRECTORY)" t) (autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\ Generate NOV files recursively starting in DIR. (fn DIR)" t) (autoload 'gnus-cache-rename-group "gnus-cache" "\ Rename OLD-GROUP as NEW-GROUP. Always updates the cache, even when disabled, as the old cache files would corrupt Gnus when the cache was next enabled. It depends on the caller to determine whether group renaming is supported. (fn OLD-GROUP NEW-GROUP)") (autoload 'gnus-cache-delete-group "gnus-cache" "\ Delete GROUP from the cache. Always updates the cache, even when disabled, as the old cache files would corrupt gnus when the cache was next enabled. Depends upon the caller to determine whether group deletion is supported. (fn GROUP)") (register-definition-prefixes "gnus-cache" '("gnus-")) ;;; Generated autoloads from gnus/gnus-cite.el (register-definition-prefixes "gnus-cite" '("gnus-" "turn-o")) ;;; Generated autoloads from gnus/gnus-cloud.el (register-definition-prefixes "gnus-cloud" '("gnus-cloud-")) ;;; Generated autoloads from gnus/gnus-cus.el (register-definition-prefixes "gnus-cus" '("category-fields" "gnus-")) ;;; Generated autoloads from gnus/gnus-dbus.el (register-definition-prefixes "gnus-dbus" '("gnus-dbus-")) ;;; Generated autoloads from gnus/gnus-delay.el (autoload 'gnus-delay-article "gnus-delay" "\ Delay this article by some time. DELAY is a string, giving the length of the time. Possible values are: * for in minutes (`m'), hours (`h'), days (`d'), weeks (`w'), months (`M'), or years (`Y'); * YYYY-MM-DD for a specific date. The time of day is given by the variable `gnus-delay-default-hour', minute and second are zero. * hh:mm for a specific time. Use 24h format. If it is later than this time, then the deadline is tomorrow, else today. The value of `message-draft-headers' determines which headers are generated when the article is delayed. Remaining headers are generated when the article is sent. (fn DELAY)" '(message-mode)) (autoload 'gnus-delay-send-queue "gnus-delay" "\ Send all the delayed messages that are due now." t) (autoload 'gnus-delay-initialize "gnus-delay" "\ Initialize the gnus-delay package. This sets up a key binding in `message-mode' to delay a message. This tells Gnus to look for delayed messages after getting new news. The optional arg NO-KEYMAP is ignored. Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. (fn &optional NO-KEYMAP NO-CHECK)") (register-definition-prefixes "gnus-delay" '("gnus-delay-")) ;;; Generated autoloads from gnus/gnus-demon.el (register-definition-prefixes "gnus-demon" '("gnus-")) ;;; Generated autoloads from gnus/gnus-diary.el (autoload 'gnus-user-format-function-d "gnus-diary" "\ (fn HEADER)") (autoload 'gnus-user-format-function-D "gnus-diary" "\ (fn HEADER)") (register-definition-prefixes "gnus-diary" '("gnus-")) ;;; Generated autoloads from gnus/gnus-dired.el (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ Convenience method to turn on `gnus-dired-mode'." t) (register-definition-prefixes "gnus-dired" '("gnus-dired-")) ;;; Generated autoloads from gnus/gnus-draft.el (autoload 'gnus-draft-reminder "gnus-draft" "\ Reminder user if there are unsent drafts." t) (register-definition-prefixes "gnus-draft" '("gnus-")) ;;; Generated autoloads from gnus/gnus-dup.el (register-definition-prefixes "gnus-dup" '("gnus-")) ;;; Generated autoloads from gnus/gnus-eform.el (register-definition-prefixes "gnus-eform" '("gnus-edit-form")) ;;; Generated autoloads from gnus/gnus-fun.el (autoload 'gnus--random-face-with-type "gnus-fun" "\ Return file from DIR with extension EXT. Omit matches of OMIT, and process them by FUN. (fn DIR EXT OMIT FUN)") (autoload 'message-goto-eoh "message" nil t) (autoload 'gnus-random-x-face "gnus-fun" "\ Return X-Face header data chosen randomly from `gnus-x-face-directory'. Files matching `gnus-x-face-omit-files' are not considered." t) (autoload 'gnus-insert-random-x-face-header "gnus-fun" "\ Insert a random X-Face header from `gnus-x-face-directory'." t) (autoload 'gnus-x-face-from-file "gnus-fun" "\ Insert an X-Face header based on an image FILE. Depending on `gnus-convert-image-to-x-face-command' it may accept different input formats. (fn FILE)" t) (autoload 'gnus-face-from-file "gnus-fun" "\ Return a Face header based on an image FILE. Depending on `gnus-convert-image-to-face-command' it may accept different input formats. (fn FILE)" t) (autoload 'gnus-convert-face-to-png "gnus-fun" "\ Convert FACE (which is base64-encoded) to a PNG. The PNG is returned as a string. (fn FACE)") (autoload 'gnus-convert-png-to-face "gnus-fun" "\ Convert FILE to a Face. FILE should be a PNG file that's 48x48 and smaller than or equal to 726 bytes. (fn FILE)") (autoload 'gnus-random-face "gnus-fun" "\ Return randomly chosen Face from `gnus-face-directory'. Files matching `gnus-face-omit-files' are not considered." t) (autoload 'gnus-insert-random-face-header "gnus-fun" "\ Insert a random Face header from `gnus-face-directory'.") (register-definition-prefixes "gnus-fun" '("gnus-")) ;;; Generated autoloads from gnus/gnus-gravatar.el (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ Display gravatar in the From header. If gravatar is already displayed, remove it. (fn &optional FORCE)" '(gnus-article-mode gnus-summary-mode)) (autoload 'gnus-treat-mail-gravatar "gnus-gravatar" "\ Display gravatars in the Cc and To headers. If gravatars are already displayed, remove them. (fn &optional FORCE)" '(gnus-article-mode gnus-summary-mode)) (register-definition-prefixes "gnus-gravatar" '("gnus-gravatar-")) ;;; Generated autoloads from gnus/gnus-group.el (autoload 'gnus-fetch-group "gnus-group" "\ Start Gnus if necessary and enter GROUP. If ARTICLES, display those articles. Returns whether the fetching was successful or not. (fn GROUP &optional ARTICLES)" t) (autoload 'gnus-fetch-group-other-frame "gnus-group" "\ Pop up a frame and enter GROUP. (fn GROUP)" t) (autoload 'gnus-read-ephemeral-emacs-bug-group "gnus-group" "\ Browse Emacs bug reports with IDS in an ephemeral group. The arguments have the same meaning as those of `gnus-read-ephemeral-bug-group', which see. (fn IDS &optional WINDOW-CONF)" t) (register-definition-prefixes "gnus-group" '("gnus-")) ;;; Generated autoloads from gnus/gnus-html.el (autoload 'gnus-article-html "gnus-html" "\ (fn &optional HANDLE)") (autoload 'gnus-html-prefetch-images "gnus-html" "\ (fn SUMMARY)") (register-definition-prefixes "gnus-html" '("gnus-")) ;;; Generated autoloads from gnus/gnus-icalendar.el (autoload 'gnus-icalendar-mm-inline "gnus-icalendar" "\ (fn HANDLE)") (register-definition-prefixes "gnus-icalendar" '("gnus-icalendar")) ;;; Generated autoloads from gnus/gnus-int.el (register-definition-prefixes "gnus-int" '("gnus-")) ;;; Generated autoloads from gnus/gnus-kill.el (defalias 'gnus-batch-kill 'gnus-batch-score) (autoload 'gnus-batch-score "gnus-kill" "\ Run batched scoring. Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score" t) (register-definition-prefixes "gnus-kill" '("gnus-")) ;;; Generated autoloads from gnus/gnus-logic.el (register-definition-prefixes "gnus-logic" '("gnus-")) ;;; Generated autoloads from gnus/gnus-mh.el (register-definition-prefixes "gnus-mh" '("gnus-")) ;;; Generated autoloads from gnus/gnus-ml.el (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml") (autoload 'gnus-mailing-list-insinuate "gnus-ml" "\ Setup group parameters from List-Post header. If FORCE is non-nil, replace the old ones. (fn &optional FORCE)" t) (autoload 'gnus-mailing-list-mode "gnus-ml" "\ Minor mode for providing mailing-list commands. \\{gnus-mailing-list-mode-map} This is a minor mode. If called interactively, toggle the `Gnus-Mailing-List mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `gnus-mailing-list-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "gnus-ml" '("gnus-mailing-list-")) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload 'gnus-group-split-setup "gnus-mlspl" "\ Set up the split for `nnmail-split-fancy'. Sets things up so that nnmail-split-fancy is used for mail splitting, and defines the variable nnmail-split-fancy according with group parameters. If AUTO-UPDATE is non-nil (prefix argument accepted, if called interactively), it makes sure nnmail-split-fancy is re-computed before getting new mail, by adding `gnus-group-split-update' to `gnus-get-top-new-news-hook'. A non-nil CATCH-ALL replaces the current value of `gnus-group-split-default-catch-all-group'. This variable is only used by gnus-group-split-update, and only when its CATCH-ALL argument is nil. This argument may contain any fancy split, that will be added as the last split in a `|' split produced by `gnus-group-split-fancy', unless overridden by any group marked as a catch-all group. Typical uses are as simple as the name of a default mail group, but more elaborate fancy splits may also be useful to split mail that doesn't match any of the group-specified splitting rules. See `gnus-group-split-fancy' for details. (fn &optional AUTO-UPDATE CATCH-ALL)" t) (autoload 'gnus-group-split-update "gnus-mlspl" "\ Computes `nnmail-split-fancy' from group params and CATCH-ALL. It does this by calling (gnus-group-split-fancy nil nil CATCH-ALL). If CATCH-ALL is nil, `gnus-group-split-default-catch-all-group' is used instead. This variable is set by `gnus-group-split-setup'. (fn &optional CATCH-ALL)" t) (autoload 'gnus-group-split "gnus-mlspl" "\ Use information from group parameters in order to split mail. See `gnus-group-split-fancy' for more information. `gnus-group-split' is a valid value for `nnmail-split-methods'.") (autoload 'gnus-group-split-fancy "gnus-mlspl" "\ Uses information from group parameters in order to split mail. It can be embedded into `nnmail-split-fancy' lists with the SPLIT (: gnus-group-split-fancy GROUPS NO-CROSSPOST CATCH-ALL) GROUPS may be a regular expression or a list of group names, that will be used to select candidate groups. If it is omitted or nil, all existing groups are considered. if NO-CROSSPOST is omitted or nil, a & split will be returned, otherwise, a | split, that does not allow crossposting, will be returned. For each selected group, a SPLIT is composed like this: if SPLIT-SPEC is specified, this split is returned as-is (unless it is nil: in this case, the group is ignored). Otherwise, if TO-ADDRESS, TO-LIST and/or EXTRA-ALIASES are specified, a regexp that matches any of them is constructed (extra-aliases may be a list). Additionally, if SPLIT-REGEXP is specified, the regexp will be extended so that it matches this regexp too, and if SPLIT-EXCLUDE is specified, RESTRICT clauses will be generated. If CATCH-ALL is nil, no catch-all handling is performed, regardless of catch-all marks in group parameters. Otherwise, if there is no selected group whose SPLIT-REGEXP matches the empty string, nor is there a selected group whose SPLIT-SPEC is `catch-all', this fancy split (say, a group name) will be appended to the returned SPLIT list, as the last element of a `|' SPLIT. For example, given the following group parameters: nnml:mail.bar: ((to-address . \"bar@femail.com\") (split-regexp . \".*@femail\\\\.com\")) nnml:mail.foo: ((to-list . \"foo@nowhere.gov\") (extra-aliases \"foo@localhost\" \"foo-redist@home\") (split-exclude \"bugs-foo\" \"rambling-foo\") (admin-address . \"foo-request@nowhere.gov\")) nnml:mail.others: ((split-spec . catch-all)) Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: (| (& (any \"\\\\(bar@femail\\\\.com\\\\|.*@femail\\\\.com\\\\)\" \"mail.bar\") (any \"\\\\(foo@nowhere\\\\.gov\\\\|foo@localhost\\\\|foo-redist@home\\\\)\" - \"bugs-foo\" - \"rambling-foo\" \"mail.foo\")) \"mail.others\") (fn &optional GROUPS NO-CROSSPOST CATCH-ALL)") (register-definition-prefixes "gnus-mlspl" '("gnus-group-split-")) ;;; Generated autoloads from gnus/gnus-msg.el (autoload 'gnus-msg-mail "gnus-msg" "\ Start editing a mail message to be sent. Like `message-mail', but with Gnus paraphernalia, particularly the Gcc: header for archiving purposes. If Gnus isn't running, a plain `message-mail' setup is used instead. (fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-ACTION YANK-ACTION SEND-ACTIONS RETURN-ACTION)" t) (autoload 'gnus-button-mailto "gnus-msg" "\ Mail to ADDRESS. (fn ADDRESS)") (autoload 'gnus-button-reply "gnus-msg" "\ Like `message-reply'. (fn &optional TO-ADDRESS WIDE)" t) (define-mail-user-agent 'gnus-user-agent 'gnus-msg-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) (register-definition-prefixes "gnus-msg" '("gnus-")) ;;; Generated autoloads from gnus/gnus-notifications.el (autoload 'gnus-notifications "gnus-notifications" "\ Send a notification on new message. This check for new messages that are in group with a level lower or equal to `gnus-notifications-minimum-level' and send a notification using `notifications-notify' for it. This is typically a function to add in `gnus-after-getting-new-news-hook'") (register-definition-prefixes "gnus-notifications" '("gnus-notifications-")) ;;; Generated autoloads from gnus/gnus-picon.el (autoload 'gnus-treat-from-picon "gnus-picon" "\ Display picons in the From header. If picons are already displayed, remove them." '(gnus-article-mode gnus-summary-mode)) (autoload 'gnus-treat-mail-picon "gnus-picon" "\ Display picons in the Cc and To headers. If picons are already displayed, remove them." '(gnus-article-mode gnus-summary-mode)) (autoload 'gnus-treat-newsgroups-picon "gnus-picon" "\ Display picons in the Newsgroups and Followup-To headers. If picons are already displayed, remove them." '(gnus-article-mode gnus-summary-mode)) (register-definition-prefixes "gnus-picon" '("gnus-picon-")) ;;; Generated autoloads from gnus/gnus-range.el (autoload 'gnus-sorted-difference "gnus-range" "\ Return a list of elements of LIST1 that do not appear in LIST2. Both lists have to be sorted over <. The tail of LIST1 is not copied. (fn LIST1 LIST2)") (autoload 'gnus-sorted-ndifference "gnus-range" "\ Return a list of elements of LIST1 that do not appear in LIST2. Both lists have to be sorted over <. LIST1 is modified. (fn LIST1 LIST2)") (autoload 'gnus-sorted-complement "gnus-range" "\ Return a list of elements that are in LIST1 or LIST2 but not both. Both lists have to be sorted over <. (fn LIST1 LIST2)") (autoload 'gnus-intersection "gnus-range" "\ (fn LIST1 LIST2)") (make-obsolete 'gnus-intersection 'seq-intersection "28.1") (autoload 'gnus-sorted-intersection "gnus-range" "\ Return intersection of LIST1 and LIST2. LIST1 and LIST2 have to be sorted over <. (fn LIST1 LIST2)") (defalias 'gnus-set-sorted-intersection #'gnus-sorted-nintersection) (autoload 'gnus-sorted-nintersection "gnus-range" "\ Return intersection of LIST1 and LIST2 by modifying cdr pointers of LIST1. LIST1 and LIST2 have to be sorted over <. (fn LIST1 LIST2)") (autoload 'gnus-sorted-union "gnus-range" "\ Return union of LIST1 and LIST2. LIST1 and LIST2 have to be sorted over <. (fn LIST1 LIST2)") (autoload 'gnus-sorted-nunion "gnus-range" "\ Return union of LIST1 and LIST2 by modifying cdr pointers of LIST1. LIST1 and LIST2 have to be sorted over <. (fn LIST1 LIST2)") (autoload 'gnus-add-to-sorted-list "gnus-range" "\ Add NUM into sorted LIST by side effect. (fn LIST NUM)") (register-definition-prefixes "gnus-range" '("gnus-")) ;;; Generated autoloads from gnus/gnus-registry.el (autoload 'gnus-registry-initialize "gnus-registry" "\ Initialize the Gnus registry." t) (register-definition-prefixes "gnus-registry" '("gnus-")) ;;; Generated autoloads from gnus/gnus-rfc1843.el (register-definition-prefixes "gnus-rfc1843" '("rfc1843-")) ;;; Generated autoloads from gnus/gnus-rmail.el (register-definition-prefixes "gnus-rmail" '("gnus-")) ;;; Generated autoloads from gnus/gnus-salt.el (register-definition-prefixes "gnus-salt" '("gnus-")) ;;; Generated autoloads from gnus/gnus-score.el (register-definition-prefixes "gnus-score" '("gnus-")) ;;; Generated autoloads from gnus/gnus-search.el (register-definition-prefixes "gnus-search" '("gnus-search-")) ;;; Generated autoloads from gnus/gnus-sieve.el (autoload 'gnus-sieve-update "gnus-sieve" "\ Update the Sieve script in gnus-sieve-file, by replacing the region between gnus-sieve-region-start and gnus-sieve-region-end with (gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost), then execute gnus-sieve-update-shell-command. See the documentation for these variables and functions for details." t) (autoload 'gnus-sieve-generate "gnus-sieve" "\ Generate the Sieve script in gnus-sieve-file, by replacing the region between gnus-sieve-region-start and gnus-sieve-region-end with (gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost). See the documentation for these variables and functions for details." t) (autoload 'gnus-sieve-article-add-rule "gnus-sieve" nil '(gnus-article-mode gnus-summary-mode)) (register-definition-prefixes "gnus-sieve" '("gnus-sieve-")) ;;; Generated autoloads from gnus/gnus-spec.el (autoload 'gnus-update-format "gnus-spec" "\ Update the format specification near point. (fn VAR)" t) (register-definition-prefixes "gnus-spec" '("gnus-")) ;;; Generated autoloads from gnus/gnus-srvr.el (register-definition-prefixes "gnus-srvr" '("gnus-")) ;;; Generated autoloads from gnus/gnus-start.el (autoload 'gnus-declare-backend "gnus-start" "\ Declare back end NAME with ABILITIES as a Gnus back end. (fn NAME &rest ABILITIES)") (register-definition-prefixes "gnus-start" '("gnus-")) ;;; Generated autoloads from gnus/gnus-sum.el (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ Handler function for record returned by `gnus-summary-bookmark-make-record'. BOOKMARK is a bookmark name or a bookmark record. (fn BOOKMARK)") (register-definition-prefixes "gnus-sum" '("gnus-")) ;;; Generated autoloads from gnus/gnus-topic.el (register-definition-prefixes "gnus-topic" '("gnus-")) ;;; Generated autoloads from gnus/gnus-undo.el (register-definition-prefixes "gnus-undo" '("gnus-")) ;;; Generated autoloads from gnus/gnus-util.el (register-definition-prefixes "gnus-util" '("gnus-")) ;;; Generated autoloads from gnus/gnus-uu.el (register-definition-prefixes "gnus-uu" '("gnus-")) ;;; Generated autoloads from gnus/gnus-vm.el (register-definition-prefixes "gnus-vm" '("gnus-")) ;;; Generated autoloads from gnus/gnus-win.el (autoload 'gnus-add-configuration "gnus-win" "\ Add the window configuration CONF to `gnus-buffer-configuration'. (fn CONF)") (register-definition-prefixes "gnus-win" '("gnus-")) ;;; Generated autoloads from net/gnutls.el (register-definition-prefixes "gnutls" '("gnutls-" "open-gnutls-stream")) ;;; Generated autoloads from progmodes/go-ts-mode.el (autoload 'go-ts-mode "go-ts-mode" "\ Major mode for editing Go, powered by tree-sitter. \\{go-ts-mode-map} (fn)" t) (autoload 'go-mod-ts-mode "go-ts-mode" "\ Major mode for editing go.mod files, powered by tree-sitter. (fn)" t) (register-definition-prefixes "go-ts-mode" '("go-")) ;;; Generated autoloads from play/gomoku.el (autoload 'gomoku "gomoku" "\ Start a Gomoku game between you and Emacs. If a game is in progress, this command allows you to resume it. If optional arguments N and M are given, an N by M board is used. If prefix arg is given for N, M is prompted for. You and Emacs play in turn by marking a free square. You mark it with X and Emacs marks it with O. The winner is the first to get five contiguous marks horizontally, vertically or in diagonal. You play by moving the cursor over the square you choose and hitting \\\\[gomoku-human-plays]. This program actually plays a simplified or archaic version of the Gomoku game, and ought to be upgraded to use the full modern rules. Use \\[describe-mode] for more info. (fn &optional N M)" t) (register-definition-prefixes "gomoku" '("gomoku-")) ;;; Generated autoloads from net/goto-addr.el (autoload 'goto-address-at-point "goto-addr" "\ Compose a new message to the e-mail address or open URL at point. Compose message to address at point. See documentation for `goto-address-find-address-at-point'. If no e-mail address is found at point, open the URL at or before point using `browse-url'. With a prefix argument, open the URL using `browse-url-secondary-browser-function' instead. (fn &optional EVENT)" t) (autoload 'goto-address "goto-addr" "\ Sets up goto-address functionality in the current buffer. Allows user to use mouse/keyboard command to click to go to a URL or to send e-mail. By default, goto-address binds `goto-address-at-point' to mouse-2 and C-c RET only on URLs and e-mail addresses. Also fontifies the buffer appropriately (see `goto-address-fontify-p' and `goto-address-highlight-p' for more information)." t) (put 'goto-address 'safe-local-eval-function t) (autoload 'goto-address-mode "goto-addr" "\ Minor mode to buttonize URLs and e-mail addresses in the current buffer. This is a minor mode. If called interactively, toggle the `Goto-Address mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `goto-address-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (put 'global-goto-address-mode 'globalized-minor-mode t) (defvar global-goto-address-mode nil "\ Non-nil if Global Goto-Address mode is enabled. See the `global-goto-address-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-goto-address-mode'.") (custom-autoload 'global-goto-address-mode "goto-addr" nil) (autoload 'global-goto-address-mode "goto-addr" "\ Toggle Goto-Address mode in all buffers. With prefix ARG, enable Global Goto-Address mode if ARG is positive; otherwise, disable it. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. Goto-Address mode is enabled in all buffers where `goto-addr-mode--turn-on' would do it. See `goto-address-mode' for more information on Goto-Address mode. (fn &optional ARG)" t) (autoload 'goto-address-prog-mode "goto-addr" "\ Like `goto-address-mode', but only for comments and strings. This is a minor mode. If called interactively, toggle the `Goto-Address-Prog mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `goto-address-prog-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "goto-addr" '("goto-addr")) ;;; Generated autoloads from cedet/semantic/wisent/grammar.el (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ Major mode for editing Wisent grammars. (fn)" t) (register-definition-prefixes "semantic/wisent/grammar" '("semantic-grammar-" "wisent-")) ;;; Generated autoloads from cedet/semantic/bovine/grammar.el (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ Major mode for editing Bovine grammars. (fn)" t) (register-definition-prefixes "semantic/bovine/grammar" '("bovine-" "semantic-grammar-")) ;;; Generated autoloads from cedet/semantic/grammar.el (register-definition-prefixes "semantic/grammar" '("semantic-")) ;;; Generated autoloads from image/gravatar.el (autoload 'gravatar-retrieve "gravatar" "\ Asynchronously retrieve a gravatar for MAIL-ADDRESS. When finished, call CALLBACK as (apply CALLBACK GRAVATAR CBARGS), where GRAVATAR is either an image descriptor, or the symbol `error' if the retrieval failed. (fn MAIL-ADDRESS CALLBACK &optional CBARGS)") (autoload 'gravatar-retrieve-synchronously "gravatar" "\ Synchronously retrieve a gravatar for MAIL-ADDRESS. Value is either an image descriptor, or the symbol `error' if the retrieval failed. (fn MAIL-ADDRESS)") (register-definition-prefixes "gravatar" '("gravatar-")) ;;; Generated autoloads from progmodes/grep.el (defvar grep-window-height nil "\ Number of lines in a grep window. If nil, use `compilation-window-height'.") (custom-autoload 'grep-window-height "grep" t) (defvar grep-highlight-matches 'auto-detect "\ Use special markers to highlight grep matches. Some grep programs are able to surround matches with special markers in grep output. Such markers can be used to highlight matches in grep mode. This requires `font-lock-mode' to be active in grep buffers, so if you have globally disabled `font-lock-mode', you will not get highlighting. This option sets the environment variable GREP_COLORS to specify markers for highlighting and adds the --color option in front of any explicit grep options before starting the grep. When this option is `auto', grep uses `--color=auto' to highlight matches only when it outputs to a terminal (when `grep' is the last command in the pipe), thus avoiding the use of any potentially-harmful escape sequences when standard output goes to a file or pipe. To make grep highlight matches even into a pipe, you need the option `always' that forces grep to use `--color=always' to unconditionally output escape sequences. If the value is `auto-detect' (the default), `grep' will call `grep-compute-defaults' to compute the value. To change the default value, use \\[customize] or call the function `grep-apply-setting'.") (custom-autoload 'grep-highlight-matches "grep" nil) (defvar grep-command nil "\ The default grep command for \\[grep]. If the grep program used supports an option to always include file names in its output (such as the `-H' option to GNU grep), it's a good idea to include it when specifying `grep-command'. In interactive usage, the actual value of this variable is set up by `grep-compute-defaults'; to change the default value, use \\[customize] or call the function `grep-apply-setting'. Also see `grep-command-position'.") (custom-autoload 'grep-command "grep" nil) (defvar grep-find-command nil "\ The default find command for \\[grep-find]. In interactive usage, the actual value of this variable is set up by `grep-compute-defaults'; to change the default value, use \\[customize] or call the function `grep-apply-setting'. This variable can either be a string, or a cons of the form (COMMAND . POSITION). In the latter case, COMMAND will be used as the default command, and point will be placed at POSITION for easier editing.") (custom-autoload 'grep-find-command "grep" nil) (defvar grep-setup-hook nil "\ List of hook functions run by `grep-process-setup' (see `run-hooks').") (custom-autoload 'grep-setup-hook "grep" t) (defvar grep-match-face 'match "\ Face name to use for grep matches.") (defconst grep-regexp-alist `((,(concat "^\\(?:" "\\(?1:[^\0\n]+\\)\\(?3:\0\\)\\(?2:[0-9]+\\):" "\\|" "\\(?1:" "\\(?:[a-zA-Z]:\\)?" "[^\n:]+?[^\n/:]\\):[\11 ]*\\(?2:[1-9][0-9]*\\)[\11 ]*:" "\\)") 1 2 (,(lambda nil (when grep-highlight-matches (let* ((beg (match-end 0)) (end (save-excursion (goto-char beg) (line-end-position))) (mbeg (text-property-any beg end 'font-lock-face grep-match-face))) (when mbeg (- mbeg beg))))) \, (lambda nil (when grep-highlight-matches (let* ((beg (match-end 0)) (end (save-excursion (goto-char beg) (line-end-position))) (mbeg (text-property-any beg end 'font-lock-face grep-match-face)) (mend (and mbeg (next-single-property-change mbeg 'font-lock-face nil end)))) (when mend (- mend beg 1)))))) nil nil (3 '(face nil display ":"))) ("^Binary file \\(.+\\) matches" 1 nil nil 0 1)) "\ Regexp used to match grep hits. See `compilation-error-regexp-alist' for format details.") (defvar grep-program (purecopy "grep") "\ The default grep program for `grep-command' and `grep-find-command'. This variable's value takes effect when `grep-compute-defaults' is called.") (defvar find-program (purecopy "find") "\ The default find program. This is used by commands like `grep-find-command', `find-dired' and others.") (defvar xargs-program (purecopy "xargs") "\ The default xargs program for `grep-find-command'. See `grep-find-use-xargs'. This variable's value takes effect when `grep-compute-defaults' is called.") (defvar grep-find-use-xargs nil "\ How to invoke find and grep. If `exec', use `find -exec {} ;'. If `exec-plus' use `find -exec {} +'. If `gnu', use `find -print0' and `xargs -0'. If `gnu-sort', use `find -print0', `sort -z' and `xargs -0'. Any other value means to use `find -print' and `xargs'. This variable's value takes effect when `grep-compute-defaults' is called.") (custom-autoload 'grep-find-use-xargs "grep" nil) (defvar grep-history nil "\ History list for grep.") (defvar grep-find-history nil "\ History list for `grep-find'.") (autoload 'grep-process-setup "grep" "\ Setup compilation variables and buffer for `grep'. Set up `compilation-exit-message-function' and run `grep-setup-hook'.") (autoload 'grep-compute-defaults "grep" "\ Compute the defaults for the `grep' command. The value depends on `grep-command', `grep-template', `grep-use-null-device', `grep-find-command', `grep-find-template', `grep-use-null-filename-separator', `grep-find-use-xargs', `grep-highlight-matches', and `grep-quoting-style'.") (autoload 'grep-mode "grep" "\ Sets `grep-last-buffer' and `compilation-window-height'. (fn)") (autoload 'grep "grep" "\ Run Grep with user-specified COMMAND-ARGS. The output from the command goes to the \"*grep*\" buffer. While Grep runs asynchronously, you can use \\[next-error] (M-x next-error), or \\\\[compile-goto-error] in the *grep* buffer, to go to the lines where Grep found matches. To kill the Grep job before it finishes, type \\[kill-compilation]. Noninteractively, COMMAND-ARGS should specify the Grep command-line arguments. For doing a recursive `grep', see the `rgrep' command. For running Grep in a specific directory, see `lgrep'. This command uses a special history list for its COMMAND-ARGS, so you can easily repeat a grep command. A prefix argument says to default the COMMAND-ARGS based on the current tag the cursor is over, substituting it into the last Grep command in the Grep command history (or into `grep-command' if that history list is empty). (fn COMMAND-ARGS)" t) (autoload 'grep-find "grep" "\ Run grep via find, with user-specified args COMMAND-ARGS. Collect output in the \"*grep*\" buffer. While find runs asynchronously, you can use the \\[next-error] command to find the text that grep hits refer to. This command uses a special history list for its arguments, so you can easily repeat a find command. (fn COMMAND-ARGS)" t) (defalias 'find-grep #'grep-find) (autoload 'lgrep "grep" "\ Run grep, searching for REGEXP in FILES in directory DIR. The search is limited to file names matching shell pattern FILES. FILES may use abbreviations defined in `grep-files-aliases', e.g. entering `ch' is equivalent to `*.[ch]'. As whitespace triggers completion when entering a pattern, including it requires quoting, e.g. `\\[quoted-insert]'. With \\[universal-argument] prefix, you can edit the constructed shell command line before it is executed. With two \\[universal-argument] prefixes, directly edit and run `grep-command'. Collect output in the \"*grep*\" buffer. While grep runs asynchronously, you can use \\[next-error] (M-x next-error), or \\\\[compile-goto-error] in the grep output buffer, to go to the lines where grep found matches. This command shares argument histories with \\[rgrep] and \\[grep]. If CONFIRM is non-nil, the user will be given an opportunity to edit the command before it's run. (fn REGEXP &optional FILES DIR CONFIRM)" t) (autoload 'rgrep "grep" "\ Recursively grep for REGEXP in FILES in directory tree rooted at DIR. The search is limited to file names matching shell pattern FILES. FILES may use abbreviations defined in `grep-files-aliases', e.g. entering `ch' is equivalent to `*.[ch]'. As whitespace triggers completion when entering a pattern, including it requires quoting, e.g. `\\[quoted-insert]'. With \\[universal-argument] prefix, you can edit the constructed shell command line before it is executed. With two \\[universal-argument] prefixes, directly edit and run `grep-find-command'. Collect output in the \"*grep*\" buffer. While the recursive grep is running, you can use \\[next-error] (M-x next-error), or \\\\[compile-goto-error] in the grep output buffer, to visit the lines where matches were found. To kill the job before it finishes, type \\[kill-compilation]. This command shares argument histories with \\[lgrep] and \\[grep-find]. When called programmatically and FILES is nil, REGEXP is expected to specify a command to run. If CONFIRM is non-nil, the user will be given an opportunity to edit the command before it's run. Interactively, the user can use \\\\[read-regexp-toggle-case-fold] while entering the regexp to indicate whether the grep should be case sensitive or not. (fn REGEXP &optional FILES DIR CONFIRM)" t) (autoload 'zrgrep "grep" "\ Recursively grep for REGEXP in gzipped FILES in tree rooted at DIR. Like `rgrep' but uses `zgrep' for `grep-program', sets the default file name to `*.gz', and sets `grep-highlight-matches' to `always'. If CONFIRM is non-nil, the user will be given an opportunity to edit the command before it's run. (fn REGEXP &optional FILES DIR CONFIRM TEMPLATE)" t) (defalias 'rzgrep #'zrgrep) (register-definition-prefixes "grep" '("grep-" "kill-grep" "rgrep-")) ;;; Generated autoloads from cedet/semantic/symref/grep.el (register-definition-prefixes "semantic/symref/grep" '("semantic-symref-")) ;;; Generated autoloads from gnus/gssapi.el (register-definition-prefixes "gssapi" '("gssapi-program" "open-gssapi-stream")) ;;; Generated autoloads from progmodes/gud.el (autoload 'gud-gdb "gud" "\ Run gdb passing it COMMAND-LINE as arguments. If COMMAND-LINE names a program FILE to debug, gdb will run in a buffer named *gud-FILE*, and the directory containing FILE becomes the initial working directory and source-file directory for your debugger. If you don't want `default-directory' to change to the directory of FILE, specify FILE without leading directories, in which case FILE should reside either in the directory of the buffer from which this command is invoked, or it can be found by searching PATH. If COMMAND-LINE requests that gdb attaches to a process PID, gdb will run in *gud-PID*, otherwise it will run in *gud*; in these cases the initial working directory is the `default-directory' of the buffer in which this command was invoked. (fn COMMAND-LINE)" t) (autoload 'sdb "gud" "\ Run sdb on program FILE in buffer *gud-FILE*. The directory containing FILE becomes the initial working directory and source-file directory for your debugger. (fn COMMAND-LINE)" t) (autoload 'dbx "gud" "\ Run dbx on program FILE in buffer *gud-FILE*. The directory containing FILE becomes the initial working directory and source-file directory for your debugger. (fn COMMAND-LINE)" t) (autoload 'xdb "gud" "\ Run xdb on program FILE in buffer *gud-FILE*. The directory containing FILE becomes the initial working directory and source-file directory for your debugger. You can set the variable `gud-xdb-directories' to a list of program source directories if your program contains sources from more than one directory. (fn COMMAND-LINE)" t) (autoload 'perldb "gud" "\ Debug a perl program with gud. Interactively, this will prompt you for a command line. Noninteractively, COMMAND-LINE should be on the form \"perl -d perl-file.pl\". The directory containing the perl program becomes the initial working directory and source-file directory for your debugger. (fn COMMAND-LINE)" t) (autoload 'pdb "gud" "\ Run COMMAND-LINE in the `*gud-FILE*' buffer to debug Python programs. COMMAND-LINE should include the pdb executable name (`gud-pdb-command-name') and the file to be debugged. If called interactively, the command line will be prompted for. The directory containing this file becomes the initial working directory and source-file directory for your debugger. (fn COMMAND-LINE)" t) (autoload 'guiler "gud" "\ Run guiler on program FILE in buffer `*gud-FILE*'. The directory containing FILE becomes the initial working directory and source-file directory for your debugger. (fn COMMAND-LINE)" t) (autoload 'jdb "gud" "\ Run jdb with command line COMMAND-LINE in a buffer. The buffer is named \"*gud*\" if no initial class is given or \"*gud-*\" if there is. If the \"-classpath\" switch is given, omit all whitespace between it and its value. See `gud-jdb-use-classpath' and `gud-jdb-classpath' documentation for information on how jdb accesses source files. Alternatively (if `gud-jdb-use-classpath' is nil), see `gud-jdb-directories' for the original source file access method. For general information about commands available to control jdb from gud, see `gud-mode'. (fn COMMAND-LINE)" t) (autoload 'gdb-script-mode "gud" "\ Major mode for editing GDB scripts. (fn)" t) (defvar gud-tooltip-mode nil "\ Non-nil if Gud-Tooltip mode is enabled. See the `gud-tooltip-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `gud-tooltip-mode'.") (custom-autoload 'gud-tooltip-mode "gud" nil) (autoload 'gud-tooltip-mode "gud" "\ Toggle the display of GUD tooltips. This is a global minor mode. If called interactively, toggle the `Gud-Tooltip mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='gud-tooltip-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'lldb "gud" "\ Run LLDB passing it COMMAND-LINE as arguments. If COMMAND-LINE names a program FILE to debug, LLDB will run in a buffer named *gud-FILE*, and the directory containing FILE becomes the initial working directory and source-file directory for the debug session. If you don't want `default-directory' to change to the directory of FILE, specify FILE without leading directories, in which case FILE should reside either in the directory of the buffer from which this command is invoked, or it can be found by searching PATH. If COMMAND-LINE requests that LLDB attaches to a process PID, LLDB will run in *gud-PID*, otherwise it will run in *gud*; in these cases the initial working directory is the `default-directory' of the buffer in which this command was invoked. Please note that completion framework that complete while you type, like Corfu, do not work well with this mode. You should consider to turn them off in this mode. This command runs functions from `lldb-mode-hook'. (fn COMMAND-LINE)" t) (register-definition-prefixes "gud" '("gdb-" "gud-")) ;;; Generated autoloads from emacs-lisp/gv.el (autoload 'gv-get "gv" "\ Build the code that applies DO to PLACE. PLACE must be a valid generalized variable. DO must be a function; it will be called with 2 arguments: GETTER and SETTER, where GETTER is a (copyable) Elisp expression that returns the value of PLACE, and SETTER is a function which returns the code to set PLACE when called with a (not necessarily copyable) Elisp expression that returns the value to set it to. DO must return an Elisp expression. (fn PLACE DO)") (autoload 'gv-letplace "gv" "\ Build the code manipulating the generalized variable PLACE. GETTER will be bound to a copyable expression that returns the value of PLACE. SETTER will be bound to a function that takes an expression V and returns a new expression that sets PLACE to V. BODY should return some Elisp expression E manipulating PLACE via GETTER and SETTER. The returned value will then be an Elisp expression that first evaluates all the parts of PLACE that can be evaluated and then runs E. (fn (GETTER SETTER) PLACE &rest BODY)" nil t) (function-put 'gv-letplace 'lisp-indent-function 2) (autoload 'gv-define-expander "gv" "\ Use HANDLER to handle NAME as a generalized var. NAME is a symbol: the name of a function, macro, or special form. HANDLER is a function which takes an argument DO followed by the same arguments as NAME. DO is a function as defined in `gv-get'. (fn NAME HANDLER)" nil t) (function-put 'gv-define-expander 'lisp-indent-function 1) (autoload 'gv--defun-declaration "gv" "\ (fn SYMBOL NAME ARGS HANDLER &optional FIX)") (defsubst gv--expander-defun-declaration (&rest args) (apply #'gv--defun-declaration 'gv-expander args)) (defsubst gv--setter-defun-declaration (&rest args) (apply #'gv--defun-declaration 'gv-setter args)) (or (assq 'gv-expander defun-declarations-alist) (let ((x (list 'gv-expander #'gv--expander-defun-declaration))) (push x macro-declarations-alist) (push x defun-declarations-alist))) (or (assq 'gv-setter defun-declarations-alist) (push (list 'gv-setter #'gv--setter-defun-declaration) defun-declarations-alist)) (let ((spec (get 'compiler-macro 'edebug-declaration-spec))) (put 'gv-expander 'edebug-declaration-spec spec) (put 'gv-setter 'edebug-declaration-spec spec)) (autoload 'gv-define-setter "gv" "\ Define a setter method for generalized variable NAME. This macro is an easy-to-use substitute for `gv-define-expander' that works well for simple place forms. Assignments of VAL to (NAME ARGS...) are expanded by binding the argument forms (VAL ARGS...) according to ARGLIST, then executing BODY, which must return a Lisp form that does the assignment. The first arg in ARGLIST (the one that receives VAL) receives an expression which can do arbitrary things, whereas the other arguments are all guaranteed to be pure and copyable. Example use: (gv-define-setter aref (v a i) \\=`(aset ,a ,i ,v)) (fn NAME ARGLIST &rest BODY)" nil t) (function-put 'gv-define-setter 'lisp-indent-function 2) (autoload 'gv-define-simple-setter "gv" "\ Define a simple setter method for generalized variable NAME. This macro is an easy-to-use substitute for `gv-define-expander' that works well for simple place forms. Assignments of VAL to (NAME ARGS...) are turned into calls of the form (SETTER ARGS... VAL). If FIX-RETURN is non-nil, then SETTER is not assumed to return VAL and instead the assignment is turned into something equivalent to (let ((temp VAL)) (SETTER ARGS... temp) temp) so as to preserve the semantics of `setf'. (fn NAME SETTER &optional FIX-RETURN)" nil t) (autoload 'setf "gv" "\ Set each PLACE to the value of its VAL. This is a generalized version of `setq'; the PLACEs may be symbolic references such as (car x) or (aref x i), as well as plain symbols. For example, (setf (cadr x) y) is equivalent to (setcar (cdr x) y). The return value is the last VAL in the list. (fn PLACE VAL PLACE VAL ...)" nil t) (def-edebug-elem-spec 'gv-place '(form)) (autoload 'gv-ref "gv" "\ Return a reference to PLACE. This is like the `&' operator of the C language. Note: this only works reliably with lexical binding mode, except for very simple PLACEs such as (symbol-function \\='foo) which will also work in dynamic binding mode. (fn PLACE)" nil t) (register-definition-prefixes "gv" '("gv-" "make-obsolete-generalized-variable")) ;;; Generated autoloads from play/handwrite.el (autoload 'handwrite "handwrite" "\ Turn the buffer into a \"handwritten\" document. The functions `handwrite-10pt', `handwrite-11pt', `handwrite-12pt' and `handwrite-13pt' set up for various sizes of output. Variables: `handwrite-linespace' (default 12) `handwrite-fontsize' (default 11) `handwrite-numlines' (default 60) `handwrite-pagenumbering' (default nil)" t) (register-definition-prefixes "handwrite" '("handwrite-" "menu-bar-handwrite-map")) ;;; Generated autoloads from leim/quail/hangul.el (autoload 'hangul-input-method-activate "quail/hangul" "\ Activate Hangul input method INPUT-METHOD. FUNC is a function to handle input key. HELP-TEXT is a text set in `hangul-input-method-help-text'. (fn INPUT-METHOD FUNC HELP-TEXT &rest ARGS)") (register-definition-prefixes "quail/hangul" '("hangul" "notzerop")) ;;; Generated autoloads from language/hanja-util.el (register-definition-prefixes "hanja-util" '("han")) ;;; Generated autoloads from play/hanoi.el (autoload 'hanoi "hanoi" "\ Towers of Hanoi diversion. Use NRINGS rings. (fn NRINGS)" t) (autoload 'hanoi-unix "hanoi" "\ Towers of Hanoi, 32-bit UNIX doomsday version. Display 32-ring towers that have been progressing at one move per second since 1970-01-01 00:00:00 UTC. Repent before ring 31 moves." t) (autoload 'hanoi-unix-64 "hanoi" "\ Like `hanoi-unix', but with a 64-bit clock." t) (register-definition-prefixes "hanoi" '("hanoi-")) ;;; Generated autoloads from mail/hashcash.el (autoload 'hashcash-insert-payment "hashcash" "\ Insert X-Payment and X-Hashcash headers with a payment for ARG. (fn ARG)" t) (autoload 'hashcash-insert-payment-async "hashcash" "\ Insert X-Payment and X-Hashcash headers with a payment for ARG Only start calculation. Results are inserted when ready. (fn ARG)" t) (autoload 'hashcash-verify-payment "hashcash" "\ Verify a hashcash payment. (fn TOKEN &optional RESOURCE AMOUNT)") (autoload 'mail-add-payment "hashcash" "\ Add X-Payment: and X-Hashcash: headers with a hashcash payment for each recipient address. Prefix arg sets default payment temporarily. Set ASYNC to t to start asynchronous calculation. (See `mail-add-payment-async'). (fn &optional ARG ASYNC)" t) (autoload 'mail-add-payment-async "hashcash" "\ Add X-Payment: and X-Hashcash: headers with a hashcash payment for each recipient address. Prefix arg sets default payment temporarily. Calculation is asynchronous. (fn &optional ARG)" t) (autoload 'mail-check-payment "hashcash" "\ Look for a valid X-Payment: or X-Hashcash: header. Prefix arg sets default accept amount temporarily. (fn &optional ARG)" t) (register-definition-prefixes "hashcash" '("hashcash-")) ;;; Generated autoloads from progmodes/heex-ts-mode.el (autoload 'heex-ts-mode "heex-ts-mode" "\ Major mode for editing HEEx, powered by tree-sitter. (fn)" t) (register-definition-prefixes "heex-ts-mode" '("heex-ts-")) ;;; Generated autoloads from help-at-pt.el (autoload 'help-at-pt-string "help-at-pt" "\ Return the help-echo string at point. Normally, the string produced by the `help-echo' text or overlay property, or nil, is returned. If KBD is non-nil, `kbd-help' is used instead, and any `help-echo' property is ignored. In this case, the return value can also be t, if that is the value of the `kbd-help' property. (fn &optional KBD)") (autoload 'help-at-pt-kbd-string "help-at-pt" "\ Return the keyboard help string at point. If the `kbd-help' text or overlay property at point produces a string, return it. Otherwise, use the `help-echo' property. If this produces no string either, return nil.") (autoload 'display-local-help "help-at-pt" "\ Display local help in the echo area. This command, by default, displays a short help message, namely the string produced by the `kbd-help' property at point. If `kbd-help' does not produce a string, but the `help-echo' property does, then that string is printed instead. The string is passed through `substitute-command-keys' before it is displayed. If INHIBIT-WARNING is non-nil, this prevents display of a message in case there is no help. If DESCRIBE-BUTTON in non-nil (interactively, the prefix arg), and there's a button/widget at point, pop a buffer describing that button/widget instead. (fn &optional INHIBIT-WARNING DESCRIBE-BUTTON)" t) (autoload 'help-at-pt-cancel-timer "help-at-pt" "\ Cancel any timer set by `help-at-pt-set-timer'. This disables `help-at-pt-display-when-idle'." t) (autoload 'help-at-pt-set-timer "help-at-pt" "\ Enable `help-at-pt-display-when-idle'. This is done by setting a timer, if none is currently active." t) (defvar help-at-pt-display-when-idle 'never "\ Automatically show local help on point-over. If the value is t, the string obtained from any `kbd-help' or `help-echo' property at point is automatically printed in the echo area, if nothing else is already displayed there, or after a quit. If both `kbd-help' and `help-echo' produce help strings, `kbd-help' is used. If the value is a list, the help only gets printed if there is a text or overlay property at point that is included in this list. Suggested properties are `keymap', `local-map', `button' and `kbd-help'. Any value other than t or a non-empty list disables the feature. The text printed from the `help-echo' property is often only relevant when using the mouse. The presence of a `kbd-help' property guarantees that non mouse specific help is available. This variable only takes effect after a call to `help-at-pt-set-timer'. The help gets printed after Emacs has been idle for `help-at-pt-timer-delay' seconds. You can call `help-at-pt-cancel-timer' to cancel the timer set by, and the effect of, `help-at-pt-set-timer'. When this variable is set through Custom, `help-at-pt-set-timer' is called automatically, unless the value is `never', in which case `help-at-pt-cancel-timer' is called. Specifying an empty list of properties through Custom will set the timer, thus enabling buffer local values. It sets the actual value to nil. Thus, Custom distinguishes between a nil value and other values that disable the feature, which Custom identifies with `never'. The default is `never'.") (custom-autoload 'help-at-pt-display-when-idle "help-at-pt" nil) (autoload 'scan-buf-move-to-region "help-at-pt" "\ Go to the start of the next region with non-nil PROP property. Then run HOOK, which should be a quoted symbol that is a normal hook variable, or an expression evaluating to such a symbol. Adjacent areas with different non-nil PROP properties are considered different regions. With numeric argument ARG, move to the start of the ARGth next such region, then run HOOK. If ARG is negative, move backward. If point is already in a region, then that region does not count toward ARG. If ARG is 0 and point is inside a region, move to the start of that region. If ARG is 0 and point is not in a region, print a message to that effect, but do not move point and do not run HOOK. If there are not enough regions to move over, an error results and the number of available regions is mentioned in the error message. Point is not moved and HOOK is not run. (fn PROP &optional ARG HOOK)") (autoload 'scan-buf-next-region "help-at-pt" "\ Go to the start of the next region with non-nil help-echo. Print the help found there using `display-local-help'. Adjacent areas with different non-nil help-echo properties are considered different regions. With numeric argument ARG, move to the start of the ARGth next help-echo region. If ARG is negative, move backward. If point is already in a help-echo region, then that region does not count toward ARG. If ARG is 0 and point is inside a help-echo region, move to the start of that region. If ARG is 0 and point is not in such a region, just print a message to that effect. If there are not enough regions to move over, an error results and the number of available regions is mentioned in the error message. A potentially confusing subtlety is that point can be in a help-echo region without any local help being available. This is because `help-echo' can be a function evaluating to nil. This rarely happens in practice. (fn &optional ARG)" t) (autoload 'scan-buf-previous-region "help-at-pt" "\ Go to the start of the previous region with non-nil help-echo. Print the help found there using `display-local-help'. Adjacent areas with different non-nil help-echo properties are considered different regions. With numeric argument ARG, behaves like `scan-buf-next-region' with argument -ARG. (fn &optional ARG)" t) (register-definition-prefixes "help-at-pt" '("help-at-pt-" "scan-buf-move-hook")) ;;; Generated autoloads from help-fns.el (autoload 'describe-function "help-fns" "\ Display the full documentation of FUNCTION (a symbol). When called from Lisp, FUNCTION may also be a function object. See the `help-enable-symbol-autoload' variable for special handling of autoloaded functions. (fn FUNCTION)" t) (autoload 'describe-command "help-fns" "\ Display the full documentation of COMMAND (a symbol). When called from Lisp, COMMAND may also be a function object. (fn COMMAND)" t) (autoload 'help-C-file-name "help-fns" "\ Return the name of the C file where SUBR-OR-VAR is defined. KIND should be `var' for a variable or `subr' for a subroutine. If we can't find the file name, nil is returned. (fn SUBR-OR-VAR KIND)") (autoload 'find-lisp-object-file-name "help-fns" "\ Guess the file that defined the Lisp object OBJECT, of type TYPE. OBJECT should be a symbol associated with a function, variable, or face; alternatively, it can be a function definition. If TYPE is `defvar', search for a variable definition. If TYPE is `defface', search for a face definition. If TYPE is not a symbol, search for a function definition. The return value is the absolute name of a readable file where OBJECT is defined. If several such files exist, preference is given to a file found via `load-path'. The return value can also be `C-source', which means that OBJECT is a function or variable defined in C, but it's currently unknown where. If no suitable file is found, return nil. If ALSO-C-SOURCE is non-nil, instead of returning `C-source', this function will attempt to locate the definition of OBJECT in the C sources, too. (fn OBJECT TYPE &optional ALSO-C-SOURCE)") (autoload 'describe-function-1 "help-fns" "\ (fn FUNCTION)") (autoload 'variable-at-point "help-fns" "\ Return the bound variable symbol found at or before point. Return 0 if there is no such symbol. If ANY-SYMBOL is non-nil, don't insist the symbol be bound. (fn &optional ANY-SYMBOL)") (autoload 'describe-variable "help-fns" "\ Display the full documentation of VARIABLE (a symbol). Returns the documentation as a string, also. If VARIABLE has a buffer-local value in BUFFER or FRAME (default to the current buffer and current frame), it is displayed along with the global value. (fn VARIABLE &optional BUFFER FRAME)" t) (autoload 'describe-face "help-fns" "\ Display the properties of face FACE on FRAME. Interactively, FACE defaults to the faces of the character after point and FRAME defaults to the selected frame. If the optional argument FRAME is given, report on face FACE in that frame. If FRAME is t, report on the defaults for face FACE (for new frames). If FRAME is omitted or nil, use the selected frame. (fn FACE &optional FRAME)" t) (autoload 'describe-symbol "help-fns" "\ Display the full documentation of SYMBOL. Will show the info of SYMBOL as a function, variable, and/or face. Optional arguments BUFFER and FRAME specify for which buffer and frame to show the information about SYMBOL; they default to the current buffer and the selected frame, respectively. (fn SYMBOL &optional BUFFER FRAME)" t) (autoload 'describe-syntax "help-fns" "\ Describe the syntax specifications in the syntax table of BUFFER. The descriptions are inserted in a help buffer, which is then displayed. BUFFER defaults to the current buffer. (fn &optional BUFFER)" t) (autoload 'describe-categories "help-fns" "\ Describe the category specifications in the current category table. The descriptions are inserted in a buffer, which is then displayed. If BUFFER is non-nil, then describe BUFFER's category table instead. BUFFER should be a buffer or a buffer name. (fn &optional BUFFER)" t) (autoload 'describe-keymap "help-fns" "\ Describe key bindings in KEYMAP. When called interactively, prompt for a variable that has a keymap value. (fn KEYMAP)" t) (autoload 'describe-mode "help-fns" "\ Display documentation of current major mode and minor modes. A brief summary of the minor modes comes first, followed by the major mode description. This is followed by detailed descriptions of the minor modes, each on a separate page. For this to work correctly for a minor mode, the mode's indicator variable (listed in `minor-mode-alist') must also be a function whose documentation describes the minor mode. If called from Lisp with a non-nil BUFFER argument, display documentation for the major and minor modes of that buffer. When `describe-mode-outline' is non-nil, Outline minor mode is enabled in the Help buffer. (fn &optional BUFFER)" t) (autoload 'describe-widget "help-fns" "\ Display a buffer with information about a widget. You can use this command to describe buttons (e.g., the links in a *Help* buffer), editable fields of the customization buffers, etc. Interactively, click on a widget to describe it, or hit RET to describe the widget at point. When called from Lisp, POS may be a buffer position or a mouse position list. Calls each function of the list `describe-widget-functions' in turn, until one of them returns non-nil. (fn &optional POS)" t) (autoload 'doc-file-to-man "help-fns" "\ Produce an nroff buffer containing the doc-strings from the DOC file. (fn FILE)" t) (autoload 'doc-file-to-info "help-fns" "\ Produce a texinfo buffer with sorted doc-strings from the DOC file. (fn FILE)" t) (autoload 'help-fns-function-name "help-fns" "\ Return a short buttonized string representing FUNCTION. The string is propertized with a button; clicking on that provides further details about FUNCTION. FUNCTION can be a function, a built-in, a keyboard macro, or a compile function. This function is intended to be used to display various callable symbols in buffers in a way that allows the user to find out more details about the symbols. (fn FUNCTION)") (register-definition-prefixes "help-fns" '("describe-" "help-" "keymap-name-history")) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ Non-nil means give more info about Help command in three steps. The three steps are simple prompt, prompt with all options, and window listing and describing the options. A value of nil means skip the middle step, so that \\[help-command] \\[help-command] gives the window that lists the options.") (custom-autoload 'three-step-help "help-macro" t) (autoload 'help--help-screen "help-macro" "\ (fn HELP-LINE HELP-TEXT HELPED-MAP BUFFER-NAME)") (register-definition-prefixes "help-macro" '("make-help-screen")) ;;; Generated autoloads from help-mode.el (autoload 'help-mode--add-function-link "help-mode" "\ (fn STR FUN)") (autoload 'help-mode "help-mode" "\ Major mode for viewing help text and navigating references in it. Also see the `help-enable-variable-value-editing' variable. Commands: \\{help-mode-map} (fn)" t) (autoload 'help-mode-setup "help-mode" "\ Enter Help mode in the current buffer.") (make-obsolete 'help-mode-setup 'nil "29.1") (autoload 'help-mode-finish "help-mode" "\ Finalize Help mode setup in current buffer.") (make-obsolete 'help-mode-finish 'nil "29.1") (autoload 'help-setup-xref "help-mode" "\ Invoked from commands using the \"*Help*\" buffer to install some xref info. ITEM is a (FUNCTION . ARGS) pair appropriate for recreating the help buffer after following a reference. INTERACTIVE-P is non-nil if the calling command was invoked interactively. In this case the stack of items for help buffer \"back\" buttons is cleared. This should be called very early, before the output buffer is cleared, because we want to record the \"previous\" position of point so we can restore it properly when going back. (fn ITEM INTERACTIVE-P)") (autoload 'help-buffer "help-mode" "\ Return the name of a buffer for inserting help. If `help-xref-following' is non-nil and the current buffer is derived from `help-mode', this is the name of the current buffer. Otherwise, return \"*Help*\", creating a buffer with that name if it does not already exist.") (autoload 'help-make-xrefs "help-mode" "\ Parse and hyperlink documentation cross-references in the given BUFFER. Find cross-reference information in a buffer and activate such cross references for selection with `help-follow-symbol'. Cross-references have the canonical form `...' and the type of reference may be disambiguated by the preceding word(s) used in `help-xref-symbol-regexp'. Faces only get cross-referenced if preceded or followed by the word `face'. Variables without variable documentation do not get cross-referenced, unless preceded by the word `variable' or `option'. If the variable `help-xref-mule-regexp' is non-nil, find also cross-reference information related to multilingual environment (e.g., coding-systems). This variable is also used to disambiguate the type of reference as the same way as `help-xref-symbol-regexp'. A special reference `back' is made to return back through a stack of help buffers. Variable `help-back-label' specifies the text for that. (fn &optional BUFFER)" t) (autoload 'help-xref-button "help-mode" "\ Make a hyperlink for cross-reference text previously matched. MATCH-NUMBER is the subexpression of interest in the last matched regexp. TYPE is the type of button to use. Any remaining arguments are passed to the button's help-function when it is invoked. See `help-make-xrefs'. This function removes quotes surrounding the match if the variable `help-clean-buttons' is non-nil. (fn MATCH-NUMBER TYPE &rest ARGS)") (autoload 'help-insert-xref-button "help-mode" "\ Insert STRING and make a hyperlink from cross-reference text on it. TYPE is the type of button to use. Any remaining arguments are passed to the button's help-function when it is invoked. See `help-make-xrefs'. (fn STRING TYPE &rest ARGS)") (autoload 'help-xref-on-pp "help-mode" "\ Add xrefs for symbols in `pp's output between FROM and TO. (fn FROM TO)") (define-obsolete-function-alias 'help-xref-interned #'describe-symbol "25.1") (autoload 'help-bookmark-jump "help-mode" "\ Jump to `help-mode' bookmark BOOKMARK. Handler function for record returned by `help-bookmark-make-record'. BOOKMARK is a bookmark name or a bookmark record. (fn BOOKMARK)") (register-definition-prefixes "help-mode" '("describe-symbol-backends" "help-")) ;;; Generated autoloads from emacs-lisp/helper.el (autoload 'Helper-describe-bindings "helper" "\ Describe local key bindings of current mode." t) (autoload 'Helper-help "helper" "\ Provide help for current mode." t) (register-definition-prefixes "helper" '("Helper-")) ;;; Generated autoloads from hex-util.el (register-definition-prefixes "hex-util" '("decode-hex-string" "encode-hex-string")) ;;; Generated autoloads from hexl.el (autoload 'hexl-mode "hexl" "\ A mode for editing binary files in hex dump format. \\This is not an ordinary major mode; it alters some aspects of the current mode's behavior, but not all; also, you can exit Hexl mode and return to the previous mode using \\[hexl-mode-exit]. This function automatically converts a buffer into the hexl format using the function `hexlify-buffer'. Each line in the buffer has an \"address\" (displayed in hexadecimal) representing the offset into the file that the characters on this line are at and 16 characters from the file (displayed as hexadecimal values grouped every `hexl-bits' bits, and as their ASCII values). If any of the characters (displayed as ASCII characters) are unprintable (control or meta characters) they will be replaced by periods. If `hexl-mode' is invoked with an argument the buffer is assumed to be in hexl format. A sample format: HEX ADDR: 0011 2233 4455 6677 8899 aabb ccdd eeff ASCII-TEXT -------- ---- ---- ---- ---- ---- ---- ---- ---- ---------------- 00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64 This is hexl-mod 00000010: 652e 2020 4561 6368 206c 696e 6520 7265 e. Each line re 00000020: 7072 6573 656e 7473 2031 3620 6279 7465 presents 16 byte 00000030: 7320 6173 2068 6578 6164 6563 696d 616c s as hexadecimal 00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74 ASCII.and print 00000050: 6162 6c65 2041 5343 4949 2063 6861 7261 able ASCII chara 00000060: 6374 6572 732e 2020 416e 7920 636f 6e74 cters. Any cont 00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949 rol or non-ASCII 00000080: 2063 6861 7261 6374 6572 730a 6172 6520 characters.are 00000090: 6469 7370 6c61 7965 6420 6173 2070 6572 displayed as per 000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e iods in the prin 000000b0: 7461 626c 6520 6368 6172 6163 7465 7220 table character 000000c0: 7265 6769 6f6e 2e0a region.. Movement is as simple as movement in a normal Emacs text buffer. Most cursor movement bindings are the same: use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line] to move the cursor left, right, down, and up. Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are also supported. There are several ways to change text in hexl mode: Self-inserting characters are bound to `hexl-self-insert' so you can simply type the character and it will insert itself (actually overstrike) into the buffer. However, inserting non-ASCII characters requires caution: the buffer's coding-system should correspond to the encoding on disk, and multibyte characters should be inserted with cursor on the first byte of a multibyte sequence whose length is identical to the length of the multibyte sequence to be inserted, otherwise this could produce invalid multibyte sequences. Non-ASCII characters in ISO-2022 encodings should preferably inserted byte by byte, to avoid problems caused by the designation sequences before the actual characters. \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if it isn't bound to self-insert. An octal number can be supplied in place of another key to insert the octal number's ASCII representation. \\[hexl-insert-hex-char] will insert a given hexadecimal value into the buffer at the current address. \\[hexl-insert-octal-char] will insert a given octal value into the buffer at the current address. \\[hexl-insert-decimal-char] will insert a given decimal value into the buffer at the current address.. \\[hexl-mode-exit] will exit `hexl-mode'. Note: saving the file with any of the usual Emacs commands will actually convert it back to binary format while saving. You can use \\[hexl-find-file] to visit a file in Hexl mode. \\[describe-bindings] for advanced commands. (fn &optional ARG)" t) (autoload 'hexl-find-file "hexl" "\ Edit file FILENAME as a binary file in hex dump format. Switch to a buffer visiting file FILENAME, creating one if none exists, and edit the file in `hexl-mode'. The buffer's coding-system will be no-conversion, unlike if you visit it normally and then invoke `hexl-mode'. (fn FILENAME)" t) (autoload 'hexlify-buffer "hexl" "\ Convert a binary buffer to hexl format. This discards the buffer's undo information." t) (register-definition-prefixes "hexl" '("dehexlify-buffer" "hexl-")) ;;; Generated autoloads from hfy-cmap.el (autoload 'htmlfontify-load-rgb-file "hfy-cmap" "\ Load an X11 style rgb.txt FILE. Search `hfy-rgb-load-path' if FILE is not specified. Loads the variable `hfy-rgb-txt-color-map', which is used by `hfy-fallback-color-values'. (fn &optional FILE)" t) (autoload 'hfy-fallback-color-values "hfy-cmap" "\ Use a fallback method for obtaining the rgb values for a color. (fn COLOR-STRING)") (register-definition-prefixes "hfy-cmap" '("hfy-" "htmlfontify-unload-rgb-file")) ;;; Generated autoloads from hi-lock.el (autoload 'hi-lock-mode "hi-lock" "\ Toggle selective highlighting of patterns (Hi Lock mode). Hi Lock mode is automatically enabled when you invoke any of the highlighting commands listed below, such as \\[highlight-regexp]. To enable Hi Lock mode in all buffers, use `global-hi-lock-mode' or add (global-hi-lock-mode 1) to your init file. In buffers where Font Lock mode is enabled, patterns are highlighted using font lock. In buffers where Font Lock mode is disabled, patterns are applied using overlays; in this case, the highlighting will not be updated as you type. The Font Lock mode is considered \"enabled\" in a buffer if its `major-mode' causes `font-lock-specified-p' to return non-nil, which means the major mode specifies support for Font Lock. When Hi Lock mode is enabled, a \"Regexp Highlighting\" submenu is added to the \"Edit\" menu. The commands in the submenu, which can be called interactively, are: \\[highlight-regexp] REGEXP FACE Highlight matches of pattern REGEXP in current buffer with FACE. \\[highlight-phrase] PHRASE FACE Highlight matches of phrase PHRASE in current buffer with FACE. (PHRASE can be any REGEXP, but spaces will be replaced by matches to whitespace and initial lower-case letters will become case insensitive.) \\[highlight-lines-matching-regexp] REGEXP FACE Highlight lines containing matches of REGEXP in current buffer with FACE. \\[highlight-symbol-at-point] Highlight the symbol found near point without prompting, using the next available face automatically. \\[unhighlight-regexp] REGEXP Remove highlighting on matches of REGEXP in current buffer. \\[hi-lock-write-interactive-patterns] Write active REGEXPs into buffer as comments (if possible). They may be read the next time file is loaded or when the \\[hi-lock-find-patterns] command is issued. The inserted regexps are in the form of font lock keywords. (See `font-lock-keywords'.) They may be edited and re-loaded with \\[hi-lock-find-patterns], any valid `font-lock-keywords' form is acceptable. When a file is loaded the patterns are read if `hi-lock-file-patterns-policy' is `ask' and the user responds y to the prompt, or if `hi-lock-file-patterns-policy' is bound to a function and that function returns t. \\[hi-lock-find-patterns] Re-read patterns stored in buffer (in the format produced by \\[hi-lock-write-interactive-patterns]). When hi-lock is started and if the mode is not excluded or patterns rejected, the beginning of the buffer is searched for lines of the form: Hi-lock: (FOO ...) where (FOO ...) is a list of patterns. The patterns must start before position (number of characters into buffer) `hi-lock-file-patterns-range'. Patterns will be read until Hi-lock: end is found. A mode is excluded if it's in the list `hi-lock-exclude-modes'. This is a minor mode. If called interactively, toggle the `Hi-Lock mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `hi-lock-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (put 'global-hi-lock-mode 'globalized-minor-mode t) (defvar global-hi-lock-mode nil "\ Non-nil if Global Hi-Lock mode is enabled. See the `global-hi-lock-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-hi-lock-mode'.") (custom-autoload 'global-hi-lock-mode "hi-lock" nil) (autoload 'global-hi-lock-mode "hi-lock" "\ Toggle Hi-Lock mode in all buffers. With prefix ARG, enable Global Hi-Lock mode if ARG is positive; otherwise, disable it. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. Hi-Lock mode is enabled in all buffers where `turn-on-hi-lock-if-enabled' would do it. See `hi-lock-mode' for more information on Hi-Lock mode. (fn &optional ARG)" t) (defalias 'highlight-lines-matching-regexp 'hi-lock-line-face-buffer) (autoload 'hi-lock-line-face-buffer "hi-lock" "\ Highlight all lines that match REGEXP using FACE. The lines that match REGEXP will be displayed by merging the attributes of FACE with any other face attributes of text in those lines. Interactively, prompt for REGEXP using `read-regexp', then FACE. Use the global history list for FACE. If REGEXP contains upper case characters (excluding those preceded by `\\') and `search-upper-case' is non-nil, the matching is case-sensitive. Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, use overlays for highlighting. If overlays are used, the highlighting will not update as you type. (fn REGEXP &optional FACE)" t) (defalias 'highlight-regexp 'hi-lock-face-buffer) (autoload 'hi-lock-face-buffer "hi-lock" "\ Set face of each match of REGEXP to FACE. Interactively, prompt for REGEXP using `read-regexp', then FACE. Use the global history list for FACE. Limit face setting to the corresponding SUBEXP (interactively, the prefix argument) of REGEXP. If SUBEXP is omitted or nil, the entire REGEXP is highlighted. LIGHTER is a human-readable string that can be used to select a regexp to unhighlight by its name instead of selecting a possibly complex regexp or closure. If REGEXP contains upper case characters (excluding those preceded by `\\') and `search-upper-case' is non-nil, the matching is case-sensitive. Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, use overlays for highlighting. If overlays are used, the highlighting will not update as you type. The Font Lock mode is considered \"enabled\" in a buffer if its `major-mode' causes `font-lock-specified-p' to return non-nil, which means the major mode specifies support for Font Lock. (fn REGEXP &optional FACE SUBEXP LIGHTER)" t) (defalias 'highlight-phrase 'hi-lock-face-phrase-buffer) (autoload 'hi-lock-face-phrase-buffer "hi-lock" "\ Set face of each match of phrase REGEXP to FACE. Interactively, prompt for REGEXP using `read-regexp', then FACE. Use the global history list for FACE. If REGEXP contains upper case characters (excluding those preceded by `\\') and `search-upper-case' is non-nil, the matching is case-sensitive. Also set `search-spaces-regexp' to the value of `search-whitespace-regexp'. Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, use overlays for highlighting. If overlays are used, the highlighting will not update as you type. The Font Lock mode is considered \"enabled\" in a buffer if its `major-mode' causes `font-lock-specified-p' to return non-nil, which means the major mode specifies support for Font Lock. (fn REGEXP &optional FACE)" t) (defalias 'highlight-symbol-at-point 'hi-lock-face-symbol-at-point) (autoload 'hi-lock-face-symbol-at-point "hi-lock" "\ Highlight each instance of the symbol at point. Uses the next face from `hi-lock-face-defaults' without prompting, unless you use a prefix argument. Uses `find-tag-default-as-symbol-regexp' to retrieve the symbol at point. If REGEXP contains upper case characters (excluding those preceded by `\\') and `search-upper-case' is non-nil, the matching is case-sensitive. This uses Font lock mode if it is enabled; otherwise it uses overlays, in which case the highlighting will not update as you type. The Font Lock mode is considered \"enabled\" in a buffer if its `major-mode' causes `font-lock-specified-p' to return non-nil, which means the major mode specifies support for Font Lock." t) (defalias 'unhighlight-regexp 'hi-lock-unface-buffer) (autoload 'hi-lock-unface-buffer "hi-lock" "\ Remove highlighting of each match to REGEXP set by hi-lock. Interactively, prompt for REGEXP, accepting only regexps previously inserted by hi-lock interactive functions. If REGEXP is t (or if \\[universal-argument] was specified interactively), then remove all hi-lock highlighting. (fn REGEXP)" t) (autoload 'hi-lock-write-interactive-patterns "hi-lock" "\ Write interactively added patterns, if any, into buffer at point. Interactively added patterns are those normally specified using `highlight-regexp' and `highlight-lines-matching-regexp'; they can be found in variable `hi-lock-interactive-patterns'." t) (autoload 'hi-lock-find-patterns "hi-lock" "\ Add patterns from the current buffer to the list of hi-lock patterns." t) (autoload 'hi-lock-context-menu "hi-lock" "\ Populate MENU with a menu item to highlight symbol at CLICK. (fn MENU CLICK)") (register-definition-prefixes "hi-lock" '("hi-lock-" "highlight-symbol-at-mouse" "turn-on-hi-lock-if-enabled")) ;;; Generated autoloads from progmodes/hideif.el (autoload 'hide-ifdef-mode "hideif" "\ Toggle features to hide/show #ifdef blocks (Hide-Ifdef mode). Hide-Ifdef mode is a buffer-local minor mode for use with C and C-like major modes. When enabled, code within #ifdef constructs that the C preprocessor would eliminate may be hidden from view. Several variables affect how the hiding is done: `hide-ifdef-env' An association list of defined and undefined symbols for the current project. Initially, the global value of `hide-ifdef-env' is used. This variable was a buffer-local variable, which limits hideif to parse only one C/C++ file at a time. We've extended hideif to support parsing a C/C++ project containing multiple C/C++ source files opened simultaneously in different buffers. Therefore `hide-ifdef-env' can no longer be buffer local but must be global. `hide-ifdef-define-alist' An association list of defined symbol lists. Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env' and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env' from one of the lists in `hide-ifdef-define-alist'. `hide-ifdef-lines' Set to non-nil to not show #if, #ifdef, #ifndef, #else, and #endif lines when hiding. `hide-ifdef-initially' Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode is activated. `hide-ifdef-read-only' Set to non-nil if you want to make buffers read only while hiding. After `show-ifdefs', read-only status is restored to previous value. \\{hide-ifdef-mode-map} This is a minor mode. If called interactively, toggle the `Hide-Ifdef mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `hide-ifdef-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "hideif" '("backward-ifdef" "down-ifdef" "forward-ifdef" "hide-ifdef" "hif-" "next-ifdef" "previous-ifdef" "show-ifdef" "up-ifdef")) ;;; Generated autoloads from progmodes/hideshow.el (defvar hs-special-modes-alist (mapcar #'purecopy '((c-mode "{" "}" "/[*/]" nil nil) (c-ts-mode "{" "}" "/[*/]" nil nil) (c++-mode "{" "}" "/[*/]" nil nil) (c++-ts-mode "{" "}" "/[*/]" nil nil) (bibtex-mode ("@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil nil) (java-ts-mode "{" "}" "/[*/]" nil nil) (js-mode "{" "}" "/[*/]" nil) (js-ts-mode "{" "}" "/[*/]" nil) (lua-ts-mode "{\\|\\[\\[" "}\\|\\]\\]" "--" nil) (mhtml-mode "{\\|<[^/>]*?" "}\\|]*[^/]>" " \" : \" [ --> ( -- --> comment ;;; --> \" := \" [[ --> [ --CR --> comment-out code .. --> \" => \" ] --> ) --- --> horizontal line ,, --> \" <= \" ]] --> ] ---- --> display comment == --> \" == \" \\='\\=' --> \\\" WORD COMPLETION: Typing `TAB' after a (not completed) word looks for a VHDL keyword or a word in the buffer that starts alike, inserts it and adjusts case. Re-typing `TAB' toggles through alternative word completions. This also works in the minibuffer (i.e. in template generator prompts). Typing `TAB' after `(' looks for and inserts complete parenthesized expressions (e.g. for array index ranges). All keywords as well as standard types and subprograms of VHDL have predefined abbreviations (e.g., type \"std\" and `TAB' will toggle through all standard types beginning with \"std\"). Typing `TAB' after a non-word character indents the line if at the beginning of a line (i.e. no preceding non-blank characters), and inserts a tabulator stop otherwise. `M-TAB' always inserts a tabulator stop. COMMENTS: `--' puts a single comment. `---' draws a horizontal line for separating code segments. `----' inserts a display comment, i.e. two horizontal lines with a comment in between. `--CR' comments out code on that line. Re-hitting CR comments out following lines. `C-c C-c' comments out a region if not commented out, uncomments a region if already commented out. Option `comment-style' defines where the comment characters should be placed (beginning of line, indent, etc.). You are prompted for comments after object definitions (i.e. signals, variables, constants, ports) and after subprogram and process specifications if option `vhdl-prompt-for-comments' is non-nil. Comments are automatically inserted as additional labels (e.g. after begin statements) and as help comments if `vhdl-self-insert-comments' is non-nil. Inline comments (i.e. comments after a piece of code on the same line) are indented at least to `vhdl-inline-comment-column'. Comments go at maximum to `vhdl-end-comment-column'. `RET' after a space in a comment will open a new comment line. Typing beyond `vhdl-end-comment-column' in a comment automatically opens a new comment line. `M-q' re-fills multi-line comments. INDENTATION: `TAB' indents a line if at the beginning of the line. The amount of indentation is specified by option `vhdl-basic-offset'. `C-c C-i C-l' always indents the current line (is bound to `TAB' if option `vhdl-intelligent-tab' is nil). If a region is active, `TAB' indents the entire region. Indentation can be done for a group of lines (`C-c C-i C-g'), a region (`M-C-\\') or the entire buffer (menu). Argument and port lists are indented normally (nil) or relative to the opening parenthesis (non-nil) according to option `vhdl-argument-list-indent'. If option `vhdl-indent-tabs-mode' is nil, spaces are used instead of tabs. \\[tabify] and \\[untabify] allow the conversion of spaces to tabs and vice versa. Syntax-based indentation can be very slow in large files. Option `vhdl-indent-syntax-based' allows you to use faster but simpler indentation. Option `vhdl-indent-comment-like-next-code-line' controls whether comment lines are indented like the preceding or like the following code line. ALIGNMENT: The alignment functions align operators, keywords, and inline comments to beautify the code. `C-c C-a C-a' aligns a group of consecutive lines separated by blank lines, `C-c C-a C-i' a block of lines with same indent. `C-c C-a C-l' aligns all lines belonging to a list enclosed by a pair of parentheses (e.g. port clause/map, argument list), and `C-c C-a C-d' all lines within the declarative part of a design unit. `C-c C-a M-a' aligns an entire region. `C-c C-a C-c' aligns inline comments for a group of lines, and `C-c C-a M-c' for a region. If option `vhdl-align-groups' is non-nil, groups of code lines separated by special lines (see option `vhdl-align-group-separate') are aligned individually. If option `vhdl-align-same-indent' is non-nil, blocks of lines with same indent are aligned separately. Some templates are automatically aligned after generation if option `vhdl-auto-align' is non-nil. Alignment tries to align inline comments at `vhdl-inline-comment-column' and tries inline comment not to exceed `vhdl-end-comment-column'. `C-c C-x M-w' fixes up whitespace in a region. That is, operator symbols are surrounded by one space, and multiple spaces are eliminated. CODE FILLING: Code filling allows you to condense code (e.g. sensitivity lists or port maps) by removing comments and newlines and re-wrapping so that all lines are maximally filled (block filling). `C-c C-f C-f' fills a list enclosed by parenthesis, `C-c C-f C-g' a group of lines separated by blank lines, `C-c C-f C-i' a block of lines with same indent, and `C-c C-f M-f' an entire region. CODE BEAUTIFICATION: `C-c M-b' and `C-c C-b' beautify the code of a region or of the entire buffer respectively. This includes indentation, alignment, and case fixing. Code beautification can also be run non-interactively using the command: emacs -batch -l ~/.emacs filename.vhd -f vhdl-beautify-buffer PORT TRANSLATION: Generic and port clauses from entity or component declarations can be copied (`C-c C-p C-w') and pasted as entity and component declarations, as component instantiations and corresponding internal constants and signals, as a generic map with constants as actual generics, and as internal signal initializations (menu). To include formals in component instantiations, see option `vhdl-association-list-with-formals'. To include comments in pasting, see options `vhdl-include-...-comments'. A clause with several generic/port names on the same line can be flattened (`C-c C-p C-f') so that only one name per line exists. The direction of ports can be reversed (`C-c C-p C-r'), i.e., inputs become outputs and vice versa, which can be useful in testbenches. (This reversion is done on the internal data structure and is only reflected in subsequent paste operations.) Names for actual ports, instances, testbenches, and design-under-test instances can be derived from existing names according to options `vhdl-...-name'. See customization group `vhdl-port'. SUBPROGRAM TRANSLATION: Similar functionality exists for copying/pasting the interface of subprograms (function/procedure). A subprogram interface can be copied and then pasted as a subprogram declaration, body or call (uses association list with formals). TESTBENCH GENERATION: A copied port can also be pasted as a testbench. The generated testbench includes an entity, an architecture, and an optional configuration. The architecture contains the component declaration and instantiation of the DUT as well as internal constant and signal declarations. Additional user-defined templates can be inserted. The names used for entity/architecture/configuration/DUT as well as the file structure to be generated can be customized. See customization group `vhdl-testbench'. KEY BINDINGS: Key bindings (`C-c ...') exist for most commands (see in menu). VHDL MENU: All commands can be found in the VHDL menu including their key bindings. FILE BROWSER: The speedbar allows browsing of directories and file contents. It can be accessed from the VHDL menu and is automatically opened if option `vhdl-speedbar-auto-open' is non-nil. In speedbar, open files and directories with `mouse-2' on the name and browse/rescan their contents with `mouse-2'/`S-mouse-2' on the `+'. DESIGN HIERARCHY BROWSER: The speedbar can also be used for browsing the hierarchy of design units contained in the source files of the current directory or the specified projects (see option `vhdl-project-alist'). The speedbar can be switched between file, directory hierarchy and project hierarchy browsing mode in the speedbar menu or by typing `f', `h' or `H' in speedbar. In speedbar, open design units with `mouse-2' on the name and browse their hierarchy with `mouse-2' on the `+'. Ports can directly be copied from entities and components (in packages). Individual design units and complete designs can directly be compiled (\"Make\" menu entry). The hierarchy is automatically updated upon saving a modified source file when option `vhdl-speedbar-update-on-saving' is non-nil. The hierarchy is only updated for projects that have been opened once in the speedbar. The hierarchy is cached between Emacs sessions in a file (see options in group `vhdl-speedbar'). Simple design consistency checks are done during scanning, such as multiple declarations of the same unit or missing primary units that are required by secondary units. STRUCTURAL COMPOSITION: Enables simple structural composition. `C-c C-m C-n' creates a skeleton for a new component. Subcomponents (i.e. component declaration and instantiation) can be automatically placed from a previously read port (`C-c C-m C-p') or directly from the hierarchy browser (`P'). Finally, all subcomponents can be automatically connected using internal signals and ports (`C-c C-m C-w') following these rules: - subcomponent actual ports with same name are considered to be connected by a signal (internal signal or port) - signals that are only inputs to subcomponents are considered as inputs to this component -> input port created - signals that are only outputs from subcomponents are considered as outputs from this component -> output port created - signals that are inputs to AND outputs from subcomponents are considered as internal connections -> internal signal created Purpose: With appropriate naming conventions it is possible to create higher design levels with only a few mouse clicks or key strokes. A new design level can be created by simply generating a new component, placing the required subcomponents from the hierarchy browser, and wiring everything automatically. Note: Automatic wiring only works reliably on templates of new components and component instantiations that were created by VHDL mode. Component declarations can be placed in a components package (option `vhdl-use-components-package') which can be automatically generated for an entire directory or project (`C-c C-m M-p'). The VHDL'93 direct component instantiation is also supported (option `vhdl-use-direct-instantiation'). Configuration declarations can automatically be generated either from the menu (`C-c C-m C-f') (for the architecture the cursor is in) or from the speedbar menu (for the architecture under the cursor). The configurations can optionally be hierarchical (i.e. include all component levels of a hierarchical design, option `vhdl-compose-configuration-hierarchical') or include subconfigurations (option `vhdl-compose-configuration-use-subconfiguration'). For subcomponents in hierarchical configurations, the most-recently-analyzed (mra) architecture is selected. If another architecture is desired, it can be marked as most-recently-analyzed (speedbar menu) before generating the configuration. Note: Configurations of subcomponents (i.e. hierarchical configuration declarations) are currently not considered when displaying configurations in speedbar. See the options group `vhdl-compose' for all relevant user options. SOURCE FILE COMPILATION: The syntax of the current buffer can be analyzed by calling a VHDL compiler (menu, `C-c C-k'). The compiler to be used is specified by option `vhdl-compiler'. The available compilers are listed in option `vhdl-compiler-alist' including all required compilation command, command options, compilation directory, and error message syntax information. New compilers can be added. All the source files of an entire design can be compiled by the `make' command (menu, `C-c M-C-k') if an appropriate Makefile exists. MAKEFILE GENERATION: Makefiles can be generated automatically by an internal generation routine (`C-c M-k'). The library unit dependency information is obtained from the hierarchy browser. Makefile generation can be customized for each compiler in option `vhdl-compiler-alist'. Makefile generation can also be run non-interactively using the command: emacs -batch -l ~/.emacs -l vhdl-mode [-compiler compilername] [-project projectname] -f vhdl-generate-makefile The Makefile's default target \"all\" compiles the entire design, the target \"clean\" removes it and the target \"library\" creates the library directory if not existent. These target names can be customized by option `vhdl-makefile-default-targets'. The Makefile also includes a target for each primary library unit which allows selective compilation of this unit, its secondary units and its subhierarchy (example: compilation of a design specified by a configuration). User specific parts can be inserted into a Makefile with option `vhdl-makefile-generation-hook'. Limitations: - Only library units and dependencies within the current library are considered. Makefiles for designs that span multiple libraries are not (yet) supported. - Only one-level configurations are supported (also hierarchical), but configurations that go down several levels are not. - The \"others\" keyword in configurations is not supported. PROJECTS: Projects can be defined in option `vhdl-project-alist' and a current project be selected using option `vhdl-project' (permanently) or from the menu or speedbar (temporarily). For each project, title and description strings (for the file headers), source files/directories (for the hierarchy browser and Makefile generation), library name, and compiler-dependent options, exceptions and compilation directory can be specified. Compilation settings overwrite the settings of option `vhdl-compiler-alist'. Project setups can be exported (i.e. written to a file) and imported. Imported setups are not automatically saved in `vhdl-project-alist' but can be saved afterwards in its customization buffer. When starting Emacs with VHDL Mode (i.e. load a VHDL file or use \"emacs -l vhdl-mode\") in a directory with an existing project setup file, it is automatically loaded and its project activated if option `vhdl-project-autoload' is non-nil. Names/paths of the project setup files can be specified in option `vhdl-project-file-name'. Multiple project setups can be automatically loaded from global directories. This is an alternative to specifying project setups with option `vhdl-project-alist'. SPECIAL MENUS: As an alternative to the speedbar, an index menu can be added (set option `vhdl-index-menu' to non-nil) or made accessible as a mouse menu (e.g. add \"(global-set-key [S-down-mouse-3] \\='imenu)\" to your start-up file) for browsing the file contents (is not populated if buffer is larger than 256000). Also, a source file menu can be added (set option `vhdl-source-file-menu' to non-nil) for browsing the current directory for VHDL source files. VHDL STANDARDS: The VHDL standards to be used are specified in option `vhdl-standard'. Available standards are: VHDL'87/'93(02)/'08, VHDL-AMS, and Math Packages. KEYWORD CASE: Lower and upper case for keywords and standardized types, attributes, and enumeration values is supported. If the option `vhdl-upper-case-keywords' is set to non-nil, keywords can be typed in lower case and are converted into upper case automatically (not for types, attributes, and enumeration values). The case of keywords, types, attributes,and enumeration values can be fixed for an entire region (menu) or buffer (`C-c C-x C-c') according to the options `vhdl-upper-case-{keywords,types,attributes,enum-values}'. HIGHLIGHTING (fontification): Keywords and standardized types, attributes, enumeration values, and function names (controlled by option `vhdl-highlight-keywords'), as well as comments, strings, and template prompts are highlighted using different colors. Unit, subprogram, signal, variable, constant, parameter and generic/port names in declarations as well as labels are highlighted if option `vhdl-highlight-names' is non-nil. Additional reserved words or words with a forbidden syntax (e.g. words that should be avoided) can be specified in option `vhdl-forbidden-words' or `vhdl-forbidden-syntax' and be highlighted in a warning color (option `vhdl-highlight-forbidden-words'). Verilog keywords are highlighted as forbidden words if option `vhdl-highlight-verilog-keywords' is non-nil. Words with special syntax can be highlighted by specifying their syntax and color in option `vhdl-special-syntax-alist' and by setting option `vhdl-highlight-special-words' to non-nil. This allows you to establish some naming conventions (e.g. to distinguish different kinds of signals or other objects by using name suffices) and to support them visually. Option `vhdl-highlight-case-sensitive' can be set to non-nil in order to support case-sensitive highlighting. However, keywords are then only highlighted if written in lower case. Code between \"translate_off\" and \"translate_on\" pragmas is highlighted using a different background color if option `vhdl-highlight-translate-off' is non-nil. For documentation and customization of the used colors see customization group `vhdl-highlight-faces' (\\[customize-group]). For highlighting of matching parenthesis, see customization group `paren-showing'. Automatic buffer highlighting is turned on/off by option `global-font-lock-mode' (`font-lock-auto-fontify' in XEmacs). USER MODELS: VHDL models (templates) can be specified by the user and made accessible in the menu, through key bindings (`C-c C-m ...'), or by keyword electrification. See option `vhdl-model-alist'. HIDE/SHOW: The code of blocks, processes, subprograms, component declarations and instantiations, generic/port clauses, and configuration declarations can be hidden using the `Hide/Show' menu or by pressing `S-mouse-2' within the code (see customization group `vhdl-menu'). XEmacs: limited functionality due to old `hideshow.el' package. CODE UPDATING: - Sensitivity List: `C-c C-u C-s' updates the sensitivity list of the current process, `C-c C-u M-s' of all processes in the current buffer. Limitations: - Only declared local signals (ports, signals declared in architecture and blocks) are automatically inserted. - Global signals declared in packages are not automatically inserted. Insert them once manually (will be kept afterwards). - Out parameters of procedures are considered to be read. Use option `vhdl-entity-file-name' to specify the entity file name (used to obtain the port names). Use option `vhdl-array-index-record-field-in-sensitivity-list' to specify whether to include array indices and record fields in sensitivity lists. CODE FIXING: `C-c C-x C-p' fixes the closing parenthesis of a generic/port clause (e.g., if the closing parenthesis is on the wrong line or is missing). PRINTING: PostScript printing with different faces (an optimized set of faces is used if `vhdl-print-customize-faces' is non-nil) or colors (if `ps-print-color-p' is non-nil) is possible using the standard Emacs PostScript printing commands. Option `vhdl-print-two-column' defines appropriate default settings for nice landscape two-column printing. The paper format can be set by option `ps-paper-type'. Do not forget to switch `ps-print-color-p' to nil for printing on black-and-white printers. OPTIONS: User options allow customization of VHDL Mode. All options are accessible from the \"Options\" menu entry. Simple options (switches and choices) can directly be changed, while for complex options a customization buffer is opened. Changed options can be saved for future sessions using the \"Save Options\" menu entry. Options and their detailed descriptions can also be accessed by using the \"Customize\" menu entry or the command \\[customize-option] (\\[customize-group] for groups). Some customizations only take effect after some action (read the NOTE in the option documentation). Customization can also be done globally (i.e. site-wide, read the INSTALL file). Not all options are described in this documentation, so go and see what other useful user options there are (\\[vhdl-customize] or menu)! FILE EXTENSIONS: As default, files with extensions \".vhd\" and \".vhdl\" are automatically recognized as VHDL source files. To add an extension \".xxx\", add the following line to your Emacs start-up file (`.emacs'): (push \\='(\"\\\\.xxx\\\\\\='\" . vhdl-mode) auto-mode-alist) HINTS: - To start Emacs with open VHDL hierarchy browser without having to load a VHDL file first, use the command: emacs -l vhdl-mode -f speedbar-frame-mode - Type `C-g C-g' to interrupt long operations or if Emacs hangs. - Some features only work on properly indented code. RELEASE NOTES: See also the release notes (menu) for added features in new releases. Maintenance: ------------ To submit a bug report, enter \\[vhdl-submit-bug-report] within VHDL Mode. Add a description of the problem and include a reproducible test case. Questions and enhancement requests can be sent to . The `vhdl-mode-announce' mailing list informs about new VHDL Mode releases. The `vhdl-mode-victims' mailing list informs about new VHDL Mode beta releases. You are kindly invited to participate in beta testing. Subscribe to above mailing lists by sending an email to . VHDL Mode is officially distributed at https://guest.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html where the latest version can be found. Known problems: --------------- - XEmacs: Incorrect start-up when automatically opening speedbar. - XEmacs: Indentation in XEmacs 21.4 (and higher). - Indentation incorrect for new `postponed' VHDL keyword. - Indentation incorrect for `protected body' construct. The VHDL Mode Authors Reto Zimmermann and Rod Whitby Key bindings: ------------- \\{vhdl-mode-map} (fn)" t) (register-definition-prefixes "vhdl-mode" '("vhdl-")) ;;; Generated autoloads from language/viet-util.el (autoload 'viet-encode-viscii-char "viet-util" "\ Return VISCII character code of CHAR if appropriate. (fn CHAR)") (autoload 'viet-decode-viqr-region "viet-util" "\ Convert `VIQR' mnemonics of the current region to Vietnamese characters. When called from a program, expects two arguments, positions (integers or markers) specifying the stretch of the region. (fn FROM TO)" t) (autoload 'viet-decode-viqr-buffer "viet-util" "\ Convert `VIQR' mnemonics of the current buffer to Vietnamese characters." t) (autoload 'viet-encode-viqr-region "viet-util" "\ Convert Vietnamese characters of the current region to `VIQR' mnemonics. When called from a program, expects two arguments, positions (integers or markers) specifying the stretch of the region. (fn FROM TO)" t) (autoload 'viet-encode-viqr-buffer "viet-util" "\ Convert Vietnamese characters of the current buffer to `VIQR' mnemonics." t) (autoload 'viqr-post-read-conversion "viet-util" "\ (fn LEN)") (autoload 'viqr-pre-write-conversion "viet-util" "\ (fn FROM TO)") (register-definition-prefixes "viet-util" '("viet-viqr-alist" "viqr-regexp")) ;;; Generated autoloads from view.el (defvar-local view-mode nil "\ Non-nil if View mode is enabled. Don't change this variable directly, you must change it by one of the functions that enable or disable view mode.") (autoload 'kill-buffer-if-not-modified "view" "\ Like `kill-buffer', but does nothing if buffer BUF is modified. (fn BUF)") (autoload 'view-file "view" "\ View FILE in View mode, returning to previous buffer when done. Emacs commands editing the buffer contents are not available; instead, a special set of commands (mostly letters and punctuation) are defined for moving around in the buffer. Space scrolls forward, Delete scrolls backward. For a list of all View commands, type H or h while viewing. This command runs the normal hook `view-mode-hook'. (fn FILE)" t) (autoload 'view-file-other-window "view" "\ View FILE in View mode in another window. When done, return that window to its previous buffer, and kill the buffer visiting FILE if unmodified and if it wasn't visited before. Emacs commands editing the buffer contents are not available; instead, a special set of commands (mostly letters and punctuation) are defined for moving around in the buffer. Space scrolls forward, Delete scrolls backward. For a list of all View commands, type H or h while viewing. This command runs the normal hook `view-mode-hook'. (fn FILE)" t) (autoload 'view-file-other-frame "view" "\ View FILE in View mode in another frame. When done, kill the buffer visiting FILE if unmodified and if it wasn't visited before; also, maybe delete other frame and/or return to previous buffer. Emacs commands editing the buffer contents are not available; instead, a special set of commands (mostly letters and punctuation) are defined for moving around in the buffer. Space scrolls forward, Delete scrolls backward. For a list of all View commands, type H or h while viewing. This command runs the normal hook `view-mode-hook'. (fn FILE)" t) (autoload 'view-buffer "view" "\ View BUFFER in View mode, returning to previous buffer when done. Emacs commands editing the buffer contents are not available; instead, a special set of commands (mostly letters and punctuation) are defined for moving around in the buffer. Space scrolls forward, Delete scrolls backward. For a list of all View commands, type H or h while viewing. This command runs the normal hook `view-mode-hook'. Optional argument EXIT-ACTION is either nil or a function with buffer as argument. This function is called when finished viewing buffer. Use this argument instead of explicitly setting `view-exit-action'. Do not set EXIT-ACTION to `kill-buffer' when BUFFER visits a file: Users may suspend viewing in order to modify the buffer. Exiting View mode will then discard the user's edits. Setting EXIT-ACTION to `kill-buffer-if-not-modified' avoids this. This function does not enable View mode if the buffer's major mode has a `special' mode-class, because such modes usually have their own View-like bindings. (fn BUFFER &optional EXIT-ACTION)" t) (autoload 'view-buffer-other-window "view" "\ View BUFFER in View mode in another window. Emacs commands editing the buffer contents are not available; instead, a special set of commands (mostly letters and punctuation) are defined for moving around in the buffer. Space scrolls forward, Delete scrolls backward. For a list of all View commands, type H or h while viewing. This command runs the normal hook `view-mode-hook'. Optional argument NOT-RETURN is ignored. Optional argument EXIT-ACTION is either nil or a function with buffer as argument. This function is called when finished viewing buffer. Use this argument instead of explicitly setting `view-exit-action'. This function does not enable View mode if the buffer's major mode has a `special' mode-class, because such modes usually have their own View-like bindings. (fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t) (autoload 'view-buffer-other-frame "view" "\ View BUFFER in View mode in another frame. Emacs commands editing the buffer contents are not available; instead, a special set of commands (mostly letters and punctuation) are defined for moving around in the buffer. Space scrolls forward, Delete scrolls backward. For a list of all View commands, type H or h while viewing. This command runs the normal hook `view-mode-hook'. Optional argument NOT-RETURN is ignored. Optional argument EXIT-ACTION is either nil or a function with buffer as argument. This function is called when finished viewing buffer. Use this argument instead of explicitly setting `view-exit-action'. This function does not enable View mode if the buffer's major mode has a `special' mode-class, because such modes usually have their own View-like bindings. (fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t) (autoload 'view-mode "view" "\ Toggle View mode, a minor mode for viewing text but not editing it. When View mode is enabled, commands that do not change the buffer contents are available as usual. Kill commands save text but do not delete it from the buffer. Most other commands beep and tell the user that the buffer is read-only. \\ The following additional commands are provided. Most commands take prefix arguments. Page commands default to \"page size\" lines which is almost a whole window, or number of lines set by \\[View-scroll-page-forward-set-page-size] or \\[View-scroll-page-backward-set-page-size]. Half page commands default to and set \"half page size\" lines which initially is half a window full. Search commands default to a repeat count of one. H, h, ? This message. Digits provide prefix arguments. \\[negative-argument] negative prefix argument. \\[beginning-of-buffer] move to the beginning of buffer. > move to the end of buffer. \\[View-scroll-to-buffer-end] scroll so that buffer end is at last line of window. SPC scroll forward \"page size\" lines. With prefix scroll forward prefix lines. DEL, S-SPC scroll backward \"page size\" lines. With prefix scroll backward prefix lines. \\[View-scroll-page-forward-set-page-size] like \\[View-scroll-page-forward] but with prefix sets \"page size\" to prefix. \\[View-scroll-page-backward-set-page-size] like \\[View-scroll-page-backward] but with prefix sets \"page size\" to prefix. \\[View-scroll-half-page-forward] scroll forward \"half page size\" lines. With prefix, sets \"half page size\" to prefix lines and scrolls forward that much. \\[View-scroll-half-page-backward] scroll backward \"half page size\" lines. With prefix, sets \"half page size\" to prefix lines and scrolls backward that much. RET, LFD scroll forward one line. With prefix scroll forward prefix line(s). y scroll backward one line. With prefix scroll backward prefix line(s). \\[View-revert-buffer-scroll-page-forward] revert-buffer if necessary and scroll forward. Use this to view a changing file. \\[what-line] prints the current line number. \\[View-goto-percent] goes prefix argument (default 100) percent into buffer. \\[View-goto-line] goes to line given by prefix argument (default first line). . set the mark. x exchanges point and mark. \\[View-back-to-mark] return to mark and pops mark ring. Mark ring is pushed at start of every successful search and when jump to line occurs. The mark is set on jump to buffer start or end. \\[point-to-register] save current position in character register. \\=' go to position saved in character register. s do forward incremental search. r do reverse incremental search. \\[View-search-regexp-forward] searches forward for regular expression, starting after current page. ! and @ have a special meaning at the beginning of the regexp. ! means search for a line with no match for regexp. @ means start search at beginning (end for backward search) of buffer. \\ searches backward for regular expression, starting before current page. \\[View-search-last-regexp-forward] searches forward for last regular expression. p searches backward for last regular expression. \\[View-quit] quit View mode, restoring this window and buffer to previous state. \\[View-quit] is the normal way to leave view mode. \\[View-exit] exit View mode but stay in current buffer. Use this if you started viewing a buffer (file) and find out you want to edit it. This command restores the previous read-only status of the buffer. \\[View-exit-and-edit] exit View mode, and make the current buffer editable even if it was not editable before entry to View mode. \\[View-quit-all] quit View mode, restoring all windows to previous state. \\[View-leave] quit View mode and maybe switch buffers, but don't kill this buffer. \\[View-kill-and-leave] quit View mode, kill current buffer and go back to other buffer. The effect of \\[View-leave], \\[View-quit] and \\[View-kill-and-leave] depends on how view-mode was entered. If it was entered by view-file, view-file-other-window, view-file-other-frame, or \\[dired-view-file] (\\[view-file], \\[view-file-other-window], \\[view-file-other-frame], or the Dired mode v command), then \\[View-quit] will try to kill the current buffer. If view-mode was entered from another buffer, by \\[view-buffer], \\[view-buffer-other-window], \\[view-buffer-other frame], \\[view-file], \\[view-file-other-window], or \\[view-file-other-frame], then \\[View-leave], \\[View-quit] and \\[View-kill-and-leave] will return to that buffer. Entry to view-mode runs the normal hook `view-mode-hook'. This is a minor mode. If called interactively, toggle the `View mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `view-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'view-mode-enter "view" "\ Enter View mode and set up exit from view mode depending on optional arguments. Optional argument QUIT-RESTORE if non-nil must specify a valid entry for quitting and restoring any window showing the current buffer. This entry replaces any parameter installed by `display-buffer' and is used by `view-mode-exit'. Optional argument EXIT-ACTION, if non-nil, must specify a function that takes a buffer as argument. This function will be called by `view-mode-exit'. For a list of all View commands, type H or h while viewing. This function runs the normal hook `view-mode-hook'. (fn &optional QUIT-RESTORE EXIT-ACTION)") (autoload 'View-exit-and-edit "view" "\ Exit View mode and make the current buffer editable." t) (register-definition-prefixes "view" '("View-" "view-")) ;;; Generated autoloads from emulation/viper.el (push (purecopy '(viper 3 14 2)) package--builtin-versions) (autoload 'toggle-viper-mode "viper" "\ Toggle Viper on/off. If Viper is enabled, turn it off. Otherwise, turn it on." t) (autoload 'viper-mode "viper" "\ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'." t) (register-definition-prefixes "viper" '("viper-")) ;;; Generated autoloads from emulation/viper-cmd.el (register-definition-prefixes "viper-cmd" '("viper-")) ;;; Generated autoloads from emulation/viper-ex.el (register-definition-prefixes "viper-ex" '("ex-" "viper-")) ;;; Generated autoloads from emulation/viper-init.el (register-definition-prefixes "viper-init" '("viper-")) ;;; Generated autoloads from emulation/viper-keym.el (register-definition-prefixes "viper-keym" '("viper-")) ;;; Generated autoloads from emulation/viper-macs.el (register-definition-prefixes "viper-macs" '("ex-" "viper-")) ;;; Generated autoloads from emulation/viper-mous.el (register-definition-prefixes "viper-mous" '("viper-")) ;;; Generated autoloads from emulation/viper-util.el (register-definition-prefixes "viper-util" '("viper")) ;;; Generated autoloads from leim/quail/viqr.el (register-definition-prefixes "quail/viqr" '("viet-quail-define-rules")) ;;; Generated autoloads from visual-wrap.el (autoload 'visual-wrap-prefix-mode "visual-wrap" "\ Display continuation lines with prefixes from surrounding context. To enable this minor mode across all buffers, enable `global-visual-wrap-prefix-mode'. This is a minor mode. If called interactively, toggle the `Visual-Wrap-Prefix mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `visual-wrap-prefix-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (put 'global-visual-wrap-prefix-mode 'globalized-minor-mode t) (defvar global-visual-wrap-prefix-mode nil "\ Non-nil if Global Visual-Wrap-Prefix mode is enabled. See the `global-visual-wrap-prefix-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-visual-wrap-prefix-mode'.") (custom-autoload 'global-visual-wrap-prefix-mode "visual-wrap" nil) (autoload 'global-visual-wrap-prefix-mode "visual-wrap" "\ Toggle Visual-Wrap-Prefix mode in all buffers. With prefix ARG, enable Global Visual-Wrap-Prefix mode if ARG is positive; otherwise, disable it. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. Visual-Wrap-Prefix mode is enabled in all buffers where `visual-wrap-prefix-mode' would do it. See `visual-wrap-prefix-mode' for more information on Visual-Wrap-Prefix mode. (fn &optional ARG)" t) (register-definition-prefixes "visual-wrap" '("visual-wrap-")) ;;; Generated autoloads from emacs-lisp/vtable.el (register-definition-prefixes "vtable" '("vtable")) ;;; Generated autoloads from w32-fns.el (register-definition-prefixes "w32-fns" '("w32-")) ;;; Generated autoloads from w32-vars.el (register-definition-prefixes "w32-vars" '("w32-")) ;;; Generated autoloads from image/wallpaper.el (put 'wallpaper-setter-create 'lisp-indent-function 1) (autoload 'wallpaper-set "wallpaper" "\ Set the desktop background to FILE in a graphical environment. On GNU/Linux and other Unix-like systems, this relies on an external command. Which command to use is automatically detected in most cases, but can be manually customized with the user options `wallpaper-command' and `wallpaper-command-args'. On MS-Windows and Haiku systems, no external command is needed, so the value of `wallpaper-commands' is ignored. (fn FILE)" t) (register-definition-prefixes "wallpaper" '("wallpaper-")) ;;; Generated autoloads from emacs-lisp/warnings.el (defvar warning-suppress-types nil "\ List of warning types not to display immediately. If any element of this list matches the TYPE argument to `display-warning', the warning is logged nonetheless, but the warnings buffer is not immediately displayed. The element must match an initial segment of the list TYPE. Thus, (foo bar) as an element matches (foo bar) or (foo bar ANYTHING...) as TYPE. If TYPE is a symbol FOO, that is equivalent to the list (FOO), so only the element (FOO) will match it. See also `warning-suppress-log-types'.") (custom-autoload 'warning-suppress-types "warnings" t) (defvar warning-prefix-function nil "\ Function to generate warning prefixes. This function, if non-nil, is called with two arguments, the severity level and its entry in `warning-levels', and should return the entry that should actually be used. The warnings buffer is current when this function is called and the function can insert text in it. This text becomes the beginning of the warning.") (defvar warning-series nil "\ Non-nil means treat multiple `display-warning' calls as a series. A marker indicates a position in the warnings buffer which is the start of the current series; it means that additional warnings in the same buffer should not move point. If t, the next warning begins a series (and stores a marker here). A symbol with a function definition is like t, except also call that function before the next warning.") (defvar warning-fill-prefix nil "\ Non-nil means fill each warning text using this string as `fill-prefix'.") (defvar warning-type-format (purecopy " (%s)") "\ Format for displaying the warning type in the warning message. The result of formatting the type this way gets included in the message under the control of the string in `warning-levels'.") (autoload 'display-warning "warnings" "\ Display a warning message, MESSAGE. TYPE is the warning type: either a custom group name (a symbol), or a list of symbols whose first element is a custom group name. (The rest of the symbols represent subcategories, for warning purposes only, and you can use whatever symbols you like.) LEVEL should be either :debug, :warning, :error, or :emergency (but see `warning-minimum-level' and `warning-minimum-log-level'). Default is :warning. :emergency -- a problem that will seriously impair Emacs operation soon if you do not attend to it promptly. :error -- data or circumstances that are inherently wrong. :warning -- data or circumstances that are not inherently wrong, but raise suspicion of a possible problem. :debug -- info for debugging only. BUFFER-NAME, if specified, is the name of the buffer for logging the warning. By default, it is `*Warnings*'. If this function has to create the buffer, it disables undo in the buffer. See the `warnings' custom group for user customization features. See also `warning-series', `warning-prefix-function', `warning-fill-prefix', and `warning-fill-column' for additional programming features. This will also display buttons allowing the user to permanently disable automatic display of the warning or disable the warning entirely by setting `warning-suppress-types' or `warning-suppress-log-types' on their behalf. (fn TYPE MESSAGE &optional LEVEL BUFFER-NAME)") (autoload 'lwarn "warnings" "\ Display a warning message made from (format-message MESSAGE ARGS...). \\ Aside from generating the message with `format-message', this is equivalent to `display-warning'. TYPE is the warning type: either a custom group name (a symbol), or a list of symbols whose first element is a custom group name. (The rest of the symbols represent subcategories and can be whatever you like.) LEVEL should be either :debug, :warning, :error, or :emergency (but see `warning-minimum-level' and `warning-minimum-log-level'). :emergency -- a problem that will seriously impair Emacs operation soon if you do not attend to it promptly. :error -- invalid data or circumstances. :warning -- suspicious data or circumstances. :debug -- info for debugging only. (fn TYPE LEVEL MESSAGE &rest ARGS)") (autoload 'warn "warnings" "\ Display a warning message made from (format-message MESSAGE ARGS...). Aside from generating the message with `format-message', this is equivalent to `display-warning', using `emacs' as the type and `:warning' as the level. (fn MESSAGE &rest ARGS)") (register-definition-prefixes "warnings" '("warning")) ;;; Generated autoloads from wdired.el (autoload 'wdired-change-to-wdired-mode "wdired" "\ Put a Dired buffer in Writable Dired (WDired) mode. \\ In WDired mode, you can edit the names of the files in the buffer, the target of the links, and the permission bits of the files. After typing \\[wdired-finish-edit], Emacs modifies the files and directories to reflect your edits. See `wdired-mode'." t) (register-definition-prefixes "wdired" '("wdired-")) ;;; Generated autoloads from net/webjump.el (autoload 'webjump "webjump" "\ Jumps to a Web site from a programmable hotlist. See the documentation for the `webjump-sites' variable for how to customize the hotlist. Please submit bug reports and other feedback to the author, Neil W. Van Dyke ." t) (register-definition-prefixes "webjump" '("webjump-")) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) (defvar which-function-mode nil "\ Non-nil if Which-Function mode is enabled. See the `which-function-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `which-function-mode'.") (custom-autoload 'which-function-mode "which-func" nil) (autoload 'which-function-mode "which-func" "\ Toggle mode line display of current function (Which Function mode). Which Function mode is a global minor mode. When enabled, the current function name is continuously displayed in the mode line, in certain major modes. This is a global minor mode. If called interactively, toggle the `Which-Function mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='which-function-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "which-func" '("which-func")) ;;; Generated autoloads from whitespace.el (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) (autoload 'whitespace-mode "whitespace" "\ Toggle whitespace visualization (Whitespace mode). See also `whitespace-style', `whitespace-newline' and `whitespace-display-mappings'. This mode uses a number of faces to visualize the whitespace; see the customization group `whitespace' for details. This is a minor mode. If called interactively, toggle the `Whitespace mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `whitespace-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'whitespace-newline-mode "whitespace" "\ Toggle newline visualization (Whitespace Newline mode). Use `whitespace-newline-mode' only for NEWLINE visualization exclusively. For other visualizations, including NEWLINE visualization together with (HARD) SPACEs and/or TABs, please, use `whitespace-mode'. See also `whitespace-newline' and `whitespace-display-mappings'. This is a minor mode. If called interactively, toggle the `Whitespace-Newline mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `whitespace-newline-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (put 'global-whitespace-mode 'globalized-minor-mode t) (defvar global-whitespace-mode nil "\ Non-nil if Global Whitespace mode is enabled. See the `global-whitespace-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-whitespace-mode'.") (custom-autoload 'global-whitespace-mode "whitespace" nil) (autoload 'global-whitespace-mode "whitespace" "\ Toggle Whitespace mode in all buffers. With prefix ARG, enable Global Whitespace mode if ARG is positive; otherwise, disable it. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. Whitespace mode is enabled in all buffers where `whitespace-turn-on-if-enabled' would do it. See `whitespace-mode' for more information on Whitespace mode. (fn &optional ARG)" t) (defvar global-whitespace-newline-mode nil "\ Non-nil if Global Whitespace-Newline mode is enabled. See the `global-whitespace-newline-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-whitespace-newline-mode'.") (custom-autoload 'global-whitespace-newline-mode "whitespace" nil) (autoload 'global-whitespace-newline-mode "whitespace" "\ Toggle global newline visualization (Global Whitespace Newline mode). Use `global-whitespace-newline-mode' only for NEWLINE visualization exclusively. For other visualizations, including NEWLINE visualization together with (HARD) SPACEs and/or TABs, please use `global-whitespace-mode'. See also `whitespace-newline' and `whitespace-display-mappings'. This is a global minor mode. If called interactively, toggle the `Global Whitespace-Newline mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='global-whitespace-newline-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'whitespace-toggle-options "whitespace" "\ Toggle local `whitespace-mode' options. If local whitespace-mode is off, toggle the option given by ARG and turn on local whitespace-mode. If local whitespace-mode is on, toggle the option given by ARG and restart local whitespace-mode. Interactively, it reads one of the following chars: CHAR MEANING (VIA FACES) f toggle face visualization t toggle TAB visualization s toggle SPACE and HARD SPACE visualization r toggle trailing blanks visualization l toggle \"long lines\" visualization L toggle \"long lines\" tail visualization n toggle NEWLINE visualization e toggle empty line at bob and/or eob visualization C-i toggle indentation SPACEs visualization (via `indent-tabs-mode') I toggle indentation SPACEs visualization i toggle indentation TABs visualization C-t toggle big indentation visualization C-a toggle SPACEs after TAB visualization (via `indent-tabs-mode') A toggle SPACEs after TAB: SPACEs visualization a toggle SPACEs after TAB: TABs visualization C-b toggle SPACEs before TAB visualization (via `indent-tabs-mode') B toggle SPACEs before TAB: SPACEs visualization b toggle SPACEs before TAB: TABs visualization (VIA DISPLAY TABLE) T toggle TAB visualization S toggle SPACEs before TAB visualization N toggle NEWLINE visualization x restore `whitespace-style' value ? display brief help Non-interactively, ARG should be a symbol or a list of symbols. The valid symbols are: face toggle face visualization tabs toggle TAB visualization spaces toggle SPACE and HARD SPACE visualization trailing toggle trailing blanks visualization lines toggle \"long lines\" visualization lines-tail toggle \"long lines\" tail visualization newline toggle NEWLINE visualization empty toggle empty line at bob and/or eob visualization indentation toggle indentation SPACEs visualization indentation::tab toggle indentation SPACEs visualization indentation::space toggle indentation TABs visualization big-indent toggle big indentation visualization space-after-tab toggle SPACEs after TAB visualization space-after-tab::tab toggle SPACEs after TAB: SPACEs visualization space-after-tab::space toggle SPACEs after TAB: TABs visualization space-before-tab toggle SPACEs before TAB visualization space-before-tab::tab toggle SPACEs before TAB: SPACEs visualization space-before-tab::space toggle SPACEs before TAB: TABs visualization tab-mark toggle TAB visualization space-mark toggle SPACEs before TAB visualization newline-mark toggle NEWLINE visualization whitespace-style restore `whitespace-style' value See `whitespace-style' and `indent-tabs-mode' for documentation. (fn ARG)" t) (autoload 'global-whitespace-toggle-options "whitespace" "\ Toggle global `whitespace-mode' options. If global whitespace-mode is off, toggle the option given by ARG and turn on global whitespace-mode. If global whitespace-mode is on, toggle the option given by ARG and restart global whitespace-mode. Interactively, it accepts one of the following chars: CHAR MEANING (VIA FACES) f toggle face visualization t toggle TAB visualization s toggle SPACE and HARD SPACE visualization r toggle trailing blanks visualization l toggle \"long lines\" visualization L toggle \"long lines\" tail visualization C-l toggle \"long lines\" one character visualization n toggle NEWLINE visualization e toggle empty line at bob and/or eob visualization C-i toggle indentation SPACEs visualization (via `indent-tabs-mode') I toggle indentation SPACEs visualization i toggle indentation TABs visualization C-t toggle big indentation visualization C-a toggle SPACEs after TAB visualization (via `indent-tabs-mode') A toggle SPACEs after TAB: SPACEs visualization a toggle SPACEs after TAB: TABs visualization C-b toggle SPACEs before TAB visualization (via `indent-tabs-mode') B toggle SPACEs before TAB: SPACEs visualization b toggle SPACEs before TAB: TABs visualization (VIA DISPLAY TABLE) T toggle TAB visualization S toggle SPACEs before TAB visualization N toggle NEWLINE visualization x restore `whitespace-style' value ? display brief help Non-interactively, ARG should be a symbol or a list of symbols. The valid symbols are: face toggle face visualization tabs toggle TAB visualization spaces toggle SPACE and HARD SPACE visualization trailing toggle trailing blanks visualization lines toggle \"long lines\" visualization lines-tail toggle \"long lines\" tail visualization lines-char toggle \"long lines\" one character visualization newline toggle NEWLINE visualization empty toggle empty line at bob and/or eob visualization indentation toggle indentation SPACEs visualization indentation::tab toggle indentation SPACEs visualization indentation::space toggle indentation TABs visualization big-indent toggle big indentation visualization space-after-tab toggle SPACEs after TAB visualization space-after-tab::tab toggle SPACEs after TAB: SPACEs visualization space-after-tab::space toggle SPACEs after TAB: TABs visualization space-before-tab toggle SPACEs before TAB visualization space-before-tab::tab toggle SPACEs before TAB: SPACEs visualization space-before-tab::space toggle SPACEs before TAB: TABs visualization tab-mark toggle TAB visualization space-mark toggle SPACEs before TAB visualization newline-mark toggle NEWLINE visualization whitespace-style restore `whitespace-style' value See `whitespace-style' and `indent-tabs-mode' for documentation. (fn ARG)" t) (autoload 'whitespace-cleanup "whitespace" "\ Cleanup some blank problems in all buffer or at region. It usually applies to the whole buffer, but in transient mark mode when the mark is active, it applies to the region. It also applies to the region when it is not in transient mark mode, the mark is active and \\[universal-argument] was pressed just before calling `whitespace-cleanup' interactively. See also `whitespace-cleanup-region'. The problems cleaned up are: 1. empty lines at beginning of buffer. 2. empty lines at end of buffer. If `whitespace-style' includes the value `empty', remove all empty lines at beginning and/or end of buffer. 3. `tab-width' or more SPACEs at beginning of line. If `whitespace-style' includes the value `indentation': replace `tab-width' or more SPACEs at beginning of line by TABs, if `indent-tabs-mode' is non-nil; otherwise, replace TABs by SPACEs. If `whitespace-style' includes the value `indentation::tab', replace `tab-width' or more SPACEs at beginning of line by TABs. If `whitespace-style' includes the value `indentation::space', replace TABs by SPACEs. 4. SPACEs before TAB. If `whitespace-style' includes the value `space-before-tab': replace SPACEs by TABs, if `indent-tabs-mode' is non-nil; otherwise, replace TABs by SPACEs. If `whitespace-style' includes the value `space-before-tab::tab', replace SPACEs by TABs. If `whitespace-style' includes the value `space-before-tab::space', replace TABs by SPACEs. 5. SPACEs or TABs at end of line. If `whitespace-style' includes the value `trailing', remove all SPACEs or TABs at end of line. 6. `tab-width' or more SPACEs after TAB. If `whitespace-style' includes the value `space-after-tab': replace SPACEs by TABs, if `indent-tabs-mode' is non-nil; otherwise, replace TABs by SPACEs. If `whitespace-style' includes the value `space-after-tab::tab', replace SPACEs by TABs. If `whitespace-style' includes the value `space-after-tab::space', replace TABs by SPACEs. See `whitespace-style', `indent-tabs-mode' and `tab-width' for documentation." t) (autoload 'whitespace-cleanup-region "whitespace" "\ Cleanup some blank problems at region. The problems cleaned up are: 1. `tab-width' or more SPACEs at beginning of line. If `whitespace-style' includes the value `indentation': replace `tab-width' or more SPACEs at beginning of line by TABs, if `indent-tabs-mode' is non-nil; otherwise, replace TABs by SPACEs. If `whitespace-style' includes the value `indentation::tab', replace `tab-width' or more SPACEs at beginning of line by TABs. If `whitespace-style' includes the value `indentation::space', replace TABs by SPACEs. 2. SPACEs before TAB. If `whitespace-style' includes the value `space-before-tab': replace SPACEs by TABs, if `indent-tabs-mode' is non-nil; otherwise, replace TABs by SPACEs. If `whitespace-style' includes the value `space-before-tab::tab', replace SPACEs by TABs. If `whitespace-style' includes the value `space-before-tab::space', replace TABs by SPACEs. 3. SPACEs or TABs at end of line. If `whitespace-style' includes the value `trailing', remove all SPACEs or TABs at end of line. 4. `tab-width' or more SPACEs after TAB. If `whitespace-style' includes the value `space-after-tab': replace SPACEs by TABs, if `indent-tabs-mode' is non-nil; otherwise, replace TABs by SPACEs. If `whitespace-style' includes the value `space-after-tab::tab', replace SPACEs by TABs. If `whitespace-style' includes the value `space-after-tab::space', replace TABs by SPACEs. See `whitespace-style', `indent-tabs-mode' and `tab-width' for documentation. (fn START END)" t) (autoload 'whitespace-report "whitespace" "\ Report some whitespace problems in buffer. Perform `whitespace-report-region' on the current buffer. (fn &optional FORCE REPORT-IF-BOGUS)" t) (autoload 'whitespace-report-region "whitespace" "\ Report some whitespace problems in a region. Return nil if there is no whitespace problem; otherwise, return non-nil. If FORCE is non-nil or \\[universal-argument] was pressed just before calling `whitespace-report-region' interactively, it forces all classes of whitespace problem to be considered significant. If REPORT-IF-BOGUS is t, it reports only when there are any whitespace problems in buffer; if it is `never', it does not report problems. Report if some of the following whitespace problems exist: * If `indent-tabs-mode' is non-nil: empty 1. empty lines at beginning of buffer. empty 2. empty lines at end of buffer. trailing 3. SPACEs or TABs at end of line. indentation 4. line starts with `tab-width' or more SPACEs. space-before-tab 5. SPACEs before TAB. space-after-tab 6. `tab-width' or more SPACEs after TAB. * If `indent-tabs-mode' is nil: empty 1. empty lines at beginning of buffer. empty 2. empty lines at end of buffer. trailing 3. SPACEs or TABs at end of line. indentation 4. TABS at beginning of line. space-before-tab 5. SPACEs before TAB. space-after-tab 6. `tab-width' or more SPACEs after TAB. See `whitespace-style' for documentation. See also `whitespace-cleanup' and `whitespace-cleanup-region' for cleaning up these problems. (fn START END &optional FORCE REPORT-IF-BOGUS)" t) (register-definition-prefixes "whitespace" '("whitespace-")) ;;; Generated autoloads from wid-browse.el (autoload 'widget-browse-at "wid-browse" "\ Browse the widget under point. (fn POS)" t) (autoload 'widget-browse "wid-browse" "\ Create a widget browser for WIDGET. (fn WIDGET)" t) (autoload 'widget-browse-other-window "wid-browse" "\ Show widget browser for WIDGET in other window. (fn &optional WIDGET)" t) (autoload 'widget-minor-mode "wid-browse" "\ Minor mode for traversing widgets. This is a minor mode. If called interactively, toggle the `Widget minor mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `widget-minor-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "wid-browse" '("widget-")) ;;; Generated autoloads from wid-edit.el (autoload 'widgetp "wid-edit" "\ Return non-nil if WIDGET is a widget. (fn WIDGET)") (autoload 'widget-prompt-value "wid-edit" "\ Prompt for a value matching WIDGET, using PROMPT. The current value is assumed to be VALUE, unless UNBOUND is non-nil. (fn WIDGET PROMPT &optional VALUE UNBOUND)") (autoload 'widget-create "wid-edit" "\ Create widget of TYPE. The optional ARGS are additional keyword arguments. (fn TYPE &rest ARGS)") (autoload 'widget-delete "wid-edit" "\ Delete WIDGET. (fn WIDGET)") (autoload 'widget-convert "wid-edit" "\ Convert TYPE to a widget without inserting it in the buffer. The optional ARGS are additional keyword arguments. (fn TYPE &rest ARGS)") (autoload 'widget-insert "wid-edit" "\ Call `insert' with ARGS even if surrounding text is read only. (fn &rest ARGS)") (defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map "\11" 'widget-forward) (define-key map "\33\11" 'widget-backward) (define-key map [(shift tab)] 'widget-backward) (put 'widget-backward :advertised-binding [(shift tab)]) (define-key map [backtab] 'widget-backward) (define-key map [down-mouse-2] 'widget-button-click) (define-key map [down-mouse-1] 'widget-button-click) (define-key map [touchscreen-begin] 'widget-button-click) (define-key map [(control 109)] 'widget-button-press) map) "\ Keymap containing useful binding for buffers containing widgets. Recommended as a parent keymap for modes using widgets. Note that such modes will need to require wid-edit.") (autoload 'widget-setup "wid-edit" "\ Setup current buffer so editing string widgets works.") (register-definition-prefixes "wid-edit" '("widget-")) ;;; Generated autoloads from windmove.el (autoload 'windmove-left "windmove" "\ Select the window to the left of the current one. With no prefix argument, or with prefix argument equal to zero, \"left\" is relative to the position of point in the window; otherwise it is relative to the top edge (for positive ARG) or the bottom edge (for negative ARG) of the current window. If no window is at the desired location, an error is signaled unless `windmove-create-window' is non-nil and a new window is created. (fn &optional ARG)" t) (autoload 'windmove-up "windmove" "\ Select the window above the current one. With no prefix argument, or with prefix argument equal to zero, \"up\" is relative to the position of point in the window; otherwise it is relative to the left edge (for positive ARG) or the right edge (for negative ARG) of the current window. If no window is at the desired location, an error is signaled unless `windmove-create-window' is non-nil and a new window is created. (fn &optional ARG)" t) (autoload 'windmove-right "windmove" "\ Select the window to the right of the current one. With no prefix argument, or with prefix argument equal to zero, \"right\" is relative to the position of point in the window; otherwise it is relative to the top edge (for positive ARG) or the bottom edge (for negative ARG) of the current window. If no window is at the desired location, an error is signaled unless `windmove-create-window' is non-nil and a new window is created. (fn &optional ARG)" t) (autoload 'windmove-down "windmove" "\ Select the window below the current one. With no prefix argument, or with prefix argument equal to zero, \"down\" is relative to the position of point in the window; otherwise it is relative to the left edge (for positive ARG) or the right edge (for negative ARG) of the current window. If no window is at the desired location, an error is signaled unless `windmove-create-window' is non-nil and a new window is created. (fn &optional ARG)" t) (defvar windmove-mode t "\ Non-nil if Windmove mode is enabled. See the `windmove-mode' command for a description of this minor mode.") (custom-autoload 'windmove-mode "windmove" nil) (autoload 'windmove-mode "windmove" "\ Global minor mode for default windmove commands. This is a global minor mode. If called interactively, toggle the `Windmove mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='windmove-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (autoload 'windmove-default-keybindings "windmove" "\ Set up keybindings for `windmove'. Keybindings are of the form MODIFIERS-{left,right,up,down}, where MODIFIERS is either a list of modifiers or a single modifier. If MODIFIERS is `none', the keybindings will be directly bound to the arrow keys. Default value of MODIFIERS is `shift'. (fn &optional MODIFIERS)" t) (autoload 'windmove-display-left "windmove" "\ Display the next buffer in window to the left of the current one. See the logic of the prefix ARG and `windmove-display-no-select' in `windmove-display-in-direction'. (fn &optional ARG)" t) (autoload 'windmove-display-up "windmove" "\ Display the next buffer in window above the current one. See the logic of the prefix ARG and `windmove-display-no-select' in `windmove-display-in-direction'. (fn &optional ARG)" t) (autoload 'windmove-display-right "windmove" "\ Display the next buffer in window to the right of the current one. See the logic of the prefix ARG and `windmove-display-no-select' in `windmove-display-in-direction'. (fn &optional ARG)" t) (autoload 'windmove-display-down "windmove" "\ Display the next buffer in window below the current one. See the logic of the prefix ARG and `windmove-display-no-select' in `windmove-display-in-direction'. (fn &optional ARG)" t) (autoload 'windmove-display-same-window "windmove" "\ Display the next buffer in the same window. (fn &optional ARG)" t) (autoload 'windmove-display-new-frame "windmove" "\ Display the next buffer in a new frame. (fn &optional ARG)" t) (autoload 'windmove-display-new-tab "windmove" "\ Display the next buffer in a new tab. (fn &optional ARG)" t) (autoload 'windmove-display-default-keybindings "windmove" "\ Set up keybindings for directional buffer display. Keys are bound to commands that display the next buffer in the specified direction. Keybindings are of the form MODIFIERS-{left,right,up,down}, where MODIFIERS is either a list of modifiers or a single modifier. If MODIFIERS is `none', the keybindings will be directly bound to the arrow keys. Default value of MODIFIERS is `shift-meta'. (fn &optional MODIFIERS)" t) (autoload 'windmove-delete-left "windmove" "\ Delete the window to the left of the current one. If prefix ARG is \\[universal-argument], delete the selected window and select the window that was to the left of the current one. (fn &optional ARG)" t) (autoload 'windmove-delete-up "windmove" "\ Delete the window above the current one. If prefix ARG is \\[universal-argument], delete the selected window and select the window that was above the current one. (fn &optional ARG)" t) (autoload 'windmove-delete-right "windmove" "\ Delete the window to the right of the current one. If prefix ARG is \\[universal-argument], delete the selected window and select the window that was to the right of the current one. (fn &optional ARG)" t) (autoload 'windmove-delete-down "windmove" "\ Delete the window below the current one. If prefix ARG is \\[universal-argument], delete the selected window and select the window that was below the current one. (fn &optional ARG)" t) (autoload 'windmove-delete-default-keybindings "windmove" "\ Set up keybindings for directional window deletion. Keys are bound to commands that delete windows in the specified direction. Keybindings are of the form PREFIX MODIFIERS-{left,right,up,down}, where PREFIX is a prefix key and MODIFIERS is either a list of modifiers or a single modifier. If PREFIX is `none', no prefix is used. If MODIFIERS is `none', the keybindings are directly bound to the arrow keys. Default value of PREFIX is \\`C-x' and MODIFIERS is `shift'. (fn &optional PREFIX MODIFIERS)" t) (autoload 'windmove-swap-states-left "windmove" "\ Swap the states with the window on the left from the current one." t) (autoload 'windmove-swap-states-up "windmove" "\ Swap the states with the window above from the current one." t) (autoload 'windmove-swap-states-down "windmove" "\ Swap the states with the window below from the current one." t) (autoload 'windmove-swap-states-right "windmove" "\ Swap the states with the window on the right from the current one." t) (autoload 'windmove-swap-states-default-keybindings "windmove" "\ Set up keybindings for directional window swap states. Keys are bound to commands that swap the states of the selected window with the window in the specified direction. Keybindings are of the form MODIFIERS-{left,right,up,down}, where MODIFIERS is either a list of modifiers or a single modifier. If MODIFIERS is `none', the keybindings will be directly bound to the arrow keys. Default value of MODIFIERS is `shift-super'. (fn &optional MODIFIERS)" t) (register-definition-prefixes "windmove" '("windmove-")) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ Non-nil if Winner mode is enabled. See the `winner-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `winner-mode'.") (custom-autoload 'winner-mode "winner" nil) (autoload 'winner-mode "winner" "\ Toggle Winner mode on or off. Winner mode is a global minor mode that records the changes in the window configuration (i.e. how the frames are partitioned into windows) so that the changes can be \"undone\" using the command `winner-undo'. By default this one is bound to the key sequence \\`C-c '. If you change your mind (while undoing), you can press \\`C-c ' (calling `winner-redo'). This is a global minor mode. If called interactively, toggle the `Winner mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='winner-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "winner" '("winner-")) ;;; Generated autoloads from cedet/semantic/wisent/wisent.el (register-definition-prefixes "semantic/wisent/wisent" '("$action" "$nterm" "$region" "wisent-")) ;;; Generated autoloads from cedet/semantic/wisent.el (register-definition-prefixes "semantic/wisent" '("define-wisent-lexer" "wisent-")) ;;; Generated autoloads from woman.el (defvar woman-locale nil "\ String specifying a manual page locale, or nil. If a manual page is available in the specified locale (e.g. \"sv_SE.ISO8859-1\"), it will be offered in preference to the default version. Normally, `set-locale-environment' sets this at startup.") (custom-autoload 'woman-locale "woman" t) (autoload 'woman "woman" "\ Browse UN*X man page for TOPIC (Without using external Man program). The major browsing mode used is essentially the standard Man mode. Choose the filename for the man page using completion, based on the topic selected from the directories specified in `woman-manpath' and `woman-path'. The directory expansions and topics are cached for speed. With a prefix argument, force the caches to be updated (e.g. to re-interpret the current directory). Used non-interactively, arguments are optional: if given then TOPIC should be a topic string and non-nil RE-CACHE forces re-caching. Note that `M-x woman' doesn’t yet support the latest features of modern man pages, so we recommend using `M-x man' if that is available on your system. (fn &optional TOPIC RE-CACHE)" t) (autoload 'woman-dired-find-file "woman" "\ In dired, run the WoMan man-page browser on this file." t) (autoload 'woman-find-file "woman" "\ Find, decode and browse a specific UN*X man-page source file FILE-NAME. Use existing buffer if possible; reformat only if prefix arg given. When called interactively, optional argument REFORMAT forces reformatting of an existing WoMan buffer formatted earlier. No external programs are used, except that `gunzip' will be used to decompress the file if appropriate. See the documentation for the `woman' command for further details. (fn FILE-NAME &optional REFORMAT)" t) (autoload 'woman-bookmark-jump "woman" "\ Default bookmark handler for Woman buffers. (fn BOOKMARK)") (register-definition-prefixes "woman" '("WoMan-" "woman")) ;;; Generated autoloads from textmodes/word-wrap-mode.el (autoload 'word-wrap-whitespace-mode "word-wrap-mode" "\ Allow `word-wrap' to fold on all breaking whitespace characters. The characters to break on are defined by `word-wrap-whitespace-characters'. This is a minor mode. If called interactively, toggle the `Word-Wrap-Whitespace mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `word-wrap-whitespace-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (put 'global-word-wrap-whitespace-mode 'globalized-minor-mode t) (defvar global-word-wrap-whitespace-mode nil "\ Non-nil if Global Word-Wrap-Whitespace mode is enabled. See the `global-word-wrap-whitespace-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `global-word-wrap-whitespace-mode'.") (custom-autoload 'global-word-wrap-whitespace-mode "word-wrap-mode" nil) (autoload 'global-word-wrap-whitespace-mode "word-wrap-mode" "\ Toggle Word-Wrap-Whitespace mode in all buffers. With prefix ARG, enable Global Word-Wrap-Whitespace mode if ARG is positive; otherwise, disable it. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. Word-Wrap-Whitespace mode is enabled in all buffers where `word-wrap-whitespace-mode' would do it. See `word-wrap-whitespace-mode' for more information on Word-Wrap-Whitespace mode. (fn &optional ARG)" t) (register-definition-prefixes "word-wrap-mode" '("word-wrap-whitespace-characters")) ;;; Generated autoloads from x-dnd.el (register-definition-prefixes "x-dnd" '("x-dnd-")) ;;; Generated autoloads from xdg.el (register-definition-prefixes "xdg" '("xdg-")) ;;; Generated autoloads from xml.el (autoload 'xml-parse-file "xml" "\ Parse the well-formed XML file FILE. Return the top node with all its children. If PARSE-DTD is non-nil, the DTD is parsed rather than skipped. If PARSE-NS is non-nil, then QNAMES are expanded. By default, the variable `xml-default-ns' is the mapping from namespaces to URIs, and expanded names will be returned as a cons (\"namespace:\" . \"foo\"). If PARSE-NS is an alist, it will be used as the mapping from namespace to URIs instead. If it is the symbol `symbol-qnames', expanded names will be returned as a plain symbol `namespace:foo' instead of a cons. Both features can be combined by providing a cons cell (symbol-qnames . ALIST). (fn FILE &optional PARSE-DTD PARSE-NS)") (autoload 'xml-parse-region "xml" "\ Parse the region from BEG to END in BUFFER. Return the XML parse tree, or raise an error if the region does not contain well-formed XML. If BEG is nil, it defaults to `point-min'. If END is nil, it defaults to `point-max'. If BUFFER is nil, it defaults to the current buffer. If PARSE-DTD is non-nil, parse the DTD and return it as the first element of the list. If PARSE-NS is non-nil, then QNAMES are expanded. By default, the variable `xml-default-ns' is the mapping from namespaces to URIs, and expanded names will be returned as a cons (\"namespace:\" . \"foo\"). If PARSE-NS is an alist, it will be used as the mapping from namespace to URIs instead. If it is the symbol `symbol-qnames', expanded names will be returned as a plain symbol `namespace:foo' instead of a cons. Both features can be combined by providing a cons cell (symbol-qnames . ALIST). (fn &optional BEG END BUFFER PARSE-DTD PARSE-NS)") (autoload 'xml-remove-comments "xml" "\ Remove XML/HTML comments in the region between BEG and END. All text between the markers will be removed. (fn BEG END)") (register-definition-prefixes "xml" '("xml-")) ;;; Generated autoloads from nxml/xmltok.el (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ Return the position of the encoding in the XML declaration at point. If there is a well-formed XML declaration starting at point and it contains an encoding declaration, then return (START . END) where START and END are the positions of the start and the end of the encoding name; if there is no encoding declaration return the position where and encoding declaration could be inserted. If there is XML that is not well-formed that looks like an XML declaration, return nil. Otherwise, return t. If LIMIT is non-nil, then do not consider characters beyond LIMIT. (fn &optional LIMIT)") (register-definition-prefixes "xmltok" '("xmltok-")) ;;; Generated autoloads from progmodes/xref.el (push (purecopy '(xref 1 6 3)) package--builtin-versions) (autoload 'xref-find-backend "xref") (define-obsolete-function-alias 'xref-pop-marker-stack #'xref-go-back "29.1") (autoload 'xref-go-back "xref" "\ Go back to the previous position in xref history. To undo, use \\[xref-go-forward]." t) (autoload 'xref-go-forward "xref" "\ Go to the point where a previous \\[xref-go-back] was invoked." t) (autoload 'xref-marker-stack-empty-p "xref" "\ Whether the xref back-history is empty.") (autoload 'xref-forward-history-empty-p "xref" "\ Whether the xref forward-history is empty.") (autoload 'xref-show-xrefs "xref" "\ Display some Xref values produced by FETCHER using DISPLAY-ACTION. The meanings of both arguments are the same as documented in `xref-show-xrefs-function'. (fn FETCHER DISPLAY-ACTION)") (autoload 'xref-find-definitions "xref" "\ Find the definition of the identifier at point. With prefix argument or when there's no identifier at point, prompt for it. If sufficient information is available to determine a unique definition for IDENTIFIER, display it in the selected window. Otherwise, display the list of the possible definitions in a buffer where the user can select from the list. Use \\[xref-go-back] to return back to where you invoked this command. (fn IDENTIFIER)" t) (autoload 'xref-find-definitions-other-window "xref" "\ Like `xref-find-definitions' but switch to the other window. (fn IDENTIFIER)" t) (autoload 'xref-find-definitions-other-frame "xref" "\ Like `xref-find-definitions' but switch to the other frame. (fn IDENTIFIER)" t) (autoload 'xref-find-references "xref" "\ Find references to the identifier at point. This command might prompt for the identifier as needed, perhaps offering the symbol at point as the default. With prefix argument, or if `xref-prompt-for-identifier' is t, always prompt for the identifier. If `xref-prompt-for-identifier' is nil, prompt only if there's no usable symbol at point. (fn IDENTIFIER)" t) (autoload 'xref-find-definitions-at-mouse "xref" "\ Find the definition of identifier at or around mouse click. This command is intended to be bound to a mouse event. (fn EVENT)" t) (autoload 'xref-find-references-at-mouse "xref" "\ Find references to the identifier at or around mouse click. This command is intended to be bound to a mouse event. (fn EVENT)" t) (autoload 'xref-find-apropos "xref" "\ Find all meaningful symbols that match PATTERN. The argument has the same meaning as in `apropos'. See `tags-apropos-additional-actions' for how to augment the output of this command when the backend is etags. (fn PATTERN)" t) (define-key esc-map "." #'xref-find-definitions) (define-key esc-map "," #'xref-go-back) (define-key esc-map [?\C-,] #'xref-go-forward) (define-key esc-map "?" #'xref-find-references) (define-key esc-map [?\C-.] #'xref-find-apropos) (define-key ctl-x-4-map "." #'xref-find-definitions-other-window) (define-key ctl-x-5-map "." #'xref-find-definitions-other-frame) (autoload 'xref-references-in-directory "xref" "\ Find all references to SYMBOL in directory DIR. Return a list of xref values. This function uses the Semantic Symbol Reference API, see `semantic-symref-tool-alist' for details on which tools are used, and when. (fn SYMBOL DIR)") (autoload 'xref-matches-in-directory "xref" "\ Find all matches for REGEXP in directory DIR. Return a list of xref values. Only files matching some of FILES and none of IGNORES are searched. FILES is a string with glob patterns separated by spaces. IGNORES is a list of glob patterns for files to ignore. (fn REGEXP FILES DIR IGNORES)") (autoload 'xref-matches-in-files "xref" "\ Find all matches for REGEXP in FILES. Return a list of xref values. FILES must be a list of absolute file names. See `xref-search-program' and `xref-search-program-alist' for how to control which program to use when looking for matches. (fn REGEXP FILES)") (register-definition-prefixes "xref" '("xref-")) ;;; Generated autoloads from progmodes/xscheme.el (register-definition-prefixes "xscheme" '("exit-scheme-interaction-mode" "global-set-scheme-interaction-buffer" "local-" "reset-scheme" "run-scheme" "scheme-" "start-scheme" "xscheme-")) ;;; Generated autoloads from nxml/xsd-regexp.el (register-definition-prefixes "xsd-regexp" '("xsdre-")) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ Non-nil if Xterm-Mouse mode is enabled. See the `xterm-mouse-mode' command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node `Easy Customization') or call the function `xterm-mouse-mode'.") (custom-autoload 'xterm-mouse-mode "xt-mouse" nil) (autoload 'xterm-mouse-mode "xt-mouse" "\ Toggle XTerm mouse mode. Turn it on to use Emacs mouse commands, and off to use xterm mouse commands. This works in terminal emulators compatible with xterm. It only works for simple uses of the mouse. Basically, only non-modified single clicks are supported. When turned on, the normal xterm mouse functionality for such clicks is still available by holding down the SHIFT key while pressing the mouse button. This is a global minor mode. If called interactively, toggle the `Xterm-Mouse mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. If called from Lisp, toggle the mode if ARG is `toggle'. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, evaluate `(default-value \\='xterm-mouse-mode)'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) (register-definition-prefixes "xt-mouse" '("turn-o" "xt-mouse-epoch" "xterm-mouse-")) ;;; Generated autoloads from xwidget.el (autoload 'xwidget-webkit-browse-url "xwidget" "\ Ask xwidget-webkit to browse URL. NEW-SESSION specifies whether to create a new xwidget-webkit session. Interactively, URL defaults to the string looking like a url around point. (fn URL &optional NEW-SESSION)" t) (autoload 'xwidget-webkit-bookmark-jump-handler "xwidget" "\ Jump to the web page bookmarked by the bookmark record BOOKMARK. If `xwidget-webkit-bookmark-jump-new-session' is non-nil, create a new xwidget-webkit session, otherwise use an existing session. (fn BOOKMARK)") (register-definition-prefixes "xwidget" '("xwidget-")) ;;; Generated autoloads from textmodes/yaml-ts-mode.el (autoload 'yaml-ts-mode "yaml-ts-mode" "\ Major mode for editing YAML, powered by tree-sitter. (fn)" t) (register-definition-prefixes "yaml-ts-mode" '("yaml-ts-mode--")) ;;; Generated autoloads from yank-media.el (autoload 'yank-media "yank-media" "\ Yank media (images, HTML and the like) from the clipboard. This command depends on the current major mode having support for accepting the media type. The mode has to register itself using the `yank-media-handler' mechanism. Also see `yank-media-types' for a command that lets you explore all the different selection types." t) (autoload 'yank-media-handler "yank-media" "\ Register HANDLER for dealing with `yank-media' actions for TYPES. TYPES should be a MIME media type symbol, a regexp, or a list that can contain both symbols and regexps. HANDLER is a function that will be called with two arguments: The MIME type (a symbol on the form `image/png') and the selection data (a string). (fn TYPES HANDLER)") (register-definition-prefixes "yank-media" '("yank-media-")) ;;; Generated autoloads from mail/yenc.el (autoload 'yenc-decode-region "yenc" "\ Yenc decode region between START and END using an internal decoder. (fn START END)" t) (autoload 'yenc-extract-filename "yenc" "\ Extract file name from an yenc header.") (register-definition-prefixes "yenc" '("yenc-")) ;;; Generated autoloads from net/zeroconf.el (register-definition-prefixes "zeroconf" '("zeroconf-")) ;;; Generated autoloads from play/zone.el (autoload 'zone "zone" "\ Zone out, completely. With a prefix argument the user is prompted for a program to run. When called from Lisp the optional argument PGM can be used to run a specific program. The program must be a member of `zone-programs'. (fn &optional PGM)" t) (register-definition-prefixes "zone" '("zone-")) ;;; Generated autoloads from net/tramp-androidsu.el (register-definition-prefixes "tramp-androidsu" '("tramp-androidsu-")) ;;; Generated autoloads from progmodes/peg.el (push (purecopy '(peg 1 0 1)) package--builtin-versions) (register-definition-prefixes "peg" '("bob" "bol" "bos" "bow" "define-peg-rule" "eob" "eol" "eos" "eow" "fail" "null" "peg" "with-peg-rules")) ;;; End of scraped data (provide 'loaddefs) ;; Local Variables: ;; version-control: never ;; no-update-autoloads: t ;; no-byte-compile: t ;; no-native-compile: t ;; coding: utf-8-emacs-unix ;; End: ;;; loaddefs.el ends here