aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2022-08-15 08:22:30 +0200
committerLars Ingebrigtsen2022-08-15 08:22:30 +0200
commitf2a592ea2f8224deca08747bb756eebd5d86cefa (patch)
tree49d052bfe930f562fba946554e3536fbaee35780
parentaf3ec6b8e60ef869fce24abd0f5b3a04853dea04 (diff)
downloademacs-f2a592ea2f8224deca08747bb756eebd5d86cefa.tar.gz
emacs-f2a592ea2f8224deca08747bb756eebd5d86cefa.zip
Regenerated ldefs-boot.el
-rw-r--r--lisp/ldefs-boot.el4827
1 files changed, 2407 insertions, 2420 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 429d7ab5328..855f5a25b16 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -38,16 +38,16 @@ Rotate left Calc Solutions \\[5x5-solve-rotate-left]
38Rotate right Calc Solutions \\[5x5-solve-rotate-right] 38Rotate right Calc Solutions \\[5x5-solve-rotate-right]
39Quit current game \\[5x5-quit-game] 39Quit current game \\[5x5-quit-game]
40 40
41(fn &optional SIZE)" t nil) 41(fn &optional SIZE)" t)
42(autoload '5x5-crack-randomly "5x5" "\ 42(autoload '5x5-crack-randomly "5x5" "\
43Attempt to crack 5x5 using random solutions." t nil) 43Attempt to crack 5x5 using random solutions." t)
44(autoload '5x5-crack-mutating-current "5x5" "\ 44(autoload '5x5-crack-mutating-current "5x5" "\
45Attempt to crack 5x5 by mutating the current solution." t nil) 45Attempt to crack 5x5 by mutating the current solution." t)
46(autoload '5x5-crack-mutating-best "5x5" "\ 46(autoload '5x5-crack-mutating-best "5x5" "\
47Attempt to crack 5x5 by mutating the best solution." t nil) 47Attempt to crack 5x5 by mutating the best solution." t)
48(autoload '5x5-crack-xor-mutate "5x5" "\ 48(autoload '5x5-crack-xor-mutate "5x5" "\
49Attempt to crack 5x5 by xoring the current and best solution. 49Attempt to crack 5x5 by xoring the current and best solution.
50Mutate the result." t nil) 50Mutate the result." t)
51(autoload '5x5-crack "5x5" "\ 51(autoload '5x5-crack "5x5" "\
52Attempt to find a solution for 5x5. 52Attempt to find a solution for 5x5.
53 53
@@ -56,7 +56,7 @@ two parameters, the first will be a grid vector array that is the current
56solution and the second will be the best solution so far. The function 56solution and the second will be the best solution so far. The function
57should return a grid vector array that is the new solution. 57should return a grid vector array that is the new solution.
58 58
59(fn BREEDER)" t nil) 59(fn BREEDER)" t)
60(register-definition-prefixes "5x5" '("5x5-")) 60(register-definition-prefixes "5x5" '("5x5-"))
61 61
62 62
@@ -81,7 +81,7 @@ will be recognized as referring to the same user; when creating a new
81ChangeLog entry, one element will be chosen at random.") 81ChangeLog entry, one element will be chosen at random.")
82(custom-autoload 'add-log-mailing-address "add-log" t) 82(custom-autoload 'add-log-mailing-address "add-log" t)
83(autoload 'prompt-for-change-log-name "add-log" "\ 83(autoload 'prompt-for-change-log-name "add-log" "\
84Prompt for a change log name." nil nil) 84Prompt for a change log name.")
85(autoload 'find-change-log "add-log" "\ 85(autoload 'find-change-log "add-log" "\
86Find a change log file for \\[add-change-log-entry] and return the name. 86Find a change log file for \\[add-change-log-entry] and return the name.
87 87
@@ -102,7 +102,7 @@ Once a file is found, `change-log-default-name' is set locally in the
102current buffer to the complete file name. 102current buffer to the complete file name.
103Optional arg BUFFER-FILE overrides `buffer-file-name'. 103Optional arg BUFFER-FILE overrides `buffer-file-name'.
104 104
105(fn &optional FILE-NAME BUFFER-FILE)" nil nil) 105(fn &optional FILE-NAME BUFFER-FILE)")
106(autoload 'add-change-log-entry "add-log" "\ 106(autoload 'add-change-log-entry "add-log" "\
107Find ChangeLog buffer, add an entry for today and an item for this file. 107Find ChangeLog buffer, add an entry for today and an item for this file.
108Optional arg WHOAMI (interactive prefix) non-nil means prompt for 108Optional arg WHOAMI (interactive prefix) non-nil means prompt for
@@ -138,13 +138,13 @@ notices.
138Today's date is calculated according to `add-log-time-zone-rule' if 138Today's date is calculated according to `add-log-time-zone-rule' if
139non-nil, otherwise in local time. 139non-nil, otherwise in local time.
140 140
141(fn &optional WHOAMI CHANGELOG-FILE-NAME OTHER-WINDOW NEW-ENTRY PUT-NEW-ENTRY-ON-NEW-LINE)" t nil) 141(fn &optional WHOAMI CHANGELOG-FILE-NAME OTHER-WINDOW NEW-ENTRY PUT-NEW-ENTRY-ON-NEW-LINE)" t)
142(autoload 'add-change-log-entry-other-window "add-log" "\ 142(autoload 'add-change-log-entry-other-window "add-log" "\
143Find change log file in other window and add entry and item. 143Find change log file in other window and add entry and item.
144This is just like `add-change-log-entry' except that it displays 144This is just like `add-change-log-entry' except that it displays
145the change log file in another window. 145the change log file in another window.
146 146
147(fn &optional WHOAMI FILE-NAME)" t nil) 147(fn &optional WHOAMI FILE-NAME)" t)
148(autoload 'change-log-mode "add-log" "\ 148(autoload 'change-log-mode "add-log" "\
149Major mode for editing change logs; like Indented Text mode. 149Major mode for editing change logs; like Indented Text mode.
150Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74. 150Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
@@ -154,7 +154,7 @@ Runs `change-log-mode-hook'.
154 154
155\\{change-log-mode-map} 155\\{change-log-mode-map}
156 156
157(fn)" t nil) 157(fn)" t)
158(autoload 'add-log-current-defun "add-log" "\ 158(autoload 'add-log-current-defun "add-log" "\
159Return name of function definition point is in, or nil. 159Return name of function definition point is in, or nil.
160 160
@@ -167,7 +167,7 @@ identifiers followed by `:' or `='. See variables
167`add-log-current-defun-header-regexp' and 167`add-log-current-defun-header-regexp' and
168`add-log-current-defun-function'. 168`add-log-current-defun-function'.
169 169
170Has a preference of looking backwards." nil nil) 170Has a preference of looking backwards.")
171(autoload 'change-log-merge "add-log" "\ 171(autoload 'change-log-merge "add-log" "\
172Merge the contents of change log file OTHER-LOG with this buffer. 172Merge the contents of change log file OTHER-LOG with this buffer.
173Both must be found in Change Log mode (since the merging depends on 173Both must be found in Change Log mode (since the merging depends on
@@ -177,7 +177,7 @@ or a buffer.
177Entries are inserted in chronological order. Both the current and 177Entries are inserted in chronological order. Both the current and
178old-style time formats for entries are supported. 178old-style time formats for entries are supported.
179 179
180(fn OTHER-LOG)" t nil) 180(fn OTHER-LOG)" t)
181(register-definition-prefixes "add-log" '("add-log-" "change-log-")) 181(register-definition-prefixes "add-log" '("add-log-" "change-log-"))
182 182
183 183
@@ -206,11 +206,11 @@ COMPILE argument of `ad-activate' was supplied as nil.")
206(autoload 'ad-enable-advice "advice" "\ 206(autoload 'ad-enable-advice "advice" "\
207Enables the advice of FUNCTION with CLASS and NAME. 207Enables the advice of FUNCTION with CLASS and NAME.
208 208
209(fn FUNCTION CLASS NAME)" t nil) 209(fn FUNCTION CLASS NAME)" t)
210(autoload 'ad-disable-advice "advice" "\ 210(autoload 'ad-disable-advice "advice" "\
211Disable the advice of FUNCTION with CLASS and NAME. 211Disable the advice of FUNCTION with CLASS and NAME.
212 212
213(fn FUNCTION CLASS NAME)" t nil) 213(fn FUNCTION CLASS NAME)" t)
214(autoload 'ad-add-advice "advice" "\ 214(autoload 'ad-add-advice "advice" "\
215Add a piece of ADVICE to FUNCTION's list of advices in CLASS. 215Add a piece of ADVICE to FUNCTION's list of advices in CLASS.
216 216
@@ -234,7 +234,7 @@ If FUNCTION was not advised already, its advice info will be
234initialized. Redefining a piece of advice whose name is part of 234initialized. Redefining a piece of advice whose name is part of
235the cache-id will clear the cache. 235the cache-id will clear the cache.
236 236
237(fn FUNCTION ADVICE CLASS POSITION)" nil nil) 237(fn FUNCTION ADVICE CLASS POSITION)")
238(autoload 'ad-activate "advice" "\ 238(autoload 'ad-activate "advice" "\
239Activate all the advice information of an advised FUNCTION. 239Activate all the advice information of an advised FUNCTION.
240If FUNCTION has a proper original definition then an advised 240If FUNCTION has a proper original definition then an advised
@@ -252,7 +252,7 @@ an advised function that has actual pieces of advice but none of them are
252enabled is equivalent to a call to `ad-deactivate'. The current advised 252enabled is equivalent to a call to `ad-deactivate'. The current advised
253definition will always be cached for later usage. 253definition will always be cached for later usage.
254 254
255(fn FUNCTION &optional COMPILE)" t nil) 255(fn FUNCTION &optional COMPILE)" t)
256(autoload 'defadvice "advice" "\ 256(autoload 'defadvice "advice" "\
257Define a piece of advice for FUNCTION (a symbol). 257Define a piece of advice for FUNCTION (a symbol).
258The syntax of `defadvice' is as follows: 258The syntax of `defadvice' is as follows:
@@ -335,7 +335,7 @@ default rule lists defined in `align-rules-list' and
335`align-exclude-rules-list'. See `align-rules-list' for more details 335`align-exclude-rules-list'. See `align-rules-list' for more details
336on the format of these lists. 336on the format of these lists.
337 337
338(fn BEG END &optional SEPARATE RULES EXCLUDE-RULES)" t nil) 338(fn BEG END &optional SEPARATE RULES EXCLUDE-RULES)" t)
339(autoload 'align-regexp "align" "\ 339(autoload 'align-regexp "align" "\
340Align the current region using an ad-hoc rule read from the minibuffer. 340Align the current region using an ad-hoc rule read from the minibuffer.
341BEG and END mark the limits of the region. Interactively, this function 341BEG and END mark the limits of the region. Interactively, this function
@@ -378,7 +378,7 @@ The non-interactive form of the previous example would look something like:
378This function is a nothing more than a small wrapper that helps you 378This function is a nothing more than a small wrapper that helps you
379construct a rule to pass to `align-region', which does the real work. 379construct a rule to pass to `align-region', which does the real work.
380 380
381(fn BEG END REGEXP &optional GROUP SPACING REPEAT)" t nil) 381(fn BEG END REGEXP &optional GROUP SPACING REPEAT)" t)
382(autoload 'align-entire "align" "\ 382(autoload 'align-entire "align" "\
383Align the selected region as if it were one alignment section. 383Align the selected region as if it were one alignment section.
384BEG and END mark the extent of the region. If RULES or EXCLUDE-RULES 384BEG and END mark the extent of the region. If RULES or EXCLUDE-RULES
@@ -386,7 +386,7 @@ is set to a list of rules (see `align-rules-list'), it can be used to
386override the default alignment rules that would have been used to 386override the default alignment rules that would have been used to
387align that section. 387align that section.
388 388
389(fn BEG END &optional RULES EXCLUDE-RULES)" t nil) 389(fn BEG END &optional RULES EXCLUDE-RULES)" t)
390(autoload 'align-current "align" "\ 390(autoload 'align-current "align" "\
391Call `align' on the current alignment section. 391Call `align' on the current alignment section.
392This function assumes you want to align only the current section, and 392This function assumes you want to align only the current section, and
@@ -395,7 +395,7 @@ EXCLUDE-RULES is set to a list of rules (see `align-rules-list'), it
395can be used to override the default alignment rules that would have 395can be used to override the default alignment rules that would have
396been used to align that section. 396been used to align that section.
397 397
398(fn &optional RULES EXCLUDE-RULES)" t nil) 398(fn &optional RULES EXCLUDE-RULES)" t)
399(autoload 'align-highlight-rule "align" "\ 399(autoload 'align-highlight-rule "align" "\
400Highlight the whitespace which a given rule would have modified. 400Highlight the whitespace which a given rule would have modified.
401BEG and END mark the extent of the region. TITLE identifies the rule 401BEG and END mark the extent of the region. TITLE identifies the rule
@@ -404,13 +404,13 @@ list of rules (see `align-rules-list'), it can be used to override the
404default alignment rules that would have been used to identify the text 404default alignment rules that would have been used to identify the text
405to be colored. 405to be colored.
406 406
407(fn BEG END TITLE &optional RULES EXCLUDE-RULES)" t nil) 407(fn BEG END TITLE &optional RULES EXCLUDE-RULES)" t)
408(autoload 'align-unhighlight-rule "align" "\ 408(autoload 'align-unhighlight-rule "align" "\
409Remove any highlighting that was added by `align-highlight-rule'." t nil) 409Remove any highlighting that was added by `align-highlight-rule'." t)
410(autoload 'align-newline-and-indent "align" "\ 410(autoload 'align-newline-and-indent "align" "\
411A replacement function for `newline-and-indent', aligning as it goes. 411A replacement function for `newline-and-indent', aligning as it goes.
412The alignment is done by calling `align' on the region that was 412The alignment is done by calling `align' on the region that was
413indented." t nil) 413indented." t)
414(register-definition-prefixes "align" '("align-")) 414(register-definition-prefixes "align" '("align-"))
415 415
416 416
@@ -422,7 +422,7 @@ Institute `allout-auto-activation'.
422 422
423Intended to be used as the `allout-auto-activation' :set function. 423Intended to be used as the `allout-auto-activation' :set function.
424 424
425(fn VAR VALUE)" nil nil) 425(fn VAR VALUE)")
426(autoload 'allout-setup "allout" "\ 426(autoload 'allout-setup "allout" "\
427Do fundamental Emacs session for allout auto-activation. 427Do fundamental Emacs session for allout auto-activation.
428 428
@@ -430,7 +430,7 @@ Establishes allout processing as part of visiting a file if
430`allout-auto-activation' is non-nil, or removes it otherwise. 430`allout-auto-activation' is non-nil, or removes it otherwise.
431 431
432The proper way to use this is through customizing the setting of 432The proper way to use this is through customizing the setting of
433`allout-auto-activation'." nil nil) 433`allout-auto-activation'.")
434(defvar allout-auto-activation nil "\ 434(defvar allout-auto-activation nil "\
435Configure allout outline mode auto-activation. 435Configure allout outline mode auto-activation.
436 436
@@ -567,7 +567,7 @@ the HOT-SPOT Operation section.
567 567
568 Misc commands: 568 Misc commands:
569 ------------- 569 -------------
570M-x outlineify-sticky Activate outline mode for current buffer, 570\\[allout-outlinify-sticky] Activate outline mode for current buffer,
571 and establish a default file-var setting 571 and establish a default file-var setting
572 for `allout-layout'. 572 for `allout-layout'.
573\\[allout-mark-topic] `allout-mark-topic' 573\\[allout-mark-topic] `allout-mark-topic'
@@ -742,15 +742,16 @@ evaluate `allout-mode'.
742The mode's hook is called both when the mode is enabled and when 742The mode's hook is called both when the mode is enabled and when
743it is disabled. 743it is disabled.
744 744
745(fn &optional ARG)" t nil) 745(fn &optional ARG)" t)
746(defalias 'outlinify-sticky #'outlineify-sticky) 746(define-obsolete-function-alias 'outlinify-sticky #'allout-outlinify-sticky "29.1")
747(autoload 'outlineify-sticky "allout" "\ 747(define-obsolete-function-alias 'outlineify-sticky #'allout-outlinify-sticky "29.1")
748(autoload 'allout-outlinify-sticky "allout" "\
748Activate outline mode and establish file var so it is started subsequently. 749Activate outline mode and establish file var so it is started subsequently.
749 750
750See `allout-layout' and customization of `allout-auto-activation' 751See `allout-layout' and customization of `allout-auto-activation'
751for details on preparing Emacs for automatic allout activation. 752for details on preparing Emacs for automatic allout activation.
752 753
753(fn &optional ARG)" t nil) 754(fn &optional ARG)" t)
754(register-definition-prefixes "allout" '("allout-")) 755(register-definition-prefixes "allout" '("allout-"))
755 756
756 757
@@ -762,7 +763,7 @@ Commission or decommission allout-widgets-mode along with allout-mode.
762 763
763Meant to be used by customization of `allout-widgets-auto-activation'. 764Meant to be used by customization of `allout-widgets-auto-activation'.
764 765
765(fn VARNAME VALUE)" nil nil) 766(fn VARNAME VALUE)")
766(defvar allout-widgets-auto-activation nil "\ 767(defvar allout-widgets-auto-activation nil "\
767Activate to enable allout icon graphics wherever allout mode is active. 768Activate to enable allout icon graphics wherever allout mode is active.
768 769
@@ -814,7 +815,7 @@ evaluate `allout-widgets-mode'.
814The mode's hook is called both when the mode is enabled and when 815The mode's hook is called both when the mode is enabled and when
815it is disabled. 816it is disabled.
816 817
817(fn &optional ARG)" t nil) 818(fn &optional ARG)" t)
818(register-definition-prefixes "allout-widgets" '("allout-")) 819(register-definition-prefixes "allout-widgets" '("allout-"))
819 820
820 821
@@ -833,11 +834,11 @@ for speed. Therefore, when new remote files are created, Emacs
833may not know they exist. You can use this command to reread a specific 834may not know they exist. You can use this command to reread a specific
834directory, so that Emacs will know its current contents. 835directory, so that Emacs will know its current contents.
835 836
836(fn &optional DIR)" t nil) 837(fn &optional DIR)" t)
837(autoload 'ange-ftp-hook-function "ange-ftp" "\ 838(autoload 'ange-ftp-hook-function "ange-ftp" "\
838 839
839 840
840(fn OPERATION &rest ARGS)" nil nil) 841(fn OPERATION &rest ARGS)")
841(register-definition-prefixes "ange-ftp" '("ange-ftp-" "ftp-error" "internal-ange-ftp-mode")) 842(register-definition-prefixes "ange-ftp" '("ange-ftp-" "ftp-error" "internal-ange-ftp-mode"))
842 843
843 844
@@ -851,7 +852,7 @@ passing through `animate-n-steps' positions before the final ones.
851If HPOS is nil (or omitted), center the string horizontally 852If HPOS is nil (or omitted), center the string horizontally
852in the current window. 853in the current window.
853 854
854(fn STRING VPOS &optional HPOS)" nil nil) 855(fn STRING VPOS &optional HPOS)")
855(autoload 'animate-sequence "animate" "\ 856(autoload 'animate-sequence "animate" "\
856Display animation strings from LIST-OF-STRING with buffer *Animation*. 857Display animation strings from LIST-OF-STRING with buffer *Animation*.
857Strings will be separated from each other by SPACE lines. 858Strings will be separated from each other by SPACE lines.
@@ -859,14 +860,14 @@ Strings will be separated from each other by SPACE lines.
859animation in the buffer named by variable's value, creating the 860animation in the buffer named by variable's value, creating the
860buffer if one does not exist. 861buffer if one does not exist.
861 862
862(fn LIST-OF-STRINGS SPACE)" nil nil) 863(fn LIST-OF-STRINGS SPACE)")
863(autoload 'animate-birthday-present "animate" "\ 864(autoload 'animate-birthday-present "animate" "\
864Return a birthday present in the buffer *Birthday-Present*. 865Return a birthday present in the buffer *Birthday-Present*.
865When optional arg NAME is non-nil or called-interactively, prompt for 866When optional arg NAME is non-nil or called-interactively, prompt for
866NAME of birthday present receiver and return a birthday present in 867NAME of birthday present receiver and return a birthday present in
867the buffer *Birthday-Present-for-Name*. 868the buffer *Birthday-Present-for-Name*.
868 869
869(fn &optional NAME)" t nil) 870(fn &optional NAME)" t)
870(register-definition-prefixes "animate" '("animat")) 871(register-definition-prefixes "animate" '("animat"))
871 872
872 873
@@ -874,7 +875,7 @@ the buffer *Birthday-Present-for-Name*.
874 875
875(push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) 876(push (purecopy '(ansi-color 3 4 2)) package--builtin-versions)
876(autoload 'ansi-color-for-comint-mode-on "ansi-color" "\ 877(autoload 'ansi-color-for-comint-mode-on "ansi-color" "\
877Set `ansi-color-for-comint-mode' to t." t nil) 878Set `ansi-color-for-comint-mode' to t." t)
878(autoload 'ansi-color-process-output "ansi-color" "\ 879(autoload 'ansi-color-process-output "ansi-color" "\
879Maybe translate SGR control sequences of comint output into text properties. 880Maybe translate SGR control sequences of comint output into text properties.
880 881
@@ -888,11 +889,11 @@ The comint output is assumed to lie between the marker
888 889
889This is a good function to put in `comint-output-filter-functions'. 890This is a good function to put in `comint-output-filter-functions'.
890 891
891(fn IGNORED)" nil nil) 892(fn IGNORED)")
892(autoload 'ansi-color-compilation-filter "ansi-color" "\ 893(autoload 'ansi-color-compilation-filter "ansi-color" "\
893Maybe translate SGR control sequences into text properties. 894Maybe translate SGR control sequences into text properties.
894This function depends on the `ansi-color-for-compilation-mode' 895This function depends on the `ansi-color-for-compilation-mode'
895variable, and is meant to be used in `compilation-filter-hook'." nil nil) 896variable, and is meant to be used in `compilation-filter-hook'.")
896(register-definition-prefixes "ansi-color" '("ansi-color-")) 897(register-definition-prefixes "ansi-color" '("ansi-color-"))
897 898
898 899
@@ -914,14 +915,14 @@ the rules.
914If the file for a super-grammar cannot be determined, special file names 915If the file for a super-grammar cannot be determined, special file names
915are used according to variable `antlr-unknown-file-formats' and a 916are used according to variable `antlr-unknown-file-formats' and a
916commentary with value `antlr-help-unknown-file-text' is added. The 917commentary with value `antlr-help-unknown-file-text' is added. The
917*Help* buffer always starts with the text in `antlr-help-rules-intro'." t nil) 918*Help* buffer always starts with the text in `antlr-help-rules-intro'." t)
918(autoload 'antlr-mode "antlr-mode" "\ 919(autoload 'antlr-mode "antlr-mode" "\
919Major mode for editing ANTLR grammar files. 920Major mode for editing ANTLR grammar files.
920 921
921(fn)" t nil) 922(fn)" t)
922(autoload 'antlr-set-tabs "antlr-mode" "\ 923(autoload 'antlr-set-tabs "antlr-mode" "\
923Use ANTLR's convention for TABs according to `antlr-tab-offset-alist'. 924Use ANTLR's convention for TABs according to `antlr-tab-offset-alist'.
924Used in `antlr-mode'. Also a useful function in `java-mode-hook'." nil nil) 925Used in `antlr-mode'. Also a useful function in `java-mode-hook'.")
925(register-definition-prefixes "antlr-mode" '("antlr-")) 926(register-definition-prefixes "antlr-mode" '("antlr-"))
926 927
927 928
@@ -934,13 +935,13 @@ Optional argument WARNTIME is an integer (or string) giving the number
934of minutes before the appointment at which to start warning. 935of minutes before the appointment at which to start warning.
935The default is `appt-message-warning-time'. 936The default is `appt-message-warning-time'.
936 937
937(fn TIME MSG &optional WARNTIME)" t nil) 938(fn TIME MSG &optional WARNTIME)" t)
938(autoload 'appt-activate "appt" "\ 939(autoload 'appt-activate "appt" "\
939Toggle checking of appointments. 940Toggle checking of appointments.
940With optional numeric argument ARG, turn appointment checking on if 941With optional numeric argument ARG, turn appointment checking on if
941ARG is positive, otherwise off. 942ARG is positive, otherwise off.
942 943
943(fn &optional ARG)" t nil) 944(fn &optional ARG)" t)
944(register-definition-prefixes "appt" '("appt-")) 945(register-definition-prefixes "appt" '("appt-"))
945 946
946 947
@@ -954,7 +955,7 @@ literally, or a string which is used as a regexp to search for.
954SUBJECT is a string that is included in the prompt to identify what 955SUBJECT is a string that is included in the prompt to identify what
955kind of objects to search. 956kind of objects to search.
956 957
957(fn SUBJECT)" nil nil) 958(fn SUBJECT)")
958(autoload 'apropos-user-option "apropos" "\ 959(autoload 'apropos-user-option "apropos" "\
959Show user options that match PATTERN. 960Show user options that match PATTERN.
960PATTERN can be a word, a list of words (separated by spaces), 961PATTERN can be a word, a list of words (separated by spaces),
@@ -965,14 +966,14 @@ search for matches for any two (or more) of those words.
965With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also show 966With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also show
966variables, not just user options. 967variables, not just user options.
967 968
968(fn PATTERN &optional DO-ALL)" t nil) 969(fn PATTERN &optional DO-ALL)" t)
969(autoload 'apropos-variable "apropos" "\ 970(autoload 'apropos-variable "apropos" "\
970Show variables that match PATTERN. 971Show variables that match PATTERN.
971With the optional argument DO-NOT-ALL non-nil (or when called 972With the optional argument DO-NOT-ALL non-nil (or when called
972interactively with the prefix \\[universal-argument]), show user 973interactively with the prefix \\[universal-argument]), show user
973options only, i.e. behave like `apropos-user-option'. 974options only, i.e. behave like `apropos-user-option'.
974 975
975(fn PATTERN &optional DO-NOT-ALL)" t nil) 976(fn PATTERN &optional DO-NOT-ALL)" t)
976(autoload 'apropos-local-variable "apropos" "\ 977(autoload 'apropos-local-variable "apropos" "\
977Show buffer-local variables that match PATTERN. 978Show buffer-local variables that match PATTERN.
978Optional arg BUFFER (default: current buffer) is the buffer to check. 979Optional arg BUFFER (default: current buffer) is the buffer to check.
@@ -980,7 +981,7 @@ Optional arg BUFFER (default: current buffer) is the buffer to check.
980The output includes variables that are not yet set in BUFFER, but that 981The output includes variables that are not yet set in BUFFER, but that
981will be buffer-local when set. 982will be buffer-local when set.
982 983
983(fn PATTERN &optional BUFFER)" t nil) 984(fn PATTERN &optional BUFFER)" t)
984(autoload 'apropos-function "apropos" "\ 985(autoload 'apropos-function "apropos" "\
985Show functions that match PATTERN. 986Show functions that match PATTERN.
986 987
@@ -992,7 +993,7 @@ search for matches for any two (or more) of those words.
992This is the same as running `apropos-command' with a \\[universal-argument] prefix, 993This is the same as running `apropos-command' with a \\[universal-argument] prefix,
993or a non-nil `apropos-do-all' argument. 994or a non-nil `apropos-do-all' argument.
994 995
995(fn PATTERN)" t nil) 996(fn PATTERN)" t)
996(defalias 'command-apropos #'apropos-command) 997(defalias 'command-apropos #'apropos-command)
997(autoload 'apropos-command "apropos" "\ 998(autoload 'apropos-command "apropos" "\
998Show commands (interactively callable functions) that match PATTERN. 999Show commands (interactively callable functions) that match PATTERN.
@@ -1010,11 +1011,11 @@ satisfy the predicate VAR-PREDICATE.
1010When called from a Lisp program, a string PATTERN is used as a regexp, 1011When called from a Lisp program, a string PATTERN is used as a regexp,
1011while a list of strings is used as a word list. 1012while a list of strings is used as a word list.
1012 1013
1013(fn PATTERN &optional DO-ALL VAR-PREDICATE)" t nil) 1014(fn PATTERN &optional DO-ALL VAR-PREDICATE)" t)
1014(autoload 'apropos-documentation-property "apropos" "\ 1015(autoload 'apropos-documentation-property "apropos" "\
1015Like (documentation-property SYMBOL PROPERTY RAW) but handle errors. 1016Like (documentation-property SYMBOL PROPERTY RAW) but handle errors.
1016 1017
1017(fn SYMBOL PROPERTY RAW)" nil nil) 1018(fn SYMBOL PROPERTY RAW)")
1018(autoload 'apropos "apropos" "\ 1019(autoload 'apropos "apropos" "\
1019Show all meaningful Lisp symbols whose names match PATTERN. 1020Show all meaningful Lisp symbols whose names match PATTERN.
1020Symbols are shown if they are defined as functions, variables, or 1021Symbols are shown if they are defined as functions, variables, or
@@ -1033,14 +1034,14 @@ Return list of symbols and documentation found.
1033The *Apropos* window will be selected if `help-window-select' is 1034The *Apropos* window will be selected if `help-window-select' is
1034non-nil. 1035non-nil.
1035 1036
1036(fn PATTERN &optional DO-ALL)" t nil) 1037(fn PATTERN &optional DO-ALL)" t)
1037(autoload 'apropos-library "apropos" "\ 1038(autoload 'apropos-library "apropos" "\
1038List the variables and functions defined by library FILE. 1039List the variables and functions defined by library FILE.
1039FILE should be one of the libraries currently loaded and should 1040FILE should be one of the libraries currently loaded and should
1040thus be found in `load-history'. If `apropos-do-all' is non-nil, 1041thus be found in `load-history'. If `apropos-do-all' is non-nil,
1041the output includes key-bindings of commands. 1042the output includes key-bindings of commands.
1042 1043
1043(fn FILE)" t nil) 1044(fn FILE)" t)
1044(autoload 'apropos-value "apropos" "\ 1045(autoload 'apropos-value "apropos" "\
1045Show all symbols whose value's printed representation matches PATTERN. 1046Show all symbols whose value's printed representation matches PATTERN.
1046PATTERN can be a word, a list of words (separated by spaces), 1047PATTERN can be a word, a list of words (separated by spaces),
@@ -1054,13 +1055,13 @@ names and values of properties.
1054 1055
1055Returns list of symbols and values found. 1056Returns list of symbols and values found.
1056 1057
1057(fn PATTERN &optional DO-ALL)" t nil) 1058(fn PATTERN &optional DO-ALL)" t)
1058(autoload 'apropos-local-value "apropos" "\ 1059(autoload 'apropos-local-value "apropos" "\
1059Show buffer-local variables whose values match PATTERN. 1060Show buffer-local variables whose values match PATTERN.
1060This is like `apropos-value', but only for buffer-local variables. 1061This is like `apropos-value', but only for buffer-local variables.
1061Optional arg BUFFER (default: current buffer) is the buffer to check. 1062Optional arg BUFFER (default: current buffer) is the buffer to check.
1062 1063
1063(fn PATTERN &optional BUFFER)" t nil) 1064(fn PATTERN &optional BUFFER)" t)
1064(autoload 'apropos-documentation "apropos" "\ 1065(autoload 'apropos-documentation "apropos" "\
1065Show symbols whose documentation contains matches for PATTERN. 1066Show symbols whose documentation contains matches for PATTERN.
1066PATTERN can be a word, a list of words (separated by spaces), 1067PATTERN can be a word, a list of words (separated by spaces),
@@ -1075,7 +1076,7 @@ documentation strings.
1075 1076
1076Returns list of symbols and documentation found. 1077Returns list of symbols and documentation found.
1077 1078
1078(fn PATTERN &optional DO-ALL)" t nil) 1079(fn PATTERN &optional DO-ALL)" t)
1079(register-definition-prefixes "apropos" '("apropos-")) 1080(register-definition-prefixes "apropos" '("apropos-"))
1080 1081
1081 1082
@@ -1094,7 +1095,7 @@ archive.
1094 1095
1095\\{archive-mode-map} 1096\\{archive-mode-map}
1096 1097
1097(fn &optional FORCE)" nil nil) 1098(fn &optional FORCE)")
1098(register-definition-prefixes "arc-mode" '("arc")) 1099(register-definition-prefixes "arc-mode" '("arc"))
1099 1100
1100 1101
@@ -1172,8 +1173,8 @@ take a numeric prefix argument):
1172 1173
1173Entering array mode calls the function `array-mode-hook'. 1174Entering array mode calls the function `array-mode-hook'.
1174 1175
1175(fn)" t nil) 1176(fn)" t)
1176(register-definition-prefixes "array" '("array-" "current-line" "limit-index" "move-to-column-untabify" "untabify-backward")) 1177(register-definition-prefixes "array" '("array-"))
1177 1178
1178 1179
1179;;; Generated autoloads from textmodes/artist.el 1180;;; Generated autoloads from textmodes/artist.el
@@ -1390,7 +1391,7 @@ evaluate `artist-mode'.
1390The mode's hook is called both when the mode is enabled and when 1391The mode's hook is called both when the mode is enabled and when
1391it is disabled. 1392it is disabled.
1392 1393
1393(fn &optional ARG)" t nil) 1394(fn &optional ARG)" t)
1394(register-definition-prefixes "artist" '("artist-")) 1395(register-definition-prefixes "artist" '("artist-"))
1395 1396
1396 1397
@@ -1416,7 +1417,7 @@ Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
1416Special commands: 1417Special commands:
1417\\{asm-mode-map} 1418\\{asm-mode-map}
1418 1419
1419(fn)" t nil) 1420(fn)" t)
1420(register-definition-prefixes "asm-mode" '("asm-")) 1421(register-definition-prefixes "asm-mode" '("asm-"))
1421 1422
1422 1423
@@ -1429,7 +1430,7 @@ Overrides `password-cache-expiry' through a let-binding.")
1429(autoload 'auth-source-netrc-parse-all "auth-source" "\ 1430(autoload 'auth-source-netrc-parse-all "auth-source" "\
1430Parse FILE and return all entries. 1431Parse FILE and return all entries.
1431 1432
1432(fn FILE)" nil nil) 1433(fn FILE)")
1433(autoload 'authinfo-mode "auth-source" "\ 1434(autoload 'authinfo-mode "auth-source" "\
1434Mode for editing .authinfo/.netrc files. 1435Mode for editing .authinfo/.netrc files.
1435 1436
@@ -1439,7 +1440,7 @@ point is moved into the passwords (see `authinfo-hide-elements').
1439 1440
1440\\{authinfo-mode-map} 1441\\{authinfo-mode-map}
1441 1442
1442(fn)" t nil) 1443(fn)" t)
1443(register-definition-prefixes "auth-source" '("auth")) 1444(register-definition-prefixes "auth-source" '("auth"))
1444 1445
1445 1446
@@ -1447,7 +1448,7 @@ point is moved into the passwords (see `authinfo-hide-elements').
1447 1448
1448(push (purecopy '(auth-source-pass 5 0 0)) package--builtin-versions) 1449(push (purecopy '(auth-source-pass 5 0 0)) package--builtin-versions)
1449(autoload 'auth-source-pass-enable "auth-source-pass" "\ 1450(autoload 'auth-source-pass-enable "auth-source-pass" "\
1450Enable auth-source-password-store." nil nil) 1451Enable auth-source-password-store.")
1451(autoload 'auth-source-pass-get "auth-source-pass" "\ 1452(autoload 'auth-source-pass-get "auth-source-pass" "\
1452Return the value associated to KEY in the password-store entry ENTRY. 1453Return the value associated to KEY in the password-store entry ENTRY.
1453 1454
@@ -1461,7 +1462,7 @@ secret
1461key1: value1 1462key1: value1
1462key2: value2 1463key2: value2
1463 1464
1464(fn KEY ENTRY)" nil nil) 1465(fn KEY ENTRY)")
1465(register-definition-prefixes "auth-source-pass" '("auth-source-pass-")) 1466(register-definition-prefixes "auth-source-pass" '("auth-source-pass-"))
1466 1467
1467 1468
@@ -1475,7 +1476,7 @@ added. Possible values are:
1475 `unique' - A unique project type for a specific project. Keep at the very 1476 `unique' - A unique project type for a specific project. Keep at the very
1476 front of the list so more generic projects don't get priority. 1477 front of the list so more generic projects don't get priority.
1477 1478
1478(fn PROJAUTO &optional FLAG)" nil nil) 1479(fn PROJAUTO &optional FLAG)")
1479(register-definition-prefixes "ede/auto" '("ede-")) 1480(register-definition-prefixes "ede/auto" '("ede-"))
1480 1481
1481 1482
@@ -1484,7 +1485,7 @@ added. Possible values are:
1484(autoload 'autoconf-mode "autoconf" "\ 1485(autoload 'autoconf-mode "autoconf" "\
1485Major mode for editing Autoconf configure.ac files. 1486Major mode for editing Autoconf configure.ac files.
1486 1487
1487(fn)" t nil) 1488(fn)" t)
1488(register-definition-prefixes "autoconf" '("autoconf-")) 1489(register-definition-prefixes "autoconf" '("autoconf-"))
1489 1490
1490 1491
@@ -1498,13 +1499,13 @@ Major mode for editing Autoconf configure.ac files.
1498(put 'auto-insert 'safe-local-variable #'null) 1499(put 'auto-insert 'safe-local-variable #'null)
1499(autoload 'auto-insert "autoinsert" "\ 1500(autoload 'auto-insert "autoinsert" "\
1500Insert default contents into new files if variable `auto-insert' is non-nil. 1501Insert default contents into new files if variable `auto-insert' is non-nil.
1501Matches the visited file name against the elements of `auto-insert-alist'." t nil) 1502Matches the visited file name against the elements of `auto-insert-alist'." t)
1502(autoload 'define-auto-insert "autoinsert" "\ 1503(autoload 'define-auto-insert "autoinsert" "\
1503Associate CONDITION with (additional) ACTION in `auto-insert-alist'. 1504Associate CONDITION with (additional) ACTION in `auto-insert-alist'.
1504Optional AFTER means to insert action after all existing actions for CONDITION, 1505Optional AFTER means to insert action after all existing actions for CONDITION,
1505or if CONDITION had no actions, after all other CONDITIONs. 1506or if CONDITION had no actions, after all other CONDITIONs.
1506 1507
1507(fn CONDITION ACTION &optional AFTER)" nil nil) 1508(fn CONDITION ACTION &optional AFTER)")
1508(function-put 'define-auto-insert 'lisp-indent-function 'defun) 1509(function-put 'define-auto-insert 'lisp-indent-function 'defun)
1509(defvar auto-insert-mode nil "\ 1510(defvar auto-insert-mode nil "\
1510Non-nil if Auto-Insert mode is enabled. 1511Non-nil if Auto-Insert mode is enabled.
@@ -1534,7 +1535,7 @@ evaluate `(default-value \\='auto-insert-mode)'.
1534The mode's hook is called both when the mode is enabled and when 1535The mode's hook is called both when the mode is enabled and when
1535it is disabled. 1536it is disabled.
1536 1537
1537(fn &optional ARG)" t nil) 1538(fn &optional ARG)" t)
1538(register-definition-prefixes "autoinsert" '("auto-insert")) 1539(register-definition-prefixes "autoinsert" '("auto-insert"))
1539 1540
1540 1541
@@ -1572,12 +1573,12 @@ evaluate `auto-revert-mode'.
1572The mode's hook is called both when the mode is enabled and when 1573The mode's hook is called both when the mode is enabled and when
1573it is disabled. 1574it is disabled.
1574 1575
1575(fn &optional ARG)" t nil) 1576(fn &optional ARG)" t)
1576(autoload 'turn-on-auto-revert-mode "autorevert" "\ 1577(autoload 'turn-on-auto-revert-mode "autorevert" "\
1577Turn on Auto-Revert Mode. 1578Turn on Auto-Revert Mode.
1578 1579
1579This function is designed to be added to hooks, for example: 1580This function is designed to be added to hooks, for example:
1580 (add-hook \\='c-mode-hook #\\='turn-on-auto-revert-mode)" nil nil) 1581 (add-hook \\='c-mode-hook #\\='turn-on-auto-revert-mode)")
1581(autoload 'auto-revert-tail-mode "autorevert" "\ 1582(autoload 'auto-revert-tail-mode "autorevert" "\
1582Toggle reverting tail of buffer when the file grows. 1583Toggle reverting tail of buffer when the file grows.
1583 1584
@@ -1611,12 +1612,12 @@ evaluate `auto-revert-tail-mode'.
1611The mode's hook is called both when the mode is enabled and when 1612The mode's hook is called both when the mode is enabled and when
1612it is disabled. 1613it is disabled.
1613 1614
1614(fn &optional ARG)" t nil) 1615(fn &optional ARG)" t)
1615(autoload 'turn-on-auto-revert-tail-mode "autorevert" "\ 1616(autoload 'turn-on-auto-revert-tail-mode "autorevert" "\
1616Turn on Auto-Revert Tail Mode. 1617Turn on Auto-Revert Tail Mode.
1617 1618
1618This function is designed to be added to hooks, for example: 1619This function is designed to be added to hooks, for example:
1619 (add-hook \\='my-logfile-mode-hook #\\='turn-on-auto-revert-tail-mode)" nil nil) 1620 (add-hook \\='my-logfile-mode-hook #\\='turn-on-auto-revert-tail-mode)")
1620(defvar global-auto-revert-mode nil "\ 1621(defvar global-auto-revert-mode nil "\
1621Non-nil if Global Auto-Revert mode is enabled. 1622Non-nil if Global Auto-Revert mode is enabled.
1622See the `global-auto-revert-mode' command 1623See the `global-auto-revert-mode' command
@@ -1660,7 +1661,7 @@ evaluate `(default-value \\='global-auto-revert-mode)'.
1660The mode's hook is called both when the mode is enabled and when 1661The mode's hook is called both when the mode is enabled and when
1661it is disabled. 1662it is disabled.
1662 1663
1663(fn &optional ARG)" t nil) 1664(fn &optional ARG)" t)
1664(register-definition-prefixes "autorevert" '("auto-revert-" "global-auto-revert-")) 1665(register-definition-prefixes "autorevert" '("auto-revert-" "global-auto-revert-"))
1665 1666
1666 1667
@@ -1700,7 +1701,7 @@ Effects of the different modes:
1700and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for 1701and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for
1701definition of \"random distance\".) 1702definition of \"random distance\".)
1702 1703
1703(fn &optional MODE)" t nil) 1704(fn &optional MODE)" t)
1704(register-definition-prefixes "avoid" '("mouse-avoidance-")) 1705(register-definition-prefixes "avoid" '("mouse-avoidance-"))
1705 1706
1706 1707
@@ -1709,7 +1710,7 @@ definition of \"random distance\".)
1709(push (purecopy '(backtrace 1 0)) package--builtin-versions) 1710(push (purecopy '(backtrace 1 0)) package--builtin-versions)
1710(autoload 'backtrace "backtrace" "\ 1711(autoload 'backtrace "backtrace" "\
1711Print a trace of Lisp function calls currently active. 1712Print a trace of Lisp function calls currently active.
1712Output stream used is value of `standard-output'." nil nil) 1713Output stream used is value of `standard-output'.")
1713(register-definition-prefixes "backtrace" '("backtrace-")) 1714(register-definition-prefixes "backtrace" '("backtrace-"))
1714 1715
1715 1716
@@ -1729,7 +1730,7 @@ Run script using `bat-run' and `bat-run-args'.
1729 1730
1730\\{bat-mode-map} 1731\\{bat-mode-map}
1731 1732
1732(fn)" t nil) 1733(fn)" t)
1733(register-definition-prefixes "bat-mode" '("bat-")) 1734(register-definition-prefixes "bat-mode" '("bat-"))
1734 1735
1735 1736
@@ -1739,7 +1740,7 @@ Run script using `bat-run' and `bat-run-args'.
1739(autoload 'battery "battery" "\ 1740(autoload 'battery "battery" "\
1740Display battery status information in the echo area. 1741Display battery status information in the echo area.
1741The text being displayed in the echo area is controlled by the variables 1742The text being displayed in the echo area is controlled by the variables
1742`battery-echo-area-format' and `battery-status-function'." t nil) 1743`battery-echo-area-format' and `battery-status-function'." t)
1743(defvar display-battery-mode nil "\ 1744(defvar display-battery-mode nil "\
1744Non-nil if Display-Battery mode is enabled. 1745Non-nil if Display-Battery mode is enabled.
1745See the `display-battery-mode' command 1746See the `display-battery-mode' command
@@ -1774,7 +1775,7 @@ evaluate `(default-value \\='display-battery-mode)'.
1774The mode's hook is called both when the mode is enabled and when 1775The mode's hook is called both when the mode is enabled and when
1775it is disabled. 1776it is disabled.
1776 1777
1777(fn &optional ARG)" t nil) 1778(fn &optional ARG)" t)
1778(register-definition-prefixes "battery" '("battery-")) 1779(register-definition-prefixes "battery" '("battery-"))
1779 1780
1780 1781
@@ -1792,7 +1793,7 @@ specifies a minimum number of seconds that the benchmark execution
1792should take. In that case the return value is prepended with the 1793should take. In that case the return value is prepended with the
1793number of repetitions actually used. 1794number of repetitions actually used.
1794 1795
1795(fn FUNC &optional REPETITIONS)" nil nil) 1796(fn FUNC &optional REPETITIONS)")
1796(autoload 'benchmark-run "benchmark" "\ 1797(autoload 'benchmark-run "benchmark" "\
1797Time execution of FORMS. 1798Time execution of FORMS.
1798If REPETITIONS is supplied as a number, run FORMS that many times, 1799If REPETITIONS is supplied as a number, run FORMS that many times,
@@ -1821,7 +1822,7 @@ For non-interactive use see also `benchmark-run' and
1821FORM can also be a function in which case we measure the time it takes 1822FORM can also be a function in which case we measure the time it takes
1822to call it without any argument. 1823to call it without any argument.
1823 1824
1824(fn REPETITIONS FORM)" t nil) 1825(fn REPETITIONS FORM)" t)
1825(autoload 'benchmark-progn "benchmark" "\ 1826(autoload 'benchmark-progn "benchmark" "\
1826Evaluate BODY and message the time taken. 1827Evaluate BODY and message the time taken.
1827The return value is the value of the final form in BODY. 1828The return value is the value of the final form in BODY.
@@ -1852,7 +1853,7 @@ When called interactively, FORCE is t, CURRENT is t if current buffer
1852visits a file using `bibtex-mode', and SELECT is t if current buffer 1853visits a file using `bibtex-mode', and SELECT is t if current buffer
1853does not use `bibtex-mode'. 1854does not use `bibtex-mode'.
1854 1855
1855(fn &optional CURRENT FORCE SELECT)" t nil) 1856(fn &optional CURRENT FORCE SELECT)" t)
1856(autoload 'bibtex-mode "bibtex" "\ 1857(autoload 'bibtex-mode "bibtex" "\
1857Major mode for editing BibTeX files. 1858Major mode for editing BibTeX files.
1858 1859
@@ -1906,7 +1907,7 @@ if that value is non-nil.
1906 1907
1907\\{bibtex-mode-map} 1908\\{bibtex-mode-map}
1908 1909
1909(fn)" t nil) 1910(fn)" t)
1910(autoload 'bibtex-search-entry "bibtex" "\ 1911(autoload 'bibtex-search-entry "bibtex" "\
1911Move point to the beginning of BibTeX entry named KEY. 1912Move point to the beginning of BibTeX entry named KEY.
1912Return position of entry if KEY is found or nil if not found. 1913Return position of entry if KEY is found or nil if not found.
@@ -1920,7 +1921,7 @@ Also, GLOBAL is t if the current mode is not `bibtex-mode'
1920or `bibtex-search-entry-globally' is non-nil. 1921or `bibtex-search-entry-globally' is non-nil.
1921A prefix arg negates the value of `bibtex-search-entry-globally'. 1922A prefix arg negates the value of `bibtex-search-entry-globally'.
1922 1923
1923(fn KEY &optional GLOBAL START DISPLAY)" t nil) 1924(fn KEY &optional GLOBAL START DISPLAY)" t)
1924(register-definition-prefixes "bibtex" '("bibtex-")) 1925(register-definition-prefixes "bibtex" '("bibtex-"))
1925 1926
1926 1927
@@ -1929,7 +1930,7 @@ A prefix arg negates the value of `bibtex-search-entry-globally'.
1929(autoload 'bibtex-style-mode "bibtex-style" "\ 1930(autoload 'bibtex-style-mode "bibtex-style" "\
1930Major mode for editing BibTeX style files. 1931Major mode for editing BibTeX style files.
1931 1932
1932(fn)" t nil) 1933(fn)" t)
1933(register-definition-prefixes "bibtex-style" '("bibtex-style-")) 1934(register-definition-prefixes "bibtex-style" '("bibtex-style-"))
1934 1935
1935 1936
@@ -1946,15 +1947,15 @@ Regular expression matching the start of a BinHex encoded region.")
1946Binhex decode region between START and END without using an external program. 1947Binhex decode region between START and END without using an external program.
1947If HEADER-ONLY is non-nil only decode header and return filename. 1948If HEADER-ONLY is non-nil only decode header and return filename.
1948 1949
1949(fn START END &optional HEADER-ONLY)" t nil) 1950(fn START END &optional HEADER-ONLY)" t)
1950(autoload 'binhex-decode-region-external "binhex" "\ 1951(autoload 'binhex-decode-region-external "binhex" "\
1951Binhex decode region between START and END using external decoder. 1952Binhex decode region between START and END using external decoder.
1952 1953
1953(fn START END)" t nil) 1954(fn START END)" t)
1954(autoload 'binhex-decode-region "binhex" "\ 1955(autoload 'binhex-decode-region "binhex" "\
1955Binhex decode region between START and END. 1956Binhex decode region between START and END.
1956 1957
1957(fn START END)" t nil) 1958(fn START END)" t)
1958(register-definition-prefixes "binhex" '("binhex-")) 1959(register-definition-prefixes "binhex" '("binhex-"))
1959 1960
1960 1961
@@ -2072,7 +2073,7 @@ H * * * O - - - - - - - - - - - - - - - - - - - -
2072Be sure to compare the second example of a hit with the first example of 2073Be sure to compare the second example of a hit with the first example of
2073a reflection. 2074a reflection.
2074 2075
2075(fn NUM)" t nil) 2076(fn NUM)" t)
2076(register-definition-prefixes "blackbox" '("bb-" "blackbox-")) 2077(register-definition-prefixes "blackbox" '("bb-" "blackbox-"))
2077 2078
2078 2079
@@ -2114,7 +2115,7 @@ Use \\[bookmark-delete] to remove bookmarks (you give it a name and
2114it removes only the first instance of a bookmark with that name from 2115it removes only the first instance of a bookmark with that name from
2115the list of bookmarks.) 2116the list of bookmarks.)
2116 2117
2117(fn &optional NAME NO-OVERWRITE)" t nil) 2118(fn &optional NAME NO-OVERWRITE)" t)
2118(autoload 'bookmark-set-no-overwrite "bookmark" "\ 2119(autoload 'bookmark-set-no-overwrite "bookmark" "\
2119Set a bookmark named NAME at the current location. 2120Set a bookmark named NAME at the current location.
2120If NAME is nil, then prompt the user. 2121If NAME is nil, then prompt the user.
@@ -2143,7 +2144,7 @@ Use \\[bookmark-delete] to remove bookmarks (you give it a name and
2143it removes only the first instance of a bookmark with that name from 2144it removes only the first instance of a bookmark with that name from
2144the list of bookmarks.) 2145the list of bookmarks.)
2145 2146
2146(fn &optional NAME PUSH-BOOKMARK)" t nil) 2147(fn &optional NAME PUSH-BOOKMARK)" t)
2147(autoload 'bookmark-jump "bookmark" "\ 2148(autoload 'bookmark-jump "bookmark" "\
2148Jump to bookmark BOOKMARK (a point in some file). 2149Jump to bookmark BOOKMARK (a point in some file).
2149You may have a problem using this function if the value of variable 2150You may have a problem using this function if the value of variable
@@ -2163,15 +2164,15 @@ If DISPLAY-FUNC is non-nil, it is a function to invoke to display the
2163bookmark. It defaults to `pop-to-buffer-same-window'. A typical value for 2164bookmark. It defaults to `pop-to-buffer-same-window'. A typical value for
2164DISPLAY-FUNC would be `switch-to-buffer-other-window'. 2165DISPLAY-FUNC would be `switch-to-buffer-other-window'.
2165 2166
2166(fn BOOKMARK &optional DISPLAY-FUNC)" t nil) 2167(fn BOOKMARK &optional DISPLAY-FUNC)" t)
2167(autoload 'bookmark-jump-other-window "bookmark" "\ 2168(autoload 'bookmark-jump-other-window "bookmark" "\
2168Jump to BOOKMARK in another window. See `bookmark-jump' for more. 2169Jump to BOOKMARK in another window. See `bookmark-jump' for more.
2169 2170
2170(fn BOOKMARK)" t nil) 2171(fn BOOKMARK)" t)
2171(autoload 'bookmark-jump-other-frame "bookmark" "\ 2172(autoload 'bookmark-jump-other-frame "bookmark" "\
2172Jump to BOOKMARK in another frame. See `bookmark-jump' for more. 2173Jump to BOOKMARK in another frame. See `bookmark-jump' for more.
2173 2174
2174(fn BOOKMARK)" t nil) 2175(fn BOOKMARK)" t)
2175(autoload 'bookmark-relocate "bookmark" "\ 2176(autoload 'bookmark-relocate "bookmark" "\
2176Relocate BOOKMARK-NAME to another file, reading file name with minibuffer. 2177Relocate BOOKMARK-NAME to another file, reading file name with minibuffer.
2177 2178
@@ -2179,14 +2180,14 @@ This makes an already existing bookmark point to that file, instead of
2179the one it used to point at. Useful when a file has been renamed 2180the one it used to point at. Useful when a file has been renamed
2180after a bookmark was set in it. 2181after a bookmark was set in it.
2181 2182
2182(fn BOOKMARK-NAME)" t nil) 2183(fn BOOKMARK-NAME)" t)
2183(autoload 'bookmark-insert-location "bookmark" "\ 2184(autoload 'bookmark-insert-location "bookmark" "\
2184Insert the name of the file associated with BOOKMARK-NAME. 2185Insert the name of the file associated with BOOKMARK-NAME.
2185 2186
2186Optional second arg NO-HISTORY means don't record this in the 2187Optional second arg NO-HISTORY means don't record this in the
2187minibuffer history list `bookmark-history'. 2188minibuffer history list `bookmark-history'.
2188 2189
2189(fn BOOKMARK-NAME &optional NO-HISTORY)" t nil) 2190(fn BOOKMARK-NAME &optional NO-HISTORY)" t)
2190(defalias 'bookmark-locate 'bookmark-insert-location) 2191(defalias 'bookmark-locate 'bookmark-insert-location)
2191(autoload 'bookmark-rename "bookmark" "\ 2192(autoload 'bookmark-rename "bookmark" "\
2192Change the name of OLD-NAME bookmark to NEW-NAME name. 2193Change the name of OLD-NAME bookmark to NEW-NAME name.
@@ -2201,7 +2202,7 @@ While you are entering the new name, consecutive \\<bookmark-minibuffer-read-nam
2201consecutive words from the text of the buffer into the new bookmark 2202consecutive words from the text of the buffer into the new bookmark
2202name. 2203name.
2203 2204
2204(fn OLD-NAME &optional NEW-NAME)" t nil) 2205(fn OLD-NAME &optional NEW-NAME)" t)
2205(autoload 'bookmark-insert "bookmark" "\ 2206(autoload 'bookmark-insert "bookmark" "\
2206Insert the text of the file pointed to by bookmark BOOKMARK-NAME. 2207Insert the text of the file pointed to by bookmark BOOKMARK-NAME.
2207BOOKMARK-NAME is a bookmark name (a string), not a bookmark record. 2208BOOKMARK-NAME is a bookmark name (a string), not a bookmark record.
@@ -2211,7 +2212,7 @@ You may have a problem using this function if the value of variable
2211bookmarks. See help on function `bookmark-load' for more about 2212bookmarks. See help on function `bookmark-load' for more about
2212this. 2213this.
2213 2214
2214(fn BOOKMARK-NAME)" t nil) 2215(fn BOOKMARK-NAME)" t)
2215(autoload 'bookmark-delete "bookmark" "\ 2216(autoload 'bookmark-delete "bookmark" "\
2216Delete BOOKMARK-NAME from the bookmark list. 2217Delete BOOKMARK-NAME from the bookmark list.
2217 2218
@@ -2222,15 +2223,15 @@ one most recently used in this file, if any).
2222Optional second arg BATCH means don't update the bookmark list buffer, 2223Optional second arg BATCH means don't update the bookmark list buffer,
2223probably because we were called from there. 2224probably because we were called from there.
2224 2225
2225(fn BOOKMARK-NAME &optional BATCH)" t nil) 2226(fn BOOKMARK-NAME &optional BATCH)" t)
2226(autoload 'bookmark-delete-all "bookmark" "\ 2227(autoload 'bookmark-delete-all "bookmark" "\
2227Permanently delete all bookmarks. 2228Permanently delete all bookmarks.
2228If optional argument NO-CONFIRM is non-nil, don't ask for 2229If optional argument NO-CONFIRM is non-nil, don't ask for
2229confirmation. 2230confirmation.
2230 2231
2231(fn &optional NO-CONFIRM)" t nil) 2232(fn &optional NO-CONFIRM)" t)
2232(autoload 'bookmark-write "bookmark" "\ 2233(autoload 'bookmark-write "bookmark" "\
2233Write bookmarks to a file (reading the file name with the minibuffer)." t nil) 2234Write bookmarks to a file (reading the file name with the minibuffer)." t)
2234(function-put 'bookmark-write 'interactive-only 'bookmark-save) 2235(function-put 'bookmark-write 'interactive-only 'bookmark-save)
2235(autoload 'bookmark-save "bookmark" "\ 2236(autoload 'bookmark-save "bookmark" "\
2236Save currently defined bookmarks in FILE. 2237Save currently defined bookmarks in FILE.
@@ -2245,7 +2246,7 @@ When you want to load in the bookmarks from a file, use
2245for a file, defaulting to the file defined by variable 2246for a file, defaulting to the file defined by variable
2246`bookmark-default-file'. 2247`bookmark-default-file'.
2247 2248
2248(fn &optional PARG FILE MAKE-DEFAULT)" t nil) 2249(fn &optional PARG FILE MAKE-DEFAULT)" t)
2249(autoload 'bookmark-load "bookmark" "\ 2250(autoload 'bookmark-load "bookmark" "\
2250Load bookmarks from FILE (which must be in bookmark format). 2251Load bookmarks from FILE (which must be in bookmark format).
2251Appends loaded bookmarks to the front of the list of bookmarks. 2252Appends loaded bookmarks to the front of the list of bookmarks.
@@ -2265,19 +2266,19 @@ If you load a file containing bookmarks with the same names as
2265bookmarks already present in your Emacs, the new bookmarks will get 2266bookmarks already present in your Emacs, the new bookmarks will get
2266unique numeric suffixes \"<2>\", \"<3>\", etc. 2267unique numeric suffixes \"<2>\", \"<3>\", etc.
2267 2268
2268(fn FILE &optional OVERWRITE NO-MSG DEFAULT)" t nil) 2269(fn FILE &optional OVERWRITE NO-MSG DEFAULT)" t)
2269(autoload 'bookmark-bmenu-get-buffer "bookmark" "\ 2270(autoload 'bookmark-bmenu-get-buffer "bookmark" "\
2270Return the Bookmark List, building it if it doesn't exists. 2271Return the Bookmark List, building it if it doesn't exists.
2271Don't affect the buffer ring order." nil nil) 2272Don't affect the buffer ring order.")
2272(autoload 'bookmark-bmenu-list "bookmark" "\ 2273(autoload 'bookmark-bmenu-list "bookmark" "\
2273Display a list of existing bookmarks. 2274Display a list of existing bookmarks.
2274The list is displayed in a buffer named `*Bookmark List*'. 2275The list is displayed in a buffer named `*Bookmark List*'.
2275The leftmost column displays a D if the bookmark is flagged for 2276The leftmost column displays a D if the bookmark is flagged for
2276deletion, or > if it is flagged for displaying." t nil) 2277deletion, or > if it is flagged for displaying." t)
2277(defalias 'list-bookmarks 'bookmark-bmenu-list) 2278(defalias 'list-bookmarks 'bookmark-bmenu-list)
2278(defalias 'edit-bookmarks 'bookmark-bmenu-list) 2279(defalias 'edit-bookmarks 'bookmark-bmenu-list)
2279(autoload 'bookmark-bmenu-search "bookmark" "\ 2280(autoload 'bookmark-bmenu-search "bookmark" "\
2280Incremental search of bookmarks, hiding the non-matches as we go." '(bookmark-bmenu-mode) nil) 2281Incremental search of bookmarks, hiding the non-matches as we go." '(bookmark-bmenu-mode))
2281(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)) 2282(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))
2282(defalias 'menu-bar-bookmark-map menu-bar-bookmark-map) 2283(defalias 'menu-bar-bookmark-map menu-bar-bookmark-map)
2283(register-definition-prefixes "bookmark" '("bookmark-" "with-buffer-modified-unmodified")) 2284(register-definition-prefixes "bookmark" '("bookmark-" "with-buffer-modified-unmodified"))
@@ -2318,7 +2319,7 @@ Currently, it also consults `browse-url-browser-function' first
2318if it is set to an alist, although this usage is deprecated since 2319if it is set to an alist, although this usage is deprecated since
2319Emacs 28.1 and will be removed in a future release. 2320Emacs 28.1 and will be removed in a future release.
2320 2321
2321(fn URL &optional KIND)" nil nil) 2322(fn URL &optional KIND)")
2322(autoload 'browse-url-of-file "browse-url" "\ 2323(autoload 'browse-url-of-file "browse-url" "\
2323Use a web browser to display FILE. 2324Use a web browser to display FILE.
2324Display the current buffer's file if FILE is nil or if called 2325Display the current buffer's file if FILE is nil or if called
@@ -2326,7 +2327,7 @@ interactively. Turn the filename into a URL with function
2326`browse-url-file-url'. Pass the URL to a browser using the 2327`browse-url-file-url'. Pass the URL to a browser using the
2327`browse-url' function then run `browse-url-of-file-hook'. 2328`browse-url' function then run `browse-url-of-file-hook'.
2328 2329
2329(fn &optional FILE)" t nil) 2330(fn &optional FILE)" t)
2330(autoload 'browse-url-of-buffer "browse-url" "\ 2331(autoload 'browse-url-of-buffer "browse-url" "\
2331Use a web browser to display BUFFER. 2332Use a web browser to display BUFFER.
2332See `browse-url' for details. 2333See `browse-url' for details.
@@ -2335,14 +2336,14 @@ Display the current buffer if BUFFER is nil. Display only the
2335currently visible part of BUFFER (from a temporary file) if buffer is 2336currently visible part of BUFFER (from a temporary file) if buffer is
2336narrowed. 2337narrowed.
2337 2338
2338(fn &optional BUFFER)" t nil) 2339(fn &optional BUFFER)" t)
2339(autoload 'browse-url-of-dired-file "browse-url" "\ 2340(autoload 'browse-url-of-dired-file "browse-url" "\
2340In Dired, ask a WWW browser to display the file named on this line." t nil) 2341In Dired, ask a WWW browser to display the file named on this line." t)
2341(autoload 'browse-url-of-region "browse-url" "\ 2342(autoload 'browse-url-of-region "browse-url" "\
2342Use a web browser to display the current region. 2343Use a web browser to display the current region.
2343See `browse-url' for details. 2344See `browse-url' for details.
2344 2345
2345(fn MIN MAX)" t nil) 2346(fn MIN MAX)" t)
2346(autoload 'browse-url "browse-url" "\ 2347(autoload 'browse-url "browse-url" "\
2347Open URL using a configurable method. 2348Open URL using a configurable method.
2348This will typically (by default) open URL with an external web 2349This will typically (by default) open URL with an external web
@@ -2364,14 +2365,14 @@ significance of ARGS (most of the functions ignore it).
2364If ARGS are omitted, the default is to pass 2365If ARGS are omitted, the default is to pass
2365`browse-url-new-window-flag' as ARGS. 2366`browse-url-new-window-flag' as ARGS.
2366 2367
2367(fn URL &rest ARGS)" t nil) 2368(fn URL &rest ARGS)" t)
2368(autoload 'browse-url-at-point "browse-url" "\ 2369(autoload 'browse-url-at-point "browse-url" "\
2369Open URL at point using a configurable method. 2370Open URL at point using a configurable method.
2370See `browse-url' for details. 2371See `browse-url' for details.
2371Optional prefix argument ARG non-nil inverts the value of the option 2372Optional prefix argument ARG non-nil inverts the value of the option
2372`browse-url-new-window-flag'. 2373`browse-url-new-window-flag'.
2373 2374
2374(fn &optional ARG)" t nil) 2375(fn &optional ARG)" t)
2375(autoload 'browse-url-with-browser-kind "browse-url" "\ 2376(autoload 'browse-url-with-browser-kind "browse-url" "\
2376Browse URL with a browser of the given browser KIND. 2377Browse URL with a browser of the given browser KIND.
2377KIND is either `internal' or `external'. 2378KIND is either `internal' or `external'.
@@ -2379,7 +2380,7 @@ KIND is either `internal' or `external'.
2379When called interactively, the default browser kind is the 2380When called interactively, the default browser kind is the
2380opposite of the browser kind of `browse-url-browser-function'. 2381opposite of the browser kind of `browse-url-browser-function'.
2381 2382
2382(fn KIND URL &optional ARG)" t nil) 2383(fn KIND URL &optional ARG)" t)
2383(autoload 'browse-url-at-mouse "browse-url" "\ 2384(autoload 'browse-url-at-mouse "browse-url" "\
2384Use a web browser to load a URL clicked with the mouse. 2385Use a web browser to load a URL clicked with the mouse.
2385See `browse-url' for details. 2386See `browse-url' for details.
@@ -2387,13 +2388,13 @@ See `browse-url' for details.
2387The URL is the one around or before the position of the mouse 2388The URL is the one around or before the position of the mouse
2388click but point is not changed. 2389click but point is not changed.
2389 2390
2390(fn EVENT)" t nil) 2391(fn EVENT)" t)
2391(autoload 'browse-url-xdg-open "browse-url" "\ 2392(autoload 'browse-url-xdg-open "browse-url" "\
2392Pass the specified URL to the \"xdg-open\" command. 2393Pass the specified URL to the \"xdg-open\" command.
2393xdg-open is a desktop utility that calls your preferred web browser. 2394xdg-open is a desktop utility that calls your preferred web browser.
2394The optional argument IGNORED is not used. 2395The optional argument IGNORED is not used.
2395 2396
2396(fn URL &optional IGNORED)" t nil) 2397(fn URL &optional IGNORED)" t)
2397(autoload 'browse-url-mozilla "browse-url" "\ 2398(autoload 'browse-url-mozilla "browse-url" "\
2398Ask the Mozilla WWW browser to load URL. 2399Ask the Mozilla WWW browser to load URL.
2399Default to the URL around or before point. The strings in variable 2400Default to the URL around or before point. The strings in variable
@@ -2411,7 +2412,7 @@ new tab in an existing window instead.
2411When called non-interactively, optional second argument NEW-WINDOW is 2412When called non-interactively, optional second argument NEW-WINDOW is
2412used instead of `browse-url-new-window-flag'. 2413used instead of `browse-url-new-window-flag'.
2413 2414
2414(fn URL &optional NEW-WINDOW)" t nil) 2415(fn URL &optional NEW-WINDOW)" t)
2415(make-obsolete 'browse-url-mozilla 'nil "29.1") 2416(make-obsolete 'browse-url-mozilla 'nil "29.1")
2416(autoload 'browse-url-firefox "browse-url" "\ 2417(autoload 'browse-url-firefox "browse-url" "\
2417Ask the Firefox WWW browser to load URL. 2418Ask the Firefox WWW browser to load URL.
@@ -2429,7 +2430,7 @@ is loaded in a new tab in an existing window instead.
2429Non-interactively, this uses the optional second argument NEW-WINDOW 2430Non-interactively, this uses the optional second argument NEW-WINDOW
2430instead of `browse-url-new-window-flag'. 2431instead of `browse-url-new-window-flag'.
2431 2432
2432(fn URL &optional NEW-WINDOW)" t nil) 2433(fn URL &optional NEW-WINDOW)" t)
2433(autoload 'browse-url-chromium "browse-url" "\ 2434(autoload 'browse-url-chromium "browse-url" "\
2434Ask the Chromium WWW browser to load URL. 2435Ask the Chromium WWW browser to load URL.
2435Default to the URL around or before point. The strings in 2436Default to the URL around or before point. The strings in
@@ -2437,24 +2438,24 @@ variable `browse-url-chromium-arguments' are also passed to
2437Chromium. 2438Chromium.
2438The optional argument NEW-WINDOW is not used. 2439The optional argument NEW-WINDOW is not used.
2439 2440
2440(fn URL &optional NEW-WINDOW)" t nil) 2441(fn URL &optional NEW-WINDOW)" t)
2441(autoload 'browse-url-webpositive "browse-url" "\ 2442(autoload 'browse-url-webpositive "browse-url" "\
2442Ask the WebPositive WWW browser to load URL. 2443Ask the WebPositive WWW browser to load URL.
2443Default to the URL around or before point. 2444Default to the URL around or before point.
2444The optional argument NEW-WINDOW is not used. 2445The optional argument NEW-WINDOW is not used.
2445 2446
2446(fn URL &optional NEW-WINDOW)" t nil) 2447(fn URL &optional NEW-WINDOW)" t)
2447(autoload 'browse-url-default-haiku-browser "browse-url" "\ 2448(autoload 'browse-url-default-haiku-browser "browse-url" "\
2448Browse URL with the system default browser. 2449Browse URL with the system default browser.
2449Default to the URL around or before point. 2450Default to the URL around or before point.
2450 2451
2451(fn URL &optional NEW-WINDOW)" t nil) 2452(fn URL &optional NEW-WINDOW)" t)
2452(autoload 'browse-url-emacs "browse-url" "\ 2453(autoload 'browse-url-emacs "browse-url" "\
2453Ask Emacs to load URL into a buffer and show it in another window. 2454Ask Emacs to load URL into a buffer and show it in another window.
2454Optional argument SAME-WINDOW non-nil means show the URL in the 2455Optional argument SAME-WINDOW non-nil means show the URL in the
2455currently selected window instead. 2456currently selected window instead.
2456 2457
2457(fn URL &optional SAME-WINDOW)" t nil) 2458(fn URL &optional SAME-WINDOW)" t)
2458(autoload 'browse-url-gnome-moz "browse-url" "\ 2459(autoload 'browse-url-gnome-moz "browse-url" "\
2459Ask Mozilla to load URL via the GNOME program `gnome-moz-remote'. 2460Ask Mozilla to load URL via the GNOME program `gnome-moz-remote'.
2460Default to the URL around or before point. The strings in variable 2461Default to the URL around or before point. The strings in variable
@@ -2468,7 +2469,7 @@ effect of `browse-url-new-window-flag'.
2468When called non-interactively, optional second argument NEW-WINDOW is 2469When called non-interactively, optional second argument NEW-WINDOW is
2469used instead of `browse-url-new-window-flag'. 2470used instead of `browse-url-new-window-flag'.
2470 2471
2471(fn URL &optional NEW-WINDOW)" t nil) 2472(fn URL &optional NEW-WINDOW)" t)
2472(make-obsolete 'browse-url-gnome-moz 'nil "25.1") 2473(make-obsolete 'browse-url-gnome-moz 'nil "25.1")
2473(autoload 'browse-url-conkeror "browse-url" "\ 2474(autoload 'browse-url-conkeror "browse-url" "\
2474Ask the Conkeror WWW browser to load URL. 2475Ask the Conkeror WWW browser to load URL.
@@ -2488,7 +2489,7 @@ new window, load it in a new buffer in an existing window instead.
2488When called non-interactively, use optional second argument 2489When called non-interactively, use optional second argument
2489NEW-WINDOW instead of `browse-url-new-window-flag'. 2490NEW-WINDOW instead of `browse-url-new-window-flag'.
2490 2491
2491(fn URL &optional NEW-WINDOW)" t nil) 2492(fn URL &optional NEW-WINDOW)" t)
2492(make-obsolete 'browse-url-conkeror 'nil "28.1") 2493(make-obsolete 'browse-url-conkeror 'nil "28.1")
2493(autoload 'browse-url-w3 "browse-url" "\ 2494(autoload 'browse-url-w3 "browse-url" "\
2494Ask the w3 WWW browser to load URL. 2495Ask the w3 WWW browser to load URL.
@@ -2501,14 +2502,14 @@ prefix argument reverses the effect of `browse-url-new-window-flag'.
2501When called non-interactively, optional second argument NEW-WINDOW is 2502When called non-interactively, optional second argument NEW-WINDOW is
2502used instead of `browse-url-new-window-flag'. 2503used instead of `browse-url-new-window-flag'.
2503 2504
2504(fn URL &optional NEW-WINDOW)" t nil) 2505(fn URL &optional NEW-WINDOW)" t)
2505(make-obsolete 'browse-url-w3 'nil "29.1") 2506(make-obsolete 'browse-url-w3 'nil "29.1")
2506(autoload 'browse-url-w3-gnudoit "browse-url" "\ 2507(autoload 'browse-url-w3-gnudoit "browse-url" "\
2507Ask another Emacs running gnuserv to load the URL using the W3 browser. 2508Ask another Emacs running gnuserv to load the URL using the W3 browser.
2508The `browse-url-gnudoit-program' program is used with options given by 2509The `browse-url-gnudoit-program' program is used with options given by
2509`browse-url-gnudoit-args'. Default to the URL around or before point. 2510`browse-url-gnudoit-args'. Default to the URL around or before point.
2510 2511
2511(fn URL &optional NEW-WINDOW)" t nil) 2512(fn URL &optional NEW-WINDOW)" t)
2512(make-obsolete 'browse-url-w3-gnudoit 'nil "25.1") 2513(make-obsolete 'browse-url-w3-gnudoit 'nil "25.1")
2513(autoload 'browse-url-text-xterm "browse-url" "\ 2514(autoload 'browse-url-text-xterm "browse-url" "\
2514Ask a text browser to load URL. 2515Ask a text browser to load URL.
@@ -2518,7 +2519,7 @@ in an Xterm window using the Xterm program named by `browse-url-xterm-program'
2518with possible additional arguments `browse-url-xterm-args'. 2519with possible additional arguments `browse-url-xterm-args'.
2519The optional argument NEW-WINDOW is not used. 2520The optional argument NEW-WINDOW is not used.
2520 2521
2521(fn URL &optional NEW-WINDOW)" t nil) 2522(fn URL &optional NEW-WINDOW)" t)
2522(autoload 'browse-url-text-emacs "browse-url" "\ 2523(autoload 'browse-url-text-emacs "browse-url" "\
2523Ask a text browser to load URL. 2524Ask a text browser to load URL.
2524URL defaults to the URL around or before point. 2525URL defaults to the URL around or before point.
@@ -2533,7 +2534,7 @@ reverses the effect of `browse-url-new-window-flag'.
2533When called non-interactively, optional second argument NEW-WINDOW is 2534When called non-interactively, optional second argument NEW-WINDOW is
2534used instead of `browse-url-new-window-flag'. 2535used instead of `browse-url-new-window-flag'.
2535 2536
2536(fn URL &optional NEW-BUFFER)" t nil) 2537(fn URL &optional NEW-BUFFER)" t)
2537(autoload 'browse-url-mail "browse-url" "\ 2538(autoload 'browse-url-mail "browse-url" "\
2538Open a new mail message buffer within Emacs for the RFC 2368 URL. 2539Open a new mail message buffer within Emacs for the RFC 2368 URL.
2539Default to using the mailto: URL around or before point as the 2540Default to using the mailto: URL around or before point as the
@@ -2549,7 +2550,7 @@ non-nil interactive prefix argument reverses the effect of
2549When called non-interactively, optional second argument NEW-WINDOW is 2550When called non-interactively, optional second argument NEW-WINDOW is
2550used instead of `browse-url-new-window-flag'. 2551used instead of `browse-url-new-window-flag'.
2551 2552
2552(fn URL &optional NEW-WINDOW)" t nil) 2553(fn URL &optional NEW-WINDOW)" t)
2553(autoload 'browse-url-generic "browse-url" "\ 2554(autoload 'browse-url-generic "browse-url" "\
2554Ask the WWW browser defined by `browse-url-generic-program' to load URL. 2555Ask the WWW browser defined by `browse-url-generic-program' to load URL.
2555Default to the URL around or before point. A fresh copy of the 2556Default to the URL around or before point. A fresh copy of the
@@ -2557,13 +2558,13 @@ browser is started up in a new process with possible additional arguments
2557`browse-url-generic-args'. This is appropriate for browsers which 2558`browse-url-generic-args'. This is appropriate for browsers which
2558don't offer a form of remote control. 2559don't offer a form of remote control.
2559 2560
2560(fn URL &optional NEW-WINDOW)" t nil) 2561(fn URL &optional NEW-WINDOW)" t)
2561(autoload 'browse-url-kde "browse-url" "\ 2562(autoload 'browse-url-kde "browse-url" "\
2562Ask the KDE WWW browser to load URL. 2563Ask the KDE WWW browser to load URL.
2563Default to the URL around or before point. 2564Default to the URL around or before point.
2564The optional argument NEW-WINDOW is not used. 2565The optional argument NEW-WINDOW is not used.
2565 2566
2566(fn URL &optional NEW-WINDOW)" t nil) 2567(fn URL &optional NEW-WINDOW)" t)
2567(autoload 'browse-url-elinks "browse-url" "\ 2568(autoload 'browse-url-elinks "browse-url" "\
2568Ask the Elinks WWW browser to load URL. 2569Ask the Elinks WWW browser to load URL.
2569Default to the URL around the point. 2570Default to the URL around the point.
@@ -2574,19 +2575,19 @@ none yet running, a newly started instance.
2574The Elinks command will be prepended by the program+arguments 2575The Elinks command will be prepended by the program+arguments
2575from `browse-url-elinks-wrapper'. 2576from `browse-url-elinks-wrapper'.
2576 2577
2577(fn URL &optional NEW-WINDOW)" t nil) 2578(fn URL &optional NEW-WINDOW)" t)
2578(autoload 'browse-url-button-open "browse-url" "\ 2579(autoload 'browse-url-button-open "browse-url" "\
2579Follow the link under point using `browse-url'. 2580Follow the link under point using `browse-url'.
2580If EXTERNAL (the prefix if used interactively), open with the 2581If EXTERNAL (the prefix if used interactively), open with the
2581external browser instead of the default one. 2582external browser instead of the default one.
2582 2583
2583(fn &optional EXTERNAL MOUSE-EVENT)" t nil) 2584(fn &optional EXTERNAL MOUSE-EVENT)" t)
2584(autoload 'browse-url-button-open-url "browse-url" "\ 2585(autoload 'browse-url-button-open-url "browse-url" "\
2585Open URL using `browse-url'. 2586Open URL using `browse-url'.
2586If `current-prefix-arg' is non-nil, use 2587If `current-prefix-arg' is non-nil, use
2587`browse-url-secondary-browser-function' instead. 2588`browse-url-secondary-browser-function' instead.
2588 2589
2589(fn URL)" nil nil) 2590(fn URL)")
2590(register-definition-prefixes "browse-url" '("browse-url-")) 2591(register-definition-prefixes "browse-url" '("browse-url-"))
2591 2592
2592 2593
@@ -2595,13 +2596,13 @@ If `current-prefix-arg' is non-nil, use
2595(autoload 'bs-cycle-next "bs" "\ 2596(autoload 'bs-cycle-next "bs" "\
2596Select next buffer defined by buffer cycling. 2597Select next buffer defined by buffer cycling.
2597The buffers taking part in buffer cycling are defined 2598The buffers taking part in buffer cycling are defined
2598by buffer configuration `bs-cycle-configuration-name'." t nil) 2599by buffer configuration `bs-cycle-configuration-name'." t)
2599(autoload 'bs-cycle-previous "bs" "\ 2600(autoload 'bs-cycle-previous "bs" "\
2600Select previous buffer defined by buffer cycling. 2601Select previous buffer defined by buffer cycling.
2601The buffers taking part in buffer cycling are defined 2602The buffers taking part in buffer cycling are defined
2602by buffer configuration `bs-cycle-configuration-name'." t nil) 2603by buffer configuration `bs-cycle-configuration-name'." t)
2603(autoload 'bs-customize "bs" "\ 2604(autoload 'bs-customize "bs" "\
2604Customization of group bs for Buffer Selection Menu." t nil) 2605Customization of group bs for Buffer Selection Menu." t)
2605(autoload 'bs-show "bs" "\ 2606(autoload 'bs-show "bs" "\
2606Make a menu of buffers so you can manipulate buffers or the buffer list. 2607Make a menu of buffers so you can manipulate buffers or the buffer list.
2607\\<bs-mode-map> 2608\\<bs-mode-map>
@@ -2616,7 +2617,7 @@ With prefix argument ARG show a different buffer list. Function
2616`bs--configuration-name-for-prefix-arg' determine accordingly 2617`bs--configuration-name-for-prefix-arg' determine accordingly
2617name of buffer configuration. 2618name of buffer configuration.
2618 2619
2619(fn ARG)" t nil) 2620(fn ARG)" t)
2620(register-definition-prefixes "bs" '("bs-")) 2621(register-definition-prefixes "bs" '("bs-"))
2621 2622
2622 2623
@@ -2634,7 +2635,7 @@ columns on its right towards the left.
2634\\[bubbles-set-game-easy] sets the difficulty to easy. 2635\\[bubbles-set-game-easy] sets the difficulty to easy.
2635\\[bubbles-set-game-medium] sets the difficulty to medium. 2636\\[bubbles-set-game-medium] sets the difficulty to medium.
2636\\[bubbles-set-game-difficult] sets the difficulty to difficult. 2637\\[bubbles-set-game-difficult] sets the difficulty to difficult.
2637\\[bubbles-set-game-hard] sets the difficulty to hard." t nil) 2638\\[bubbles-set-game-hard] sets the difficulty to hard." t)
2638(register-definition-prefixes "bubbles" '("bubbles-")) 2639(register-definition-prefixes "bubbles" '("bubbles-"))
2639 2640
2640 2641
@@ -2659,7 +2660,7 @@ evaluate `bug-reference-mode'.
2659The mode's hook is called both when the mode is enabled and when 2660The mode's hook is called both when the mode is enabled and when
2660it is disabled. 2661it is disabled.
2661 2662
2662(fn &optional ARG)" t nil) 2663(fn &optional ARG)" t)
2663(autoload 'bug-reference-prog-mode "bug-reference" "\ 2664(autoload 'bug-reference-prog-mode "bug-reference" "\
2664Like `bug-reference-mode', but only buttonize in comments and strings. 2665Like `bug-reference-mode', but only buttonize in comments and strings.
2665 2666
@@ -2678,7 +2679,7 @@ evaluate `bug-reference-prog-mode'.
2678The mode's hook is called both when the mode is enabled and when 2679The mode's hook is called both when the mode is enabled and when
2679it is disabled. 2680it is disabled.
2680 2681
2681(fn &optional ARG)" t nil) 2682(fn &optional ARG)" t)
2682(register-definition-prefixes "bug-reference" '("bug-reference-")) 2683(register-definition-prefixes "bug-reference" '("bug-reference-"))
2683 2684
2684 2685
@@ -2696,7 +2697,7 @@ it is disabled.
2696(autoload 'byte-compile-warning-enabled-p "bytecomp" "\ 2697(autoload 'byte-compile-warning-enabled-p "bytecomp" "\
2697Return non-nil if WARNING is enabled, according to `byte-compile-warnings'. 2698Return non-nil if WARNING is enabled, according to `byte-compile-warnings'.
2698 2699
2699(fn WARNING &optional SYMBOL)" nil nil) 2700(fn WARNING &optional SYMBOL)")
2700(autoload 'byte-compile-disable-warning "bytecomp" "\ 2701(autoload 'byte-compile-disable-warning "bytecomp" "\
2701Change `byte-compile-warnings' to disable WARNING. 2702Change `byte-compile-warnings' to disable WARNING.
2702If `byte-compile-warnings' is t, set it to `(not WARNING)'. 2703If `byte-compile-warnings' is t, set it to `(not WARNING)'.
@@ -2704,7 +2705,7 @@ Otherwise, if the first element is `not', add WARNING, else remove it.
2704Normally you should let-bind `byte-compile-warnings' before calling this, 2705Normally you should let-bind `byte-compile-warnings' before calling this,
2705else the global value will be modified. 2706else the global value will be modified.
2706 2707
2707(fn WARNING)" nil nil) 2708(fn WARNING)")
2708(autoload 'byte-compile-enable-warning "bytecomp" "\ 2709(autoload 'byte-compile-enable-warning "bytecomp" "\
2709Change `byte-compile-warnings' to enable WARNING. 2710Change `byte-compile-warnings' to enable WARNING.
2710If `byte-compile-warnings' is t, do nothing. Otherwise, if the 2711If `byte-compile-warnings' is t, do nothing. Otherwise, if the
@@ -2712,12 +2713,12 @@ first element is `not', remove WARNING, else add it.
2712Normally you should let-bind `byte-compile-warnings' before calling this, 2713Normally you should let-bind `byte-compile-warnings' before calling this,
2713else the global value will be modified. 2714else the global value will be modified.
2714 2715
2715(fn WARNING)" nil nil) 2716(fn WARNING)")
2716(autoload 'byte-force-recompile "bytecomp" "\ 2717(autoload 'byte-force-recompile "bytecomp" "\
2717Recompile every `.el' file in DIRECTORY that already has a `.elc' file. 2718Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
2718Files in subdirectories of DIRECTORY are processed also. 2719Files in subdirectories of DIRECTORY are processed also.
2719 2720
2720(fn DIRECTORY)" t nil) 2721(fn DIRECTORY)" t)
2721(autoload 'byte-recompile-directory "bytecomp" "\ 2722(autoload 'byte-recompile-directory "bytecomp" "\
2722Recompile every `.el' file in DIRECTORY that needs recompilation. 2723Recompile every `.el' file in DIRECTORY that needs recompilation.
2723This happens when a `.elc' file exists but is older than the `.el' file. 2724This happens when a `.elc' file exists but is older than the `.el' file.
@@ -2737,7 +2738,7 @@ This command will normally not follow symlinks when compiling
2737files. If FOLLOW-SYMLINKS is non-nil, symlinked `.el' files will 2738files. If FOLLOW-SYMLINKS is non-nil, symlinked `.el' files will
2738also be compiled. 2739also be compiled.
2739 2740
2740(fn DIRECTORY &optional ARG FORCE FOLLOW-SYMLINKS)" t nil) 2741(fn DIRECTORY &optional ARG FORCE FOLLOW-SYMLINKS)" t)
2741(put 'no-byte-compile 'safe-local-variable 'booleanp) 2742(put 'no-byte-compile 'safe-local-variable 'booleanp)
2742(autoload 'byte-compile-file "bytecomp" "\ 2743(autoload 'byte-compile-file "bytecomp" "\
2743Compile a file of Lisp code named FILENAME into a file of byte code. 2744Compile a file of Lisp code named FILENAME into a file of byte code.
@@ -2750,19 +2751,19 @@ value is `no-byte-compile'.
2750 2751
2751See also `emacs-lisp-byte-compile-and-load'. 2752See also `emacs-lisp-byte-compile-and-load'.
2752 2753
2753(fn FILENAME &optional LOAD)" t nil) 2754(fn FILENAME &optional LOAD)" t)
2754(set-advertised-calling-convention 'byte-compile-file '(filename) '"28.1") 2755(set-advertised-calling-convention 'byte-compile-file '(filename) '"28.1")
2755(autoload 'compile-defun "bytecomp" "\ 2756(autoload 'compile-defun "bytecomp" "\
2756Compile and evaluate the current top-level form. 2757Compile and evaluate the current top-level form.
2757Print the result in the echo area. 2758Print the result in the echo area.
2758With argument ARG, insert value in current buffer after the form. 2759With argument ARG, insert value in current buffer after the form.
2759 2760
2760(fn &optional ARG)" t nil) 2761(fn &optional ARG)" t)
2761(autoload 'byte-compile "bytecomp" "\ 2762(autoload 'byte-compile "bytecomp" "\
2762If FORM is a symbol, byte-compile its function definition. 2763If FORM is a symbol, byte-compile its function definition.
2763If FORM is a lambda or a macro, byte-compile it as a function. 2764If FORM is a lambda or a macro, byte-compile it as a function.
2764 2765
2765(fn FORM)" nil nil) 2766(fn FORM)")
2766(autoload 'display-call-tree "bytecomp" "\ 2767(autoload 'display-call-tree "bytecomp" "\
2767Display a call graph of a specified file. 2768Display a call graph of a specified file.
2768This lists which functions have been called, what functions called 2769This lists which functions have been called, what functions called
@@ -2778,11 +2779,11 @@ The call tree also lists those functions which are not known to be called
2778(that is, to which no calls have been compiled), and which cannot be 2779(that is, to which no calls have been compiled), and which cannot be
2779invoked interactively. 2780invoked interactively.
2780 2781
2781(fn &optional FILENAME)" t nil) 2782(fn &optional FILENAME)" t)
2782(autoload 'batch-byte-compile-if-not-done "bytecomp" "\ 2783(autoload 'batch-byte-compile-if-not-done "bytecomp" "\
2783Like `byte-compile-file' but doesn't recompile if already up to date. 2784Like `byte-compile-file' but doesn't recompile if already up to date.
2784Use this from the command line, with `-batch'; 2785Use this from the command line, with `-batch';
2785it won't work in an interactive Emacs." nil nil) 2786it won't work in an interactive Emacs.")
2786(autoload 'batch-byte-compile "bytecomp" "\ 2787(autoload 'batch-byte-compile "bytecomp" "\
2787Run `byte-compile-file' on the files remaining on the command line. 2788Run `byte-compile-file' on the files remaining on the command line.
2788Use this from the command line, with `-batch'; 2789Use this from the command line, with `-batch';
@@ -2799,7 +2800,7 @@ For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\".
2799If NOFORCE is non-nil, don't recompile a file that seems to be 2800If NOFORCE is non-nil, don't recompile a file that seems to be
2800already up-to-date. 2801already up-to-date.
2801 2802
2802(fn &optional NOFORCE)" nil nil) 2803(fn &optional NOFORCE)")
2803(autoload 'batch-byte-recompile-directory "bytecomp" "\ 2804(autoload 'batch-byte-recompile-directory "bytecomp" "\
2804Run `byte-recompile-directory' on the dirs remaining on the command line. 2805Run `byte-recompile-directory' on the dirs remaining on the command line.
2805Must be used only with `-batch', and kills Emacs on completion. 2806Must be used only with `-batch', and kills Emacs on completion.
@@ -2809,7 +2810,7 @@ Optional argument ARG is passed as second argument ARG to
2809`byte-recompile-directory'; see there for its possible values 2810`byte-recompile-directory'; see there for its possible values
2810and corresponding effects. 2811and corresponding effects.
2811 2812
2812(fn &optional ARG)" nil nil) 2813(fn &optional ARG)")
2813(register-definition-prefixes "bytecomp" '("batch-byte-compile-file" "byte" "displaying-byte-compile-warnings" "emacs-lisp-" "no-byte-compile")) 2814(register-definition-prefixes "bytecomp" '("batch-byte-compile-file" "byte" "displaying-byte-compile-warnings" "emacs-lisp-" "no-byte-compile"))
2814 2815
2815 2816
@@ -2854,7 +2855,7 @@ List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
2854When called interactively from the calendar window, the date of death is taken 2855When called interactively from the calendar window, the date of death is taken
2855from the cursor position. 2856from the cursor position.
2856 2857
2857(fn DEATH-DATE START-YEAR END-YEAR)" t nil) 2858(fn DEATH-DATE START-YEAR END-YEAR)" t)
2858(register-definition-prefixes "cal-hebrew" '("calendar-hebrew-" "diary-hebrew-" "holiday-hebrew")) 2859(register-definition-prefixes "cal-hebrew" '("calendar-hebrew-" "diary-hebrew-" "holiday-hebrew"))
2859 2860
2860 2861
@@ -2914,64 +2915,64 @@ from the cursor position.
2914(autoload 'calc-dispatch "calc" "\ 2915(autoload 'calc-dispatch "calc" "\
2915Invoke the GNU Emacs Calculator. See \\[calc-dispatch-help] for details. 2916Invoke the GNU Emacs Calculator. See \\[calc-dispatch-help] for details.
2916 2917
2917(fn &optional ARG)" t nil) 2918(fn &optional ARG)" t)
2918(autoload 'calc "calc" "\ 2919(autoload 'calc "calc" "\
2919The Emacs Calculator. Full documentation is listed under `calc-mode'. 2920The Emacs Calculator. Full documentation is listed under `calc-mode'.
2920 2921
2921(fn &optional ARG FULL-DISPLAY INTERACTIVE)" t nil) 2922(fn &optional ARG FULL-DISPLAY INTERACTIVE)" t)
2922(autoload 'full-calc "calc" "\ 2923(autoload 'full-calc "calc" "\
2923Invoke the Calculator and give it a full-sized window. 2924Invoke the Calculator and give it a full-sized window.
2924 2925
2925(fn &optional INTERACTIVE)" t nil) 2926(fn &optional INTERACTIVE)" t)
2926(autoload 'quick-calc "calc" "\ 2927(autoload 'quick-calc "calc" "\
2927Do a quick calculation in the minibuffer without invoking full Calculator. 2928Do a quick calculation in the minibuffer without invoking full Calculator.
2928With prefix argument INSERT, insert the result in the current 2929With prefix argument INSERT, insert the result in the current
2929buffer. Otherwise, the result is copied into the kill ring. 2930buffer. Otherwise, the result is copied into the kill ring.
2930 2931
2931(fn &optional INSERT)" t nil) 2932(fn &optional INSERT)" t)
2932(autoload 'calc-eval "calc" "\ 2933(autoload 'calc-eval "calc" "\
2933Do a quick calculation and return the result as a string. 2934Do a quick calculation and return the result as a string.
2934Return value will either be the formatted result in string form, 2935Return value will either be the formatted result in string form,
2935or a list containing a character position and an error message in string form. 2936or a list containing a character position and an error message in string form.
2936 2937
2937(fn STR &optional SEPARATOR &rest ARGS)" nil nil) 2938(fn STR &optional SEPARATOR &rest ARGS)")
2938(autoload 'calc-keypad "calc" "\ 2939(autoload 'calc-keypad "calc" "\
2939Invoke the Calculator in \"visual keypad\" mode. 2940Invoke the Calculator in \"visual keypad\" mode.
2940This is most useful in the X window system. 2941This is most useful in the X window system.
2941In this mode, click on the Calc \"buttons\" using the left mouse button. 2942In this mode, click on the Calc \"buttons\" using the left mouse button.
2942Or, position the cursor manually and do \\[calc-keypad-press]. 2943Or, position the cursor manually and do \\[calc-keypad-press].
2943 2944
2944(fn &optional INTERACTIVE)" t nil) 2945(fn &optional INTERACTIVE)" t)
2945(autoload 'full-calc-keypad "calc" "\ 2946(autoload 'full-calc-keypad "calc" "\
2946Invoke the Calculator in full-screen \"visual keypad\" mode. 2947Invoke the Calculator in full-screen \"visual keypad\" mode.
2947See calc-keypad for details. 2948See calc-keypad for details.
2948 2949
2949(fn &optional INTERACTIVE)" t nil) 2950(fn &optional INTERACTIVE)" t)
2950(autoload 'calc-grab-region "calc" "\ 2951(autoload 'calc-grab-region "calc" "\
2951Parse the region as a vector of numbers and push it on the Calculator stack. 2952Parse the region as a vector of numbers and push it on the Calculator stack.
2952 2953
2953(fn TOP BOT ARG)" t nil) 2954(fn TOP BOT ARG)" t)
2954(autoload 'calc-grab-rectangle "calc" "\ 2955(autoload 'calc-grab-rectangle "calc" "\
2955Parse a rectangle as a matrix of numbers and push it on the Calculator stack. 2956Parse a rectangle as a matrix of numbers and push it on the Calculator stack.
2956 2957
2957(fn TOP BOT ARG)" t nil) 2958(fn TOP BOT ARG)" t)
2958(autoload 'calc-grab-sum-down "calc" "\ 2959(autoload 'calc-grab-sum-down "calc" "\
2959Parse a rectangle as a matrix of numbers and sum its columns. 2960Parse a rectangle as a matrix of numbers and sum its columns.
2960 2961
2961(fn TOP BOT ARG)" t nil) 2962(fn TOP BOT ARG)" t)
2962(autoload 'calc-grab-sum-across "calc" "\ 2963(autoload 'calc-grab-sum-across "calc" "\
2963Parse a rectangle as a matrix of numbers and sum its rows. 2964Parse a rectangle as a matrix of numbers and sum its rows.
2964 2965
2965(fn TOP BOT ARG)" t nil) 2966(fn TOP BOT ARG)" t)
2966(autoload 'calc-embedded "calc" "\ 2967(autoload 'calc-embedded "calc" "\
2967Start Calc Embedded mode on the formula surrounding point. 2968Start Calc Embedded mode on the formula surrounding point.
2968 2969
2969(fn ARG &optional END OBEG OEND)" t nil) 2970(fn ARG &optional END OBEG OEND)" t)
2970(autoload 'calc-embedded-activate "calc" "\ 2971(autoload 'calc-embedded-activate "calc" "\
2971Scan the current editing buffer for all embedded := and => formulas. 2972Scan the current editing buffer for all embedded := and => formulas.
2972Also looks for the equivalent TeX words, \\gets and \\evalto. 2973Also looks for the equivalent TeX words, \\gets and \\evalto.
2973 2974
2974(fn &optional ARG CBUF)" t nil) 2975(fn &optional ARG CBUF)" t)
2975(autoload 'defmath "calc" "\ 2976(autoload 'defmath "calc" "\
2976Define Calc function. 2977Define Calc function.
2977 2978
@@ -3165,7 +3166,7 @@ See Info node `(calc)Defining Functions'.
3165(autoload 'calc-undo "calc-undo" "\ 3166(autoload 'calc-undo "calc-undo" "\
3166 3167
3167 3168
3168(fn N)" t nil) 3169(fn N)" t)
3169(register-definition-prefixes "calc-undo" '("calc-")) 3170(register-definition-prefixes "calc-undo" '("calc-"))
3170 3171
3171 3172
@@ -3208,7 +3209,7 @@ See Info node `(calc)Defining Functions'.
3208 3209
3209(autoload 'calculator "calculator" "\ 3210(autoload 'calculator "calculator" "\
3210Run the Emacs calculator. 3211Run the Emacs calculator.
3211See the documentation for `calculator-mode' for more information." t nil) 3212See the documentation for `calculator-mode' for more information." t)
3212(register-definition-prefixes "calculator" '("calculator-")) 3213(register-definition-prefixes "calculator" '("calculator-"))
3213 3214
3214 3215
@@ -3249,7 +3250,7 @@ Runs the following hooks:
3249 3250
3250This function is suitable for execution in an init file. 3251This function is suitable for execution in an init file.
3251 3252
3252(fn &optional ARG)" t nil) 3253(fn &optional ARG)" t)
3253(register-definition-prefixes "calendar" '("calendar-" "diary-" "holiday-buffer" "lunar-phases-buffer" "solar-sunrises-buffer")) 3254(register-definition-prefixes "calendar" '("calendar-" "diary-" "holiday-buffer" "lunar-phases-buffer" "solar-sunrises-buffer"))
3254 3255
3255 3256
@@ -3258,13 +3259,13 @@ This function is suitable for execution in an init file.
3258(autoload 'canlock-insert-header "canlock" "\ 3259(autoload 'canlock-insert-header "canlock" "\
3259Insert a Cancel-Key and/or a Cancel-Lock header if possible. 3260Insert a Cancel-Key and/or a Cancel-Lock header if possible.
3260 3261
3261(fn &optional ID-FOR-KEY ID-FOR-LOCK PASSWORD)" nil nil) 3262(fn &optional ID-FOR-KEY ID-FOR-LOCK PASSWORD)")
3262(autoload 'canlock-verify "canlock" "\ 3263(autoload 'canlock-verify "canlock" "\
3263Verify Cancel-Lock or Cancel-Key in BUFFER. 3264Verify Cancel-Lock or Cancel-Key in BUFFER.
3264If BUFFER is nil, the current buffer is assumed. Signal an error if 3265If BUFFER is nil, the current buffer is assumed. Signal an error if
3265it fails. 3266it fails.
3266 3267
3267(fn &optional BUFFER)" t nil) 3268(fn &optional BUFFER)" t)
3268(register-definition-prefixes "canlock" '("canlock-")) 3269(register-definition-prefixes "canlock" '("canlock-"))
3269 3270
3270 3271
@@ -3296,7 +3297,7 @@ it fails.
3296;;; Generated autoloads from progmodes/cc-engine.el 3297;;; Generated autoloads from progmodes/cc-engine.el
3297 3298
3298(autoload 'c-guess-basic-syntax "cc-engine" "\ 3299(autoload 'c-guess-basic-syntax "cc-engine" "\
3299Return the syntactic context of the current line." nil nil) 3300Return the syntactic context of the current line.")
3300(register-definition-prefixes "cc-engine" '("c-")) 3301(register-definition-prefixes "cc-engine" '("c-"))
3301 3302
3302 3303
@@ -3320,7 +3321,7 @@ If given a prefix argument (or if the optional argument ACCUMULATE is
3320non-nil) then the previous guess is extended, otherwise a new guess is 3321non-nil) then the previous guess is extended, otherwise a new guess is
3321made from scratch. 3322made from scratch.
3322 3323
3323(fn &optional ACCUMULATE)" t nil) 3324(fn &optional ACCUMULATE)" t)
3324(autoload 'c-guess-no-install "cc-guess" "\ 3325(autoload 'c-guess-no-install "cc-guess" "\
3325Guess the style in the region up to `c-guess-region-max'; don't install it. 3326Guess the style in the region up to `c-guess-region-max'; don't install it.
3326 3327
@@ -3328,7 +3329,7 @@ If given a prefix argument (or if the optional argument ACCUMULATE is
3328non-nil) then the previous guess is extended, otherwise a new guess is 3329non-nil) then the previous guess is extended, otherwise a new guess is
3329made from scratch. 3330made from scratch.
3330 3331
3331(fn &optional ACCUMULATE)" t nil) 3332(fn &optional ACCUMULATE)" t)
3332(autoload 'c-guess-buffer "cc-guess" "\ 3333(autoload 'c-guess-buffer "cc-guess" "\
3333Guess the style on the whole current buffer, and install it. 3334Guess the style on the whole current buffer, and install it.
3334 3335
@@ -3338,7 +3339,7 @@ If given a prefix argument (or if the optional argument ACCUMULATE is
3338non-nil) then the previous guess is extended, otherwise a new guess is 3339non-nil) then the previous guess is extended, otherwise a new guess is
3339made from scratch. 3340made from scratch.
3340 3341
3341(fn &optional ACCUMULATE)" t nil) 3342(fn &optional ACCUMULATE)" t)
3342(autoload 'c-guess-buffer-no-install "cc-guess" "\ 3343(autoload 'c-guess-buffer-no-install "cc-guess" "\
3343Guess the style on the whole current buffer; don't install it. 3344Guess the style on the whole current buffer; don't install it.
3344 3345
@@ -3346,7 +3347,7 @@ If given a prefix argument (or if the optional argument ACCUMULATE is
3346non-nil) then the previous guess is extended, otherwise a new guess is 3347non-nil) then the previous guess is extended, otherwise a new guess is
3347made from scratch. 3348made from scratch.
3348 3349
3349(fn &optional ACCUMULATE)" t nil) 3350(fn &optional ACCUMULATE)" t)
3350(autoload 'c-guess-region "cc-guess" "\ 3351(autoload 'c-guess-region "cc-guess" "\
3351Guess the style on the region and install it. 3352Guess the style on the region and install it.
3352 3353
@@ -3356,7 +3357,7 @@ If given a prefix argument (or if the optional argument ACCUMULATE is
3356non-nil) then the previous guess is extended, otherwise a new guess is 3357non-nil) then the previous guess is extended, otherwise a new guess is
3357made from scratch. 3358made from scratch.
3358 3359
3359(fn START END &optional ACCUMULATE)" t nil) 3360(fn START END &optional ACCUMULATE)" t)
3360(autoload 'c-guess-region-no-install "cc-guess" "\ 3361(autoload 'c-guess-region-no-install "cc-guess" "\
3361Guess the style on the region; don't install it. 3362Guess the style on the region; don't install it.
3362 3363
@@ -3380,7 +3381,7 @@ guess is made from scratch.
3380Note that the larger the region to guess in, the slower the guessing. 3381Note that the larger the region to guess in, the slower the guessing.
3381So you can limit the region with `c-guess-region-max'. 3382So you can limit the region with `c-guess-region-max'.
3382 3383
3383(fn START END &optional ACCUMULATE)" t nil) 3384(fn START END &optional ACCUMULATE)" t)
3384(autoload 'c-guess-install "cc-guess" "\ 3385(autoload 'c-guess-install "cc-guess" "\
3385Install the latest guessed style into the current buffer. 3386Install the latest guessed style into the current buffer.
3386(This guessed style is a combination of `c-guess-guessed-basic-offset', 3387(This guessed style is a combination of `c-guess-guessed-basic-offset',
@@ -3390,7 +3391,7 @@ The style is entered into CC Mode's style system by
3390`c-add-style'. Its name is either STYLE-NAME, or a name based on 3391`c-add-style'. Its name is either STYLE-NAME, or a name based on
3391the absolute file name of the file if STYLE-NAME is nil. 3392the absolute file name of the file if STYLE-NAME is nil.
3392 3393
3393(fn &optional STYLE-NAME)" t nil) 3394(fn &optional STYLE-NAME)" t)
3394(register-definition-prefixes "cc-guess" '("c-guess-")) 3395(register-definition-prefixes "cc-guess" '("c-guess-"))
3395 3396
3396 3397
@@ -3415,7 +3416,7 @@ only some basic setup is done, and a call to `c-init-language-vars' or
3415`c-init-language-vars-for' is necessary too (which gives more 3416`c-init-language-vars-for' is necessary too (which gives more
3416control). See \"cc-mode.el\" for more info. 3417control). See \"cc-mode.el\" for more info.
3417 3418
3418(fn &optional NEW-STYLE-INIT)" nil nil) 3419(fn &optional NEW-STYLE-INIT)")
3419 (add-to-list 'auto-mode-alist '("\\.\\(cc\\|hh\\)\\'" . c++-mode)) 3420 (add-to-list 'auto-mode-alist '("\\.\\(cc\\|hh\\)\\'" . c++-mode))
3420 (add-to-list 'auto-mode-alist '("\\.[ch]\\(pp\\|xx\\|\\+\\+\\)\\'" . c++-mode)) 3421 (add-to-list 'auto-mode-alist '("\\.[ch]\\(pp\\|xx\\|\\+\\+\\)\\'" . c++-mode))
3421 (add-to-list 'auto-mode-alist '("\\.\\(CC?\\|HH?\\)\\'" . c++-mode)) 3422 (add-to-list 'auto-mode-alist '("\\.\\(CC?\\|HH?\\)\\'" . c++-mode))
@@ -3441,7 +3442,7 @@ initialization, then `c-mode-hook'.
3441Key bindings: 3442Key bindings:
3442\\{c-mode-map} 3443\\{c-mode-map}
3443 3444
3444(fn)" t nil) 3445(fn)" t)
3445(autoload 'c-or-c++-mode "cc-mode" "\ 3446(autoload 'c-or-c++-mode "cc-mode" "\
3446Analyze buffer and enable either C or C++ mode. 3447Analyze buffer and enable either C or C++ mode.
3447 3448
@@ -3452,7 +3453,7 @@ should be used.
3452 3453
3453This function attempts to use file contents to determine whether 3454This function attempts to use file contents to determine whether
3454the code is C or C++ and based on that chooses whether to enable 3455the code is C or C++ and based on that chooses whether to enable
3455`c-mode' or `c++-mode'." t nil) 3456`c-mode' or `c++-mode'." t)
3456(autoload 'c++-mode "cc-mode" "\ 3457(autoload 'c++-mode "cc-mode" "\
3457Major mode for editing C++ code. 3458Major mode for editing C++ code.
3458To submit a problem report, enter `\\[c-submit-bug-report]' from a 3459To submit a problem report, enter `\\[c-submit-bug-report]' from a
@@ -3469,7 +3470,7 @@ initialization, then `c++-mode-hook'.
3469Key bindings: 3470Key bindings:
3470\\{c++-mode-map} 3471\\{c++-mode-map}
3471 3472
3472(fn)" t nil) 3473(fn)" t)
3473 (add-to-list 'auto-mode-alist '("\\.m\\'" . objc-mode)) 3474 (add-to-list 'auto-mode-alist '("\\.m\\'" . objc-mode))
3474(autoload 'objc-mode "cc-mode" "\ 3475(autoload 'objc-mode "cc-mode" "\
3475Major mode for editing Objective C code. 3476Major mode for editing Objective C code.
@@ -3487,7 +3488,7 @@ initialization, then `objc-mode-hook'.
3487Key bindings: 3488Key bindings:
3488\\{objc-mode-map} 3489\\{objc-mode-map}
3489 3490
3490(fn)" t nil) 3491(fn)" t)
3491 (add-to-list 'auto-mode-alist '("\\.java\\'" . java-mode)) 3492 (add-to-list 'auto-mode-alist '("\\.java\\'" . java-mode))
3492(autoload 'java-mode "cc-mode" "\ 3493(autoload 'java-mode "cc-mode" "\
3493Major mode for editing Java code. 3494Major mode for editing Java code.
@@ -3505,7 +3506,7 @@ initialization, then `java-mode-hook'.
3505Key bindings: 3506Key bindings:
3506\\{java-mode-map} 3507\\{java-mode-map}
3507 3508
3508(fn)" t nil) 3509(fn)" t)
3509 (add-to-list 'auto-mode-alist '("\\.idl\\'" . idl-mode)) 3510 (add-to-list 'auto-mode-alist '("\\.idl\\'" . idl-mode))
3510(autoload 'idl-mode "cc-mode" "\ 3511(autoload 'idl-mode "cc-mode" "\
3511Major mode for editing CORBA's IDL, PSDL and CIDL code. 3512Major mode for editing CORBA's IDL, PSDL and CIDL code.
@@ -3523,7 +3524,7 @@ initialization, then `idl-mode-hook'.
3523Key bindings: 3524Key bindings:
3524\\{idl-mode-map} 3525\\{idl-mode-map}
3525 3526
3526(fn)" t nil) 3527(fn)" t)
3527 (add-to-list 'auto-mode-alist '("\\.\\(u?lpc\\|pike\\|pmod\\(\\.in\\)?\\)\\'" . pike-mode)) 3528 (add-to-list 'auto-mode-alist '("\\.\\(u?lpc\\|pike\\|pmod\\(\\.in\\)?\\)\\'" . pike-mode))
3528 (add-to-list 'interpreter-mode-alist '("pike" . pike-mode)) 3529 (add-to-list 'interpreter-mode-alist '("pike" . pike-mode))
3529(autoload 'pike-mode "cc-mode" "\ 3530(autoload 'pike-mode "cc-mode" "\
@@ -3542,7 +3543,7 @@ initialization, then `pike-mode-hook'.
3542Key bindings: 3543Key bindings:
3543\\{pike-mode-map} 3544\\{pike-mode-map}
3544 3545
3545(fn)" t nil) 3546(fn)" t)
3546 (add-to-list 'auto-mode-alist '("\\.awk\\'" . awk-mode)) 3547 (add-to-list 'auto-mode-alist '("\\.awk\\'" . awk-mode))
3547 (add-to-list 'interpreter-mode-alist '("awk" . awk-mode)) 3548 (add-to-list 'interpreter-mode-alist '("awk" . awk-mode))
3548 (add-to-list 'interpreter-mode-alist '("mawk" . awk-mode)) 3549 (add-to-list 'interpreter-mode-alist '("mawk" . awk-mode))
@@ -3563,7 +3564,7 @@ initialization, then `awk-mode-hook'.
3563Key bindings: 3564Key bindings:
3564\\{awk-mode-map} 3565\\{awk-mode-map}
3565 3566
3566(fn)" t nil) 3567(fn)" t)
3567(register-definition-prefixes "cc-mode" '("awk-mode-map" "c++-mode-" "c-" "idl-mode-" "java-mode-" "objc-mode-" "pike-mode-")) 3568(register-definition-prefixes "cc-mode" '("awk-mode-map" "c++-mode-" "c-" "idl-mode-" "java-mode-" "objc-mode-" "pike-mode-"))
3568 3569
3569 3570
@@ -3592,7 +3593,7 @@ calls c-set-style internally in this way whilst initializing a buffer; if
3592c-set-style is called like this from anywhere else, it will usually behave as 3593c-set-style is called like this from anywhere else, it will usually behave as
3593a null operation. 3594a null operation.
3594 3595
3595(fn STYLENAME &optional DONT-OVERRIDE)" t nil) 3596(fn STYLENAME &optional DONT-OVERRIDE)" t)
3596(autoload 'c-add-style "cc-styles" "\ 3597(autoload 'c-add-style "cc-styles" "\
3597Add a style to `c-style-alist', or update an existing one. 3598Add a style to `c-style-alist', or update an existing one.
3598STYLE is a string identifying the style to add or update. DESCRIPTION 3599STYLE is a string identifying the style to add or update. DESCRIPTION
@@ -3604,14 +3605,14 @@ See the variable `c-style-alist' for the semantics of BASESTYLE,
3604VARIABLE and VALUE. This function also sets the current style to 3605VARIABLE and VALUE. This function also sets the current style to
3605STYLE using `c-set-style' if the optional SET-P flag is non-nil. 3606STYLE using `c-set-style' if the optional SET-P flag is non-nil.
3606 3607
3607(fn STYLE DESCRIPTION &optional SET-P)" t nil) 3608(fn STYLE DESCRIPTION &optional SET-P)" t)
3608(autoload 'c-set-offset "cc-styles" "\ 3609(autoload 'c-set-offset "cc-styles" "\
3609Change the value of a syntactic element symbol in `c-offsets-alist'. 3610Change the value of a syntactic element symbol in `c-offsets-alist'.
3610SYMBOL is the syntactic element symbol to change and OFFSET is the new 3611SYMBOL is the syntactic element symbol to change and OFFSET is the new
3611offset for that syntactic element. The optional argument is not used 3612offset for that syntactic element. The optional argument is not used
3612and exists only for compatibility reasons. 3613and exists only for compatibility reasons.
3613 3614
3614(fn SYMBOL OFFSET &optional IGNORED)" t nil) 3615(fn SYMBOL OFFSET &optional IGNORED)" t)
3615(register-definition-prefixes "cc-styles" '("c-" "cc-choose-style-for-mode")) 3616(register-definition-prefixes "cc-styles" '("c-" "cc-choose-style-for-mode"))
3616 3617
3617 3618
@@ -3628,11 +3629,11 @@ and exists only for compatibility reasons.
3628(autoload 'ccl-compile "ccl" "\ 3629(autoload 'ccl-compile "ccl" "\
3629Return the compiled code of CCL-PROGRAM as a vector of integers. 3630Return the compiled code of CCL-PROGRAM as a vector of integers.
3630 3631
3631(fn CCL-PROGRAM)" nil nil) 3632(fn CCL-PROGRAM)")
3632(autoload 'ccl-dump "ccl" "\ 3633(autoload 'ccl-dump "ccl" "\
3633Disassemble compiled CCL-code CODE. 3634Disassemble compiled CCL-code CODE.
3634 3635
3635(fn CODE)" nil nil) 3636(fn CODE)")
3636(autoload 'declare-ccl-program "ccl" "\ 3637(autoload 'declare-ccl-program "ccl" "\
3637Declare NAME as a name of CCL program. 3638Declare NAME as a name of CCL program.
3638 3639
@@ -3906,7 +3907,7 @@ The return value is a vector of resulting CCL registers.
3906 3907
3907See the documentation of `define-ccl-program' for the detail of CCL program. 3908See the documentation of `define-ccl-program' for the detail of CCL program.
3908 3909
3909(fn CCL-PROG &rest ARGS)" nil nil) 3910(fn CCL-PROG &rest ARGS)")
3910(register-definition-prefixes "ccl" '("ccl-")) 3911(register-definition-prefixes "ccl" '("ccl-"))
3911 3912
3912 3913
@@ -3918,7 +3919,7 @@ FORM is a piece of Elisp code after macroexpansion.
3918 3919
3919Returns a form where all lambdas don't have any free variables. 3920Returns a form where all lambdas don't have any free variables.
3920 3921
3921(fn FORM)" nil nil) 3922(fn FORM)")
3922(register-definition-prefixes "cconv" '("cconv-")) 3923(register-definition-prefixes "cconv" '("cconv-"))
3923 3924
3924 3925
@@ -3963,7 +3964,7 @@ There are no special keybindings by default.
3963Action blocks are treated as defuns, i.e. \\[beginning-of-defun] moves 3964Action blocks are treated as defuns, i.e. \\[beginning-of-defun] moves
3964to the action header. 3965to the action header.
3965 3966
3966(fn)" t nil) 3967(fn)" t)
3967(autoload 'cfengine2-mode "cfengine" "\ 3968(autoload 'cfengine2-mode "cfengine" "\
3968Major mode for editing CFEngine2 input. 3969Major mode for editing CFEngine2 input.
3969There are no special keybindings by default. 3970There are no special keybindings by default.
@@ -3971,9 +3972,9 @@ There are no special keybindings by default.
3971Action blocks are treated as defuns, i.e. \\[beginning-of-defun] moves 3972Action blocks are treated as defuns, i.e. \\[beginning-of-defun] moves
3972to the action header. 3973to the action header.
3973 3974
3974(fn)" t nil) 3975(fn)" t)
3975(autoload 'cfengine-auto-mode "cfengine" "\ 3976(autoload 'cfengine-auto-mode "cfengine" "\
3976Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents." t nil) 3977Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents." t)
3977(register-definition-prefixes "cfengine" '("cfengine")) 3978(register-definition-prefixes "cfengine" '("cfengine"))
3978 3979
3979 3980
@@ -3997,7 +3998,7 @@ just return the result of calling `regexp-quote' on STRING.
3997FROM is for internal use. It specifies an index in the STRING 3998FROM is for internal use. It specifies an index in the STRING
3998from which to start. 3999from which to start.
3999 4000
4000(fn STRING &optional LAX FROM)" nil nil) 4001(fn STRING &optional LAX FROM)")
4001(register-definition-prefixes "char-fold" '("char-fold-")) 4002(register-definition-prefixes "char-fold" '("char-fold-"))
4002 4003
4003 4004
@@ -4017,12 +4018,12 @@ from which to start.
4017Check veracity of all `declare-function' statements in FILE. 4018Check veracity of all `declare-function' statements in FILE.
4018See `check-declare-directory' for more information. 4019See `check-declare-directory' for more information.
4019 4020
4020(fn FILE)" t nil) 4021(fn FILE)" t)
4021(autoload 'check-declare-directory "check-declare" "\ 4022(autoload 'check-declare-directory "check-declare" "\
4022Check veracity of all `declare-function' statements under directory ROOT. 4023Check veracity of all `declare-function' statements under directory ROOT.
4023Returns non-nil if any false statements are found. 4024Returns non-nil if any false statements are found.
4024 4025
4025(fn ROOT)" t nil) 4026(fn ROOT)" t)
4026(register-definition-prefixes "check-declare" '("check-declare-")) 4027(register-definition-prefixes "check-declare" '("check-declare-"))
4027 4028
4028 4029
@@ -4039,13 +4040,13 @@ Returns non-nil if any false statements are found.
4039(autoload 'checkdoc-list-of-strings-p "checkdoc" "\ 4040(autoload 'checkdoc-list-of-strings-p "checkdoc" "\
4040Return t when OBJ is a list of strings. 4041Return t when OBJ is a list of strings.
4041 4042
4042(fn OBJ)" nil nil) 4043(fn OBJ)")
4043(put 'checkdoc-proper-noun-regexp 'safe-local-variable 'stringp) 4044(put 'checkdoc-proper-noun-regexp 'safe-local-variable 'stringp)
4044(put 'checkdoc-common-verbs-regexp 'safe-local-variable 'stringp) 4045(put 'checkdoc-common-verbs-regexp 'safe-local-variable 'stringp)
4045(autoload 'checkdoc "checkdoc" "\ 4046(autoload 'checkdoc "checkdoc" "\
4046Interactively check the entire buffer for style errors. 4047Interactively check the entire buffer for style errors.
4047The current status of the check will be displayed in a buffer which 4048The current status of the check will be displayed in a buffer which
4048the users will view as each check is completed." '(emacs-lisp-mode) nil) 4049the users will view as each check is completed." '(emacs-lisp-mode))
4049(autoload 'checkdoc-interactive "checkdoc" "\ 4050(autoload 'checkdoc-interactive "checkdoc" "\
4050Interactively check the current buffer for doc string errors. 4051Interactively check the current buffer for doc string errors.
4051Prefix argument START-HERE will start the checking from the current 4052Prefix argument START-HERE will start the checking from the current
@@ -4055,7 +4056,7 @@ errors. Does not check for comment or space warnings.
4055Optional argument SHOWSTATUS indicates that we should update the 4056Optional argument SHOWSTATUS indicates that we should update the
4056checkdoc status window instead of the usual behavior. 4057checkdoc status window instead of the usual behavior.
4057 4058
4058(fn &optional START-HERE SHOWSTATUS)" '(emacs-lisp-mode) nil) 4059(fn &optional START-HERE SHOWSTATUS)" '(emacs-lisp-mode))
4059(autoload 'checkdoc-message-interactive "checkdoc" "\ 4060(autoload 'checkdoc-message-interactive "checkdoc" "\
4060Interactively check the current buffer for message string errors. 4061Interactively check the current buffer for message string errors.
4061Prefix argument START-HERE will start the checking from the current 4062Prefix argument START-HERE will start the checking from the current
@@ -4065,23 +4066,23 @@ errors. Does not check for comment or space warnings.
4065Optional argument SHOWSTATUS indicates that we should update the 4066Optional argument SHOWSTATUS indicates that we should update the
4066checkdoc status window instead of the usual behavior. 4067checkdoc status window instead of the usual behavior.
4067 4068
4068(fn &optional START-HERE SHOWSTATUS)" '(emacs-lisp-mode) nil) 4069(fn &optional START-HERE SHOWSTATUS)" '(emacs-lisp-mode))
4069(autoload 'checkdoc-eval-current-buffer "checkdoc" "\ 4070(autoload 'checkdoc-eval-current-buffer "checkdoc" "\
4070Evaluate and check documentation for the current buffer. 4071Evaluate and check documentation for the current buffer.
4071Evaluation is done first because good documentation for something that 4072Evaluation is done first because good documentation for something that
4072doesn't work is just not useful. Comments, doc strings, and rogue 4073doesn't work is just not useful. Comments, doc strings, and rogue
4073spacing are all verified." t nil) 4074spacing are all verified." t)
4074(autoload 'checkdoc-current-buffer "checkdoc" "\ 4075(autoload 'checkdoc-current-buffer "checkdoc" "\
4075Check current buffer for document, comment, error style, and rogue spaces. 4076Check current buffer for document, comment, error style, and rogue spaces.
4076With a prefix argument (in Lisp, the argument TAKE-NOTES), 4077With a prefix argument (in Lisp, the argument TAKE-NOTES),
4077store all errors found in a warnings buffer, 4078store all errors found in a warnings buffer,
4078otherwise stop after the first error. 4079otherwise stop after the first error.
4079 4080
4080(fn &optional TAKE-NOTES)" '(emacs-lisp-mode) nil) 4081(fn &optional TAKE-NOTES)" '(emacs-lisp-mode))
4081(autoload 'checkdoc-file "checkdoc" "\ 4082(autoload 'checkdoc-file "checkdoc" "\
4082Check FILE for document, comment, error style, and rogue spaces. 4083Check FILE for document, comment, error style, and rogue spaces.
4083 4084
4084(fn FILE)" nil nil) 4085(fn FILE)")
4085(autoload 'checkdoc-start "checkdoc" "\ 4086(autoload 'checkdoc-start "checkdoc" "\
4086Start scanning the current buffer for documentation string style errors. 4087Start scanning the current buffer for documentation string style errors.
4087Only documentation strings are checked. 4088Only documentation strings are checked.
@@ -4089,20 +4090,20 @@ Use `checkdoc-continue' to continue checking if an error cannot be fixed.
4089Prefix argument TAKE-NOTES means to collect all the warning messages into 4090Prefix argument TAKE-NOTES means to collect all the warning messages into
4090a separate buffer. 4091a separate buffer.
4091 4092
4092(fn &optional TAKE-NOTES)" '(emacs-lisp-mode) nil) 4093(fn &optional TAKE-NOTES)" '(emacs-lisp-mode))
4093(autoload 'checkdoc-continue "checkdoc" "\ 4094(autoload 'checkdoc-continue "checkdoc" "\
4094Find the next doc string in the current buffer which has a style error. 4095Find the next doc string in the current buffer which has a style error.
4095Prefix argument TAKE-NOTES means to continue through the whole 4096Prefix argument TAKE-NOTES means to continue through the whole
4096buffer and save warnings in a separate buffer. 4097buffer and save warnings in a separate buffer.
4097 4098
4098(fn &optional TAKE-NOTES)" '(emacs-lisp-mode) nil) 4099(fn &optional TAKE-NOTES)" '(emacs-lisp-mode))
4099(autoload 'checkdoc-comments "checkdoc" "\ 4100(autoload 'checkdoc-comments "checkdoc" "\
4100Find missing comment sections in the current Emacs Lisp file. 4101Find missing comment sections in the current Emacs Lisp file.
4101Prefix argument TAKE-NOTES non-nil means to save warnings in a 4102Prefix argument TAKE-NOTES non-nil means to save warnings in a
4102separate buffer. Otherwise print a message. This returns the error 4103separate buffer. Otherwise print a message. This returns the error
4103if there is one. 4104if there is one.
4104 4105
4105(fn &optional TAKE-NOTES)" '(emacs-lisp-mode) nil) 4106(fn &optional TAKE-NOTES)" '(emacs-lisp-mode))
4106(autoload 'checkdoc-rogue-spaces "checkdoc" "\ 4107(autoload 'checkdoc-rogue-spaces "checkdoc" "\
4107Find extra spaces at the end of lines in the current file. 4108Find extra spaces at the end of lines in the current file.
4108Prefix argument TAKE-NOTES non-nil means to save warnings in a 4109Prefix argument TAKE-NOTES non-nil means to save warnings in a
@@ -4110,17 +4111,17 @@ separate buffer. Otherwise print a message. This returns the error
4110if there is one. 4111if there is one.
4111Optional argument INTERACT permits more interactive fixing. 4112Optional argument INTERACT permits more interactive fixing.
4112 4113
4113(fn &optional TAKE-NOTES INTERACT)" '(emacs-lisp-mode) nil) 4114(fn &optional TAKE-NOTES INTERACT)" '(emacs-lisp-mode))
4114(autoload 'checkdoc-message-text "checkdoc" "\ 4115(autoload 'checkdoc-message-text "checkdoc" "\
4115Scan the buffer for occurrences of the error function, and verify text. 4116Scan the buffer for occurrences of the error function, and verify text.
4116Optional argument TAKE-NOTES causes all errors to be logged. 4117Optional argument TAKE-NOTES causes all errors to be logged.
4117 4118
4118(fn &optional TAKE-NOTES)" '(emacs-lisp-mode) nil) 4119(fn &optional TAKE-NOTES)" '(emacs-lisp-mode))
4119(autoload 'checkdoc-eval-defun "checkdoc" "\ 4120(autoload 'checkdoc-eval-defun "checkdoc" "\
4120Evaluate the current form with `eval-defun' and check its documentation. 4121Evaluate the current form with `eval-defun' and check its documentation.
4121Evaluation is done first so the form will be read before the 4122Evaluation is done first so the form will be read before the
4122documentation is checked. If there is a documentation error, then the display 4123documentation is checked. If there is a documentation error, then the display
4123of what was evaluated will be overwritten by the diagnostic message." t nil) 4124of what was evaluated will be overwritten by the diagnostic message." t)
4124(autoload 'checkdoc-defun "checkdoc" "\ 4125(autoload 'checkdoc-defun "checkdoc" "\
4125Examine the doc string of the function or variable under point. 4126Examine the doc string of the function or variable under point.
4126Call `error' if the doc string has problems. If NO-ERROR is 4127Call `error' if the doc string has problems. If NO-ERROR is
@@ -4128,50 +4129,50 @@ non-nil, then do not call error, but call `message' instead.
4128If the doc string passes the test, then check the function for rogue white 4129If the doc string passes the test, then check the function for rogue white
4129space at the end of each line. 4130space at the end of each line.
4130 4131
4131(fn &optional NO-ERROR)" t nil) 4132(fn &optional NO-ERROR)" t)
4132(autoload 'checkdoc-dired "checkdoc" "\ 4133(autoload 'checkdoc-dired "checkdoc" "\
4133In Dired, run `checkdoc' on marked files. 4134In Dired, run `checkdoc' on marked files.
4134Skip anything that doesn't have the Emacs Lisp library file 4135Skip anything that doesn't have the Emacs Lisp library file
4135extension (\".el\"). 4136extension (\".el\").
4136When called from Lisp, FILES is a list of filenames. 4137When called from Lisp, FILES is a list of filenames.
4137 4138
4138(fn FILES)" '(dired-mode) nil) 4139(fn FILES)" '(dired-mode))
4139(autoload 'checkdoc-ispell "checkdoc" "\ 4140(autoload 'checkdoc-ispell "checkdoc" "\
4140Check the style and spelling of everything interactively. 4141Check the style and spelling of everything interactively.
4141Calls `checkdoc' with spell-checking turned on. 4142Calls `checkdoc' with spell-checking turned on.
4142Prefix argument is the same as for `checkdoc'." t nil) 4143Prefix argument is the same as for `checkdoc'." t)
4143(autoload 'checkdoc-ispell-current-buffer "checkdoc" "\ 4144(autoload 'checkdoc-ispell-current-buffer "checkdoc" "\
4144Check the style and spelling of the current buffer. 4145Check the style and spelling of the current buffer.
4145Calls `checkdoc-current-buffer' with spell-checking turned on. 4146Calls `checkdoc-current-buffer' with spell-checking turned on.
4146Prefix argument is the same as for `checkdoc-current-buffer'." t nil) 4147Prefix argument is the same as for `checkdoc-current-buffer'." t)
4147(autoload 'checkdoc-ispell-interactive "checkdoc" "\ 4148(autoload 'checkdoc-ispell-interactive "checkdoc" "\
4148Check the style and spelling of the current buffer interactively. 4149Check the style and spelling of the current buffer interactively.
4149Calls `checkdoc-interactive' with spell-checking turned on. 4150Calls `checkdoc-interactive' with spell-checking turned on.
4150Prefix argument is the same as for `checkdoc-interactive'." t nil) 4151Prefix argument is the same as for `checkdoc-interactive'." t)
4151(autoload 'checkdoc-ispell-message-interactive "checkdoc" "\ 4152(autoload 'checkdoc-ispell-message-interactive "checkdoc" "\
4152Check the style and spelling of message text interactively. 4153Check the style and spelling of message text interactively.
4153Calls `checkdoc-message-interactive' with spell-checking turned on. 4154Calls `checkdoc-message-interactive' with spell-checking turned on.
4154Prefix argument is the same as for `checkdoc-message-interactive'." t nil) 4155Prefix argument is the same as for `checkdoc-message-interactive'." t)
4155(autoload 'checkdoc-ispell-message-text "checkdoc" "\ 4156(autoload 'checkdoc-ispell-message-text "checkdoc" "\
4156Check the style and spelling of message text interactively. 4157Check the style and spelling of message text interactively.
4157Calls `checkdoc-message-text' with spell-checking turned on. 4158Calls `checkdoc-message-text' with spell-checking turned on.
4158Prefix argument is the same as for `checkdoc-message-text'." t nil) 4159Prefix argument is the same as for `checkdoc-message-text'." t)
4159(autoload 'checkdoc-ispell-start "checkdoc" "\ 4160(autoload 'checkdoc-ispell-start "checkdoc" "\
4160Check the style and spelling of the current buffer. 4161Check the style and spelling of the current buffer.
4161Calls `checkdoc-start' with spell-checking turned on. 4162Calls `checkdoc-start' with spell-checking turned on.
4162Prefix argument is the same as for `checkdoc-start'." t nil) 4163Prefix argument is the same as for `checkdoc-start'." t)
4163(autoload 'checkdoc-ispell-continue "checkdoc" "\ 4164(autoload 'checkdoc-ispell-continue "checkdoc" "\
4164Check the style and spelling of the current buffer after point. 4165Check the style and spelling of the current buffer after point.
4165Calls `checkdoc-continue' with spell-checking turned on. 4166Calls `checkdoc-continue' with spell-checking turned on.
4166Prefix argument is the same as for `checkdoc-continue'." t nil) 4167Prefix argument is the same as for `checkdoc-continue'." t)
4167(autoload 'checkdoc-ispell-comments "checkdoc" "\ 4168(autoload 'checkdoc-ispell-comments "checkdoc" "\
4168Check the style and spelling of the current buffer's comments. 4169Check the style and spelling of the current buffer's comments.
4169Calls `checkdoc-comments' with spell-checking turned on. 4170Calls `checkdoc-comments' with spell-checking turned on.
4170Prefix argument is the same as for `checkdoc-comments'." t nil) 4171Prefix argument is the same as for `checkdoc-comments'." t)
4171(autoload 'checkdoc-ispell-defun "checkdoc" "\ 4172(autoload 'checkdoc-ispell-defun "checkdoc" "\
4172Check the style and spelling of the current defun with Ispell. 4173Check the style and spelling of the current defun with Ispell.
4173Calls `checkdoc-defun' with spell-checking turned on. 4174Calls `checkdoc-defun' with spell-checking turned on.
4174Prefix argument is the same as for `checkdoc-defun'." t nil) 4175Prefix argument is the same as for `checkdoc-defun'." t)
4175(autoload 'checkdoc-minor-mode "checkdoc" "\ 4176(autoload 'checkdoc-minor-mode "checkdoc" "\
4176Toggle automatic docstring checking (Checkdoc minor mode). 4177Toggle automatic docstring checking (Checkdoc minor mode).
4177 4178
@@ -4195,9 +4196,9 @@ evaluate `checkdoc-minor-mode'.
4195The mode's hook is called both when the mode is enabled and when 4196The mode's hook is called both when the mode is enabled and when
4196it is disabled. 4197it is disabled.
4197 4198
4198(fn &optional ARG)" t nil) 4199(fn &optional ARG)" t)
4199(autoload 'checkdoc-package-keywords "checkdoc" "\ 4200(autoload 'checkdoc-package-keywords "checkdoc" "\
4200Find package keywords that aren't in `finder-known-keywords'." t nil) 4201Find package keywords that aren't in `finder-known-keywords'." t)
4201(register-definition-prefixes "checkdoc" '("checkdoc-")) 4202(register-definition-prefixes "checkdoc" '("checkdoc-"))
4202 4203
4203 4204
@@ -4207,24 +4208,24 @@ Find package keywords that aren't in `finder-known-keywords'." t nil)
4207Decode HZ/ZW encoded text in the current region. 4208Decode HZ/ZW encoded text in the current region.
4208Return the length of resulting text. 4209Return the length of resulting text.
4209 4210
4210(fn BEG END)" t nil) 4211(fn BEG END)" t)
4211(autoload 'decode-hz-buffer "china-util" "\ 4212(autoload 'decode-hz-buffer "china-util" "\
4212Decode HZ/ZW encoded text in the current buffer." t nil) 4213Decode HZ/ZW encoded text in the current buffer." t)
4213(autoload 'encode-hz-region "china-util" "\ 4214(autoload 'encode-hz-region "china-util" "\
4214Encode the text in the current region to HZ. 4215Encode the text in the current region to HZ.
4215Return the length of resulting text. 4216Return the length of resulting text.
4216 4217
4217(fn BEG END)" t nil) 4218(fn BEG END)" t)
4218(autoload 'encode-hz-buffer "china-util" "\ 4219(autoload 'encode-hz-buffer "china-util" "\
4219Encode the text in the current buffer to HZ." t nil) 4220Encode the text in the current buffer to HZ." t)
4220(autoload 'post-read-decode-hz "china-util" "\ 4221(autoload 'post-read-decode-hz "china-util" "\
4221 4222
4222 4223
4223(fn LEN)" nil nil) 4224(fn LEN)")
4224(autoload 'pre-write-encode-hz "china-util" "\ 4225(autoload 'pre-write-encode-hz "china-util" "\
4225 4226
4226 4227
4227(fn FROM TO)" nil nil) 4228(fn FROM TO)")
4228(register-definition-prefixes "china-util" '("decode-hz-line-continuation" "hz-" "hz/zw-start-gb" "iso2022-" "zw-start-gb")) 4229(register-definition-prefixes "china-util" '("decode-hz-line-continuation" "hz-" "hz/zw-start-gb" "iso2022-" "zw-start-gb"))
4229 4230
4230 4231
@@ -4237,14 +4238,14 @@ a form for evaluation. If PATTERN is empty (or nil), every form in the
4237command history is offered. The form is placed in the minibuffer for 4238command history is offered. The form is placed in the minibuffer for
4238editing and the result is evaluated. 4239editing and the result is evaluated.
4239 4240
4240(fn &optional PATTERN)" t nil) 4241(fn &optional PATTERN)" t)
4241(autoload 'list-command-history "chistory" "\ 4242(autoload 'list-command-history "chistory" "\
4242List history of commands that used the minibuffer. 4243List history of commands that used the minibuffer.
4243The number of commands listed is controlled by `list-command-history-max'. 4244The number of commands listed is controlled by `list-command-history-max'.
4244Calls value of `list-command-history-filter' (if non-nil) on each history 4245Calls value of `list-command-history-filter' (if non-nil) on each history
4245element to judge if that element should be excluded from the list. 4246element to judge if that element should be excluded from the list.
4246 4247
4247The buffer is left in Command History mode." t nil) 4248The buffer is left in Command History mode." t)
4248(autoload 'command-history "chistory" "\ 4249(autoload 'command-history "chistory" "\
4249Examine commands from variable `command-history' in a buffer. 4250Examine commands from variable `command-history' in a buffer.
4250The number of commands listed is controlled by `list-command-history-max'. 4251The number of commands listed is controlled by `list-command-history-max'.
@@ -4256,7 +4257,7 @@ and digits provide prefix arguments. Tab does not indent.
4256\\{command-history-mode-map} 4257\\{command-history-mode-map}
4257 4258
4258This command always recompiles the Command History listing 4259This command always recompiles the Command History listing
4259and runs the normal hook `command-history-hook'." t nil) 4260and runs the normal hook `command-history-hook'." t)
4260(register-definition-prefixes "chistory" '("command-history-" "default-command-history-filter" "list-command-history-")) 4261(register-definition-prefixes "chistory" '("command-history-" "default-command-history-filter" "list-command-history-"))
4261 4262
4262 4263
@@ -4293,7 +4294,7 @@ evaluate `(default-value \\='cl-font-lock-built-in-mode)'.
4293The mode's hook is called both when the mode is enabled and when 4294The mode's hook is called both when the mode is enabled and when
4294it is disabled. 4295it is disabled.
4295 4296
4296(fn &optional ARG)" t nil) 4297(fn &optional ARG)" t)
4297(register-definition-prefixes "cl-font-lock" '("cl-font-lock-")) 4298(register-definition-prefixes "cl-font-lock" '("cl-font-lock-"))
4298 4299
4299 4300
@@ -4319,7 +4320,7 @@ DEFAULT-BODY, if present, is used as the body of a default method.
4319(autoload 'cl-generic-define "cl-generic" "\ 4320(autoload 'cl-generic-define "cl-generic" "\
4320 4321
4321 4322
4322(fn NAME ARGS OPTIONS)" nil nil) 4323(fn NAME ARGS OPTIONS)")
4323(autoload 'cl-defmethod "cl-generic" "\ 4324(autoload 'cl-defmethod "cl-generic" "\
4324Define a new method for generic function NAME. 4325Define a new method for generic function NAME.
4325This defines an implementation of NAME to use for invocations 4326This defines an implementation of NAME to use for invocations
@@ -4367,11 +4368,11 @@ The set of acceptable TYPEs (also called \"specializers\") is defined
4367(autoload 'cl-generic-define-method "cl-generic" "\ 4368(autoload 'cl-generic-define-method "cl-generic" "\
4368 4369
4369 4370
4370(fn NAME QUALIFIERS ARGS CALL-CON FUNCTION)" nil nil) 4371(fn NAME QUALIFIERS ARGS CALL-CON FUNCTION)")
4371(autoload 'cl-find-method "cl-generic" "\ 4372(autoload 'cl-find-method "cl-generic" "\
4372 4373
4373 4374
4374(fn GENERIC QUALIFIERS SPECIALIZERS)" nil nil) 4375(fn GENERIC QUALIFIERS SPECIALIZERS)")
4375(register-definition-prefixes "cl-generic" '("cl-")) 4376(register-definition-prefixes "cl-generic" '("cl-"))
4376 4377
4377 4378
@@ -4453,7 +4454,7 @@ If the current mode is actually `emacs-lisp-mode', look for a
4453at `common-lisp-indent-function' and, if set, use its value 4454at `common-lisp-indent-function' and, if set, use its value
4454instead. 4455instead.
4455 4456
4456(fn INDENT-POINT STATE)" nil nil) 4457(fn INDENT-POINT STATE)")
4457(register-definition-prefixes "cl-indent" '("common-lisp-" "lisp-")) 4458(register-definition-prefixes "cl-indent" '("common-lisp-" "lisp-"))
4458 4459
4459 4460
@@ -4510,7 +4511,7 @@ evaluate `(default-value \\='cl-old-struct-compat-mode)'.
4510The mode's hook is called both when the mode is enabled and when 4511The mode's hook is called both when the mode is enabled and when
4511it is disabled. 4512it is disabled.
4512 4513
4513(fn &optional ARG)" t nil) 4514(fn &optional ARG)" t)
4514(register-definition-prefixes "cl-lib" '("cl-")) 4515(register-definition-prefixes "cl-lib" '("cl-"))
4515 4516
4516 4517
@@ -4528,13 +4529,13 @@ You can add methods to it to customize the output.
4528But if you just want to print something, don't call this directly: 4529But if you just want to print something, don't call this directly:
4529call other entry points instead, such as `cl-prin1'. 4530call other entry points instead, such as `cl-prin1'.
4530 4531
4531(fn OBJECT STREAM)" nil nil) 4532(fn OBJECT STREAM)")
4532(autoload 'cl-print-expand-ellipsis "cl-print" "\ 4533(autoload 'cl-print-expand-ellipsis "cl-print" "\
4533Print the expansion of an ellipsis to STREAM. 4534Print the expansion of an ellipsis to STREAM.
4534VALUE should be the value of the `cl-print-ellipsis' text property 4535VALUE should be the value of the `cl-print-ellipsis' text property
4535which was attached to the ellipsis by `cl-prin1'. 4536which was attached to the ellipsis by `cl-prin1'.
4536 4537
4537(fn VALUE STREAM)" nil nil) 4538(fn VALUE STREAM)")
4538(autoload 'cl-prin1 "cl-print" "\ 4539(autoload 'cl-prin1 "cl-print" "\
4539Print OBJECT on STREAM according to its type. 4540Print OBJECT on STREAM according to its type.
4540Output is further controlled by the variables 4541Output is further controlled by the variables
@@ -4542,11 +4543,11 @@ Output is further controlled by the variables
4542variables for the standard printing functions. See Info 4543variables for the standard printing functions. See Info
4543node `(elisp)Output Variables'. 4544node `(elisp)Output Variables'.
4544 4545
4545(fn OBJECT &optional STREAM)" nil nil) 4546(fn OBJECT &optional STREAM)")
4546(autoload 'cl-prin1-to-string "cl-print" "\ 4547(autoload 'cl-prin1-to-string "cl-print" "\
4547Return a string containing the `cl-prin1'-printed representation of OBJECT. 4548Return a string containing the `cl-prin1'-printed representation of OBJECT.
4548 4549
4549(fn OBJECT)" nil nil) 4550(fn OBJECT)")
4550(autoload 'cl-print-to-string-with-limit "cl-print" "\ 4551(autoload 'cl-print-to-string-with-limit "cl-print" "\
4551Return a string containing a printed representation of VALUE. 4552Return a string containing a printed representation of VALUE.
4552Attempt to get the length of the returned string under LIMIT 4553Attempt to get the length of the returned string under LIMIT
@@ -4563,7 +4564,7 @@ this function with `cl-prin1-expand-ellipsis' to expand an
4563ellipsis, abbreviating the expansion to stay within a size 4564ellipsis, abbreviating the expansion to stay within a size
4564limit. 4565limit.
4565 4566
4566(fn PRINT-FUNCTION VALUE LIMIT)" nil nil) 4567(fn PRINT-FUNCTION VALUE LIMIT)")
4567(register-definition-prefixes "cl-print" '("cl-print-" "help-byte-code")) 4568(register-definition-prefixes "cl-print" '("cl-print-" "help-byte-code"))
4568 4569
4569 4570
@@ -4587,7 +4588,7 @@ otherwise use `c-macro-cppflags'.
4587Noninteractive args are START, END, SUBST. 4588Noninteractive args are START, END, SUBST.
4588For use inside Lisp programs, see also `c-macro-expansion'. 4589For use inside Lisp programs, see also `c-macro-expansion'.
4589 4590
4590(fn START END SUBST)" t nil) 4591(fn START END SUBST)" t)
4591(register-definition-prefixes "cmacexp" '("c-macro-")) 4592(register-definition-prefixes "cmacexp" '("c-macro-"))
4592 4593
4593 4594
@@ -4606,7 +4607,7 @@ Runs the hook `inferior-scheme-mode-hook' (after the `comint-mode-hook'
4606is run). 4607is run).
4607(Type \\[describe-mode] in the process buffer for a list of commands.) 4608(Type \\[describe-mode] in the process buffer for a list of commands.)
4608 4609
4609(fn CMD)" t nil) 4610(fn CMD)" t)
4610(register-definition-prefixes "cmuscheme" '("cmuscheme-load-hook" "inferior-scheme-" "scheme-" "switch-to-scheme")) 4611(register-definition-prefixes "cmuscheme" '("cmuscheme-load-hook" "inferior-scheme-" "scheme-" "switch-to-scheme"))
4611 4612
4612 4613
@@ -4628,7 +4629,7 @@ Optional argument FRAME specifies the frame where the color is to be
4628displayed. If FRAME is omitted or nil, use the selected frame. 4629displayed. If FRAME is omitted or nil, use the selected frame.
4629If FRAME cannot display COLOR, return nil. 4630If FRAME cannot display COLOR, return nil.
4630 4631
4631(fn COLOR &optional FRAME)" nil nil) 4632(fn COLOR &optional FRAME)")
4632(register-definition-prefixes "color" '("color-")) 4633(register-definition-prefixes "color" '("color-"))
4633 4634
4634 4635
@@ -4665,7 +4666,7 @@ If PROGRAM is a string, any more args are arguments to PROGRAM.
4665 4666
4666Return the (possibly newly created) process buffer. 4667Return the (possibly newly created) process buffer.
4667 4668
4668(fn NAME BUFFER PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil) 4669(fn NAME BUFFER PROGRAM &optional STARTFILE &rest SWITCHES)")
4669(autoload 'make-comint "comint" "\ 4670(autoload 'make-comint "comint" "\
4670Make a Comint process NAME in a buffer, running PROGRAM. 4671Make a Comint process NAME in a buffer, running PROGRAM.
4671The name of the buffer is made by surrounding NAME with `*'s. 4672The name of the buffer is made by surrounding NAME with `*'s.
@@ -4680,7 +4681,7 @@ If PROGRAM is a string, any more args are arguments to PROGRAM.
4680 4681
4681Returns the (possibly newly created) process buffer. 4682Returns the (possibly newly created) process buffer.
4682 4683
4683(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil) 4684(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)")
4684(autoload 'comint-run "comint" "\ 4685(autoload 'comint-run "comint" "\
4685Run PROGRAM in a Comint buffer and switch to that buffer. 4686Run PROGRAM in a Comint buffer and switch to that buffer.
4686 4687
@@ -4693,7 +4694,7 @@ hooks on this symbol are run in the buffer.
4693 4694
4694See `make-comint' and `comint-exec'. 4695See `make-comint' and `comint-exec'.
4695 4696
4696(fn PROGRAM &optional SWITCHES)" t nil) 4697(fn PROGRAM &optional SWITCHES)" t)
4697(function-put 'comint-run 'interactive-only 'make-comint) 4698(function-put 'comint-run 'interactive-only 'make-comint)
4698(defvar comint-file-name-prefix (purecopy "") "\ 4699(defvar comint-file-name-prefix (purecopy "") "\
4699Prefix prepended to absolute file names taken from process input. 4700Prefix prepended to absolute file names taken from process input.
@@ -4705,26 +4706,26 @@ With prefix arg ECHO, echo output in process buffer.
4705 4706
4706If NO-DISPLAY is non-nil, do not show the output buffer. 4707If NO-DISPLAY is non-nil, do not show the output buffer.
4707 4708
4708(fn COMMAND OUTPUT-BUFFER ECHO &optional NO-DISPLAY)" t nil) 4709(fn COMMAND OUTPUT-BUFFER ECHO &optional NO-DISPLAY)" t)
4709(autoload 'comint-redirect-send-command-to-process "comint" "\ 4710(autoload 'comint-redirect-send-command-to-process "comint" "\
4710Send COMMAND to PROCESS, with output to OUTPUT-BUFFER. 4711Send COMMAND to PROCESS, with output to OUTPUT-BUFFER.
4711With prefix arg, echo output in process buffer. 4712With prefix arg, echo output in process buffer.
4712 4713
4713If NO-DISPLAY is non-nil, do not show the output buffer. 4714If NO-DISPLAY is non-nil, do not show the output buffer.
4714 4715
4715(fn COMMAND OUTPUT-BUFFER PROCESS ECHO &optional NO-DISPLAY)" t nil) 4716(fn COMMAND OUTPUT-BUFFER PROCESS ECHO &optional NO-DISPLAY)" t)
4716(autoload 'comint-redirect-results-list "comint" "\ 4717(autoload 'comint-redirect-results-list "comint" "\
4717Send COMMAND to current process. 4718Send COMMAND to current process.
4718Return a list of expressions in the output which match REGEXP. 4719Return a list of expressions in the output which match REGEXP.
4719REGEXP-GROUP is the regular expression group in REGEXP to use. 4720REGEXP-GROUP is the regular expression group in REGEXP to use.
4720 4721
4721(fn COMMAND REGEXP REGEXP-GROUP)" nil nil) 4722(fn COMMAND REGEXP REGEXP-GROUP)")
4722(autoload 'comint-redirect-results-list-from-process "comint" "\ 4723(autoload 'comint-redirect-results-list-from-process "comint" "\
4723Send COMMAND to PROCESS. 4724Send COMMAND to PROCESS.
4724Return a list of expressions in the output which match REGEXP. 4725Return a list of expressions in the output which match REGEXP.
4725REGEXP-GROUP is the regular expression group in REGEXP to use. 4726REGEXP-GROUP is the regular expression group in REGEXP to use.
4726 4727
4727(fn PROCESS COMMAND REGEXP REGEXP-GROUP)" nil nil) 4728(fn PROCESS COMMAND REGEXP REGEXP-GROUP)")
4728(register-definition-prefixes "comint" '("comint-")) 4729(register-definition-prefixes "comint" '("comint-"))
4729 4730
4730 4731
@@ -4734,25 +4735,25 @@ REGEXP-GROUP is the regular expression group in REGEXP to use.
4734(autoload 'comp-subr-trampoline-install "comp" "\ 4735(autoload 'comp-subr-trampoline-install "comp" "\
4735Make SUBR-NAME effectively advice-able when called from native code. 4736Make SUBR-NAME effectively advice-able when called from native code.
4736 4737
4737(fn SUBR-NAME)" nil nil) 4738(fn SUBR-NAME)")
4738(autoload 'comp-c-func-name "comp" "\ 4739(autoload 'comp-c-func-name "comp" "\
4739Given NAME, return a name suitable for the native code. 4740Given NAME, return a name suitable for the native code.
4740Add PREFIX in front of it. If FIRST is not nil, pick the first 4741Add PREFIX in front of it. If FIRST is not nil, pick the first
4741available name ignoring compilation context and potential name 4742available name ignoring compilation context and potential name
4742clashes. 4743clashes.
4743 4744
4744(fn NAME PREFIX &optional FIRST)" nil nil) 4745(fn NAME PREFIX &optional FIRST)")
4745(autoload 'comp-clean-up-stale-eln "comp" "\ 4746(autoload 'comp-clean-up-stale-eln "comp" "\
4746Remove all FILE*.eln* files found in `native-comp-eln-load-path'. 4747Remove all FILE*.eln* files found in `native-comp-eln-load-path'.
4747The files to be removed are those produced from the original source 4748The files to be removed are those produced from the original source
4748filename (including FILE). 4749filename (including FILE).
4749 4750
4750(fn FILE)" nil nil) 4751(fn FILE)")
4751(autoload 'comp-lookup-eln "comp" "\ 4752(autoload 'comp-lookup-eln "comp" "\
4752Given a Lisp source FILENAME return the corresponding .eln file if found. 4753Given a Lisp source FILENAME return the corresponding .eln file if found.
4753Search happens in `native-comp-eln-load-path'. 4754Search happens in `native-comp-eln-load-path'.
4754 4755
4755(fn FILENAME)" nil nil) 4756(fn FILENAME)")
4756(autoload 'native-compile "comp" "\ 4757(autoload 'native-compile "comp" "\
4757Compile FUNCTION-OR-FILE into native code. 4758Compile FUNCTION-OR-FILE into native code.
4758This is the synchronous entry-point for the Emacs Lisp native 4759This is the synchronous entry-point for the Emacs Lisp native
@@ -4765,7 +4766,7 @@ If FUNCTION-OR-FILE is a filename, return the filename of the
4765compiled object. If FUNCTION-OR-FILE is a function symbol or a 4766compiled object. If FUNCTION-OR-FILE is a function symbol or a
4766form, return the compiled function. 4767form, return the compiled function.
4767 4768
4768(fn FUNCTION-OR-FILE &optional OUTPUT)" nil nil) 4769(fn FUNCTION-OR-FILE &optional OUTPUT)")
4769(autoload 'batch-native-compile "comp" "\ 4770(autoload 'batch-native-compile "comp" "\
4770Perform batch native compilation of remaining command-line arguments. 4771Perform batch native compilation of remaining command-line arguments.
4771 4772
@@ -4777,14 +4778,14 @@ as part of building the source tarball, in which case the .eln file
4777will be placed under the native-lisp/ directory (actually, in the 4778will be placed under the native-lisp/ directory (actually, in the
4778last directory in `native-comp-eln-load-path'). 4779last directory in `native-comp-eln-load-path').
4779 4780
4780(fn &optional FOR-TARBALL)" nil nil) 4781(fn &optional FOR-TARBALL)")
4781(autoload 'batch-byte+native-compile "comp" "\ 4782(autoload 'batch-byte+native-compile "comp" "\
4782Like `batch-native-compile', but used for bootstrap. 4783Like `batch-native-compile', but used for bootstrap.
4783Generate .elc files in addition to the .eln files. 4784Generate .elc files in addition to the .eln files.
4784Force the produced .eln to be outputted in the eln system 4785Force the produced .eln to be outputted in the eln system
4785directory (the last entry in `native-comp-eln-load-path') unless 4786directory (the last entry in `native-comp-eln-load-path') unless
4786`native-compile-target-directory' is non-nil. If the environment 4787`native-compile-target-directory' is non-nil. If the environment
4787variable \"NATIVE_DISABLED\" is set, only byte compile." nil nil) 4788variable \"NATIVE_DISABLED\" is set, only byte compile.")
4788(autoload 'native-compile-async "comp" "\ 4789(autoload 'native-compile-async "comp" "\
4789Compile FILES asynchronously. 4790Compile FILES asynchronously.
4790FILES is one file or a list of filenames or directories. 4791FILES is one file or a list of filenames or directories.
@@ -4804,7 +4805,7 @@ a function -- A function selecting files with matching names.
4804The variable `native-comp-async-jobs-number' specifies the number 4805The variable `native-comp-async-jobs-number' specifies the number
4805of (commands) to run simultaneously. 4806of (commands) to run simultaneously.
4806 4807
4807(fn FILES &optional RECURSIVELY LOAD SELECTOR)" nil nil) 4808(fn FILES &optional RECURSIVELY LOAD SELECTOR)")
4808(register-definition-prefixes "comp" '("comp-" "make-comp-edge" "native-" "no-native-compile")) 4809(register-definition-prefixes "comp" '("comp-" "make-comp-edge" "native-" "no-native-compile"))
4809 4810
4810 4811
@@ -4849,7 +4850,7 @@ on first call it advances points to the next difference,
4849on second call it synchronizes points by skipping the difference, 4850on second call it synchronizes points by skipping the difference,
4850on third call it again advances points to the next difference and so on. 4851on third call it again advances points to the next difference and so on.
4851 4852
4852(fn IGNORE-WHITESPACE)" t nil) 4853(fn IGNORE-WHITESPACE)" t)
4853(register-definition-prefixes "compare-w" '("compare-")) 4854(register-definition-prefixes "compare-w" '("compare-"))
4854 4855
4855 4856
@@ -4948,11 +4949,11 @@ The name used for the buffer is actually whatever is returned by
4948the function in `compilation-buffer-name-function', so you can set that 4949the function in `compilation-buffer-name-function', so you can set that
4949to a function that generates a unique name. 4950to a function that generates a unique name.
4950 4951
4951(fn COMMAND &optional COMINT)" t nil) 4952(fn COMMAND &optional COMINT)" t)
4952(autoload 'compilation--default-buffer-name "compile" "\ 4953(autoload 'compilation--default-buffer-name "compile" "\
4953 4954
4954 4955
4955(fn NAME-OF-MODE)" nil nil) 4956(fn NAME-OF-MODE)")
4956(autoload 'compilation-start "compile" "\ 4957(autoload 'compilation-start "compile" "\
4957Run compilation command COMMAND (low level interface). 4958Run compilation command COMMAND (low level interface).
4958If COMMAND starts with a cd command, that becomes the `default-directory'. 4959If COMMAND starts with a cd command, that becomes the `default-directory'.
@@ -4978,7 +4979,7 @@ point is not changed.
4978 4979
4979Returns the compilation buffer created. 4980Returns the compilation buffer created.
4980 4981
4981(fn COMMAND &optional MODE NAME-FUNCTION HIGHLIGHT-REGEXP CONTINUE)" nil nil) 4982(fn COMMAND &optional MODE NAME-FUNCTION HIGHLIGHT-REGEXP CONTINUE)")
4982(autoload 'compilation-mode "compile" "\ 4983(autoload 'compilation-mode "compile" "\
4983Major mode for compilation log buffers. 4984Major mode for compilation log buffers.
4984\\<compilation-mode-map>To visit the source for a line-numbered error, 4985\\<compilation-mode-map>To visit the source for a line-numbered error,
@@ -4989,7 +4990,7 @@ Runs `compilation-mode-hook' with `run-mode-hooks' (which see).
4989 4990
4990\\{compilation-mode-map} 4991\\{compilation-mode-map}
4991 4992
4992(fn &optional NAME-OF-MODE)" t nil) 4993(fn &optional NAME-OF-MODE)" t)
4993(put 'define-compilation-mode 'doc-string-elt 3) 4994(put 'define-compilation-mode 'doc-string-elt 3)
4994(autoload 'compilation-shell-minor-mode "compile" "\ 4995(autoload 'compilation-shell-minor-mode "compile" "\
4995Toggle Compilation Shell minor mode. 4996Toggle Compilation Shell minor mode.
@@ -5014,9 +5015,7 @@ evaluate `compilation-shell-minor-mode'.
5014The mode's hook is called both when the mode is enabled and when 5015The mode's hook is called both when the mode is enabled and when
5015it is disabled. 5016it is disabled.
5016 5017
5017\\{compilation-shell-minor-mode-map} 5018(fn &optional ARG)" t)
5018
5019(fn &optional ARG)" t nil)
5020(autoload 'compilation-minor-mode "compile" "\ 5019(autoload 'compilation-minor-mode "compile" "\
5021Toggle Compilation minor mode. 5020Toggle Compilation minor mode.
5022 5021
@@ -5039,14 +5038,12 @@ evaluate `compilation-minor-mode'.
5039The mode's hook is called both when the mode is enabled and when 5038The mode's hook is called both when the mode is enabled and when
5040it is disabled. 5039it is disabled.
5041 5040
5042\\{compilation-minor-mode-map} 5041(fn &optional ARG)" t)
5043
5044(fn &optional ARG)" t nil)
5045(autoload 'compilation-next-error-function "compile" "\ 5042(autoload 'compilation-next-error-function "compile" "\
5046Advance to the next error message and visit the file where the error was. 5043Advance to the next error message and visit the file where the error was.
5047This is the value of `next-error-function' in Compilation buffers. 5044This is the value of `next-error-function' in Compilation buffers.
5048 5045
5049(fn N &optional RESET)" t nil) 5046(fn N &optional RESET)" t)
5050(register-definition-prefixes "compile" '("compil" "define-compilation-mode" "kill-compilation" "recompile")) 5047(register-definition-prefixes "compile" '("compil" "define-compilation-mode" "kill-compilation" "recompile"))
5051 5048
5052 5049
@@ -5093,7 +5090,7 @@ evaluate `(default-value \\='dynamic-completion-mode)'.
5093The mode's hook is called both when the mode is enabled and when 5090The mode's hook is called both when the mode is enabled and when
5094it is disabled. 5091it is disabled.
5095 5092
5096(fn &optional ARG)" t nil) 5093(fn &optional ARG)" t)
5097(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-")) 5094(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-"))
5098 5095
5099 5096
@@ -5130,12 +5127,12 @@ See also `conf-space-mode', `conf-colon-mode', `conf-javaprop-mode',
5130 5127
5131\\{conf-mode-map} 5128\\{conf-mode-map}
5132 5129
5133(fn)" t nil) 5130(fn)" t)
5134(autoload 'conf-unix-mode "conf-mode" "\ 5131(autoload 'conf-unix-mode "conf-mode" "\
5135Conf Mode starter for Unix style Conf files. 5132Conf Mode starter for Unix style Conf files.
5136Comments start with `#'. For details see `conf-mode'. 5133Comments start with `#'. For details see `conf-mode'.
5137 5134
5138(fn)" t nil) 5135(fn)" t)
5139(autoload 'conf-windows-mode "conf-mode" "\ 5136(autoload 'conf-windows-mode "conf-mode" "\
5140Conf Mode starter for Windows style Conf files. 5137Conf Mode starter for Windows style Conf files.
5141Comments start with `;'. 5138Comments start with `;'.
@@ -5150,7 +5147,7 @@ Default={5984FFE0-28D4-11CF-AE66-08002B2E1262}
5150[{5984FFE0-28D4-11CF-AE66-08002B2E1262}] 5147[{5984FFE0-28D4-11CF-AE66-08002B2E1262}]
5151PersistMoniker=file://Folder.htt 5148PersistMoniker=file://Folder.htt
5152 5149
5153(fn)" t nil) 5150(fn)" t)
5154(autoload 'conf-javaprop-mode "conf-mode" "\ 5151(autoload 'conf-javaprop-mode "conf-mode" "\
5155Conf Mode starter for Java properties files. 5152Conf Mode starter for Java properties files.
5156Comments start with `#' but are also recognized with `//' or 5153Comments start with `#' but are also recognized with `//' or
@@ -5168,7 +5165,7 @@ x.1 =
5168x.2.y.1.z.1 = 5165x.2.y.1.z.1 =
5169x.2.y.1.z.2.zz = 5166x.2.y.1.z.2.zz =
5170 5167
5171(fn)" t nil) 5168(fn)" t)
5172(autoload 'conf-space-mode "conf-mode" "\ 5169(autoload 'conf-space-mode "conf-mode" "\
5173Conf Mode starter for space separated conf files. 5170Conf Mode starter for space separated conf files.
5174\"Assignments\" are with ` '. Keywords before the parameters are 5171\"Assignments\" are with ` '. Keywords before the parameters are
@@ -5192,12 +5189,12 @@ class desktop
5192add /dev/audio desktop 5189add /dev/audio desktop
5193add /dev/mixer desktop 5190add /dev/mixer desktop
5194 5191
5195(fn)" t nil) 5192(fn)" t)
5196(autoload 'conf-space-keywords "conf-mode" "\ 5193(autoload 'conf-space-keywords "conf-mode" "\
5197Enter Conf Space mode using regexp KEYWORDS to match the keywords. 5194Enter Conf Space mode using regexp KEYWORDS to match the keywords.
5198See `conf-space-mode'. 5195See `conf-space-mode'.
5199 5196
5200(fn KEYWORDS)" t nil) 5197(fn KEYWORDS)" t)
5201(autoload 'conf-colon-mode "conf-mode" "\ 5198(autoload 'conf-colon-mode "conf-mode" "\
5202Conf Mode starter for Colon files. 5199Conf Mode starter for Colon files.
5203\"Assignments\" are with `:'. 5200\"Assignments\" are with `:'.
@@ -5208,7 +5205,7 @@ For details see `conf-mode'. Example:
5208<Multi_key> <exclam> <exclam> : \"\\241\" exclamdown 5205<Multi_key> <exclam> <exclam> : \"\\241\" exclamdown
5209<Multi_key> <c> <slash> : \"\\242\" cent 5206<Multi_key> <c> <slash> : \"\\242\" cent
5210 5207
5211(fn)" t nil) 5208(fn)" t)
5212(autoload 'conf-ppd-mode "conf-mode" "\ 5209(autoload 'conf-ppd-mode "conf-mode" "\
5213Conf Mode starter for Adobe/CUPS PPD files. 5210Conf Mode starter for Adobe/CUPS PPD files.
5214Comments start with `*%' and \"assignments\" are with `:'. 5211Comments start with `*%' and \"assignments\" are with `:'.
@@ -5219,7 +5216,7 @@ For details see `conf-mode'. Example:
5219*DefaultTransfer: Null 5216*DefaultTransfer: Null
5220*Transfer Null.Inverse: \"{ 1 exch sub }\" 5217*Transfer Null.Inverse: \"{ 1 exch sub }\"
5221 5218
5222(fn)" t nil) 5219(fn)" t)
5223(autoload 'conf-xdefaults-mode "conf-mode" "\ 5220(autoload 'conf-xdefaults-mode "conf-mode" "\
5224Conf Mode starter for Xdefaults files. 5221Conf Mode starter for Xdefaults files.
5225Comments start with `!' and \"assignments\" are with `:'. 5222Comments start with `!' and \"assignments\" are with `:'.
@@ -5230,7 +5227,7 @@ For details see `conf-mode'. Example:
5230*background: gray99 5227*background: gray99
5231*foreground: black 5228*foreground: black
5232 5229
5233(fn)" t nil) 5230(fn)" t)
5234(autoload 'conf-toml-mode "conf-mode" "\ 5231(autoload 'conf-toml-mode "conf-mode" "\
5235Conf Mode starter for TOML files. 5232Conf Mode starter for TOML files.
5236Comments start with `#' and \"assignments\" are with `='. 5233Comments start with `#' and \"assignments\" are with `='.
@@ -5241,7 +5238,7 @@ For details see `conf-mode'. Example:
5241[entry] 5238[entry]
5242value = \"some string\" 5239value = \"some string\"
5243 5240
5244(fn)" t nil) 5241(fn)" t)
5245(autoload 'conf-desktop-mode "conf-mode" "\ 5242(autoload 'conf-desktop-mode "conf-mode" "\
5246Conf Mode started for freedesktop.org Desktop files. 5243Conf Mode started for freedesktop.org Desktop files.
5247Comments start with `#' and \"assignments\" are with `='. 5244Comments start with `#' and \"assignments\" are with `='.
@@ -5254,7 +5251,7 @@ For details see `conf-mode'.
5254 Exec=gimp-2.8 %U 5251 Exec=gimp-2.8 %U
5255 Terminal=false 5252 Terminal=false
5256 5253
5257(fn)" t nil) 5254(fn)" t)
5258(register-definition-prefixes "conf-mode" '("conf-")) 5255(register-definition-prefixes "conf-mode" '("conf-"))
5259 5256
5260 5257
@@ -5272,19 +5269,19 @@ of load, ENDMSG at the end.
5272Interactively, PHRASE-FILE defaults to `cookie-file', unless that 5269Interactively, PHRASE-FILE defaults to `cookie-file', unless that
5273is nil or a prefix argument is used. 5270is nil or a prefix argument is used.
5274 5271
5275(fn PHRASE-FILE &optional STARTMSG ENDMSG)" t nil) 5272(fn PHRASE-FILE &optional STARTMSG ENDMSG)" t)
5276(autoload 'cookie-insert "cookie1" "\ 5273(autoload 'cookie-insert "cookie1" "\
5277Insert random phrases from PHRASE-FILE; COUNT of them. 5274Insert random phrases from PHRASE-FILE; COUNT of them.
5278When the phrase file is read in, display STARTMSG at the beginning 5275When the phrase file is read in, display STARTMSG at the beginning
5279of load, ENDMSG at the end. 5276of load, ENDMSG at the end.
5280 5277
5281(fn PHRASE-FILE &optional COUNT STARTMSG ENDMSG)" nil nil) 5278(fn PHRASE-FILE &optional COUNT STARTMSG ENDMSG)")
5282(autoload 'cookie-snarf "cookie1" "\ 5279(autoload 'cookie-snarf "cookie1" "\
5283Read the PHRASE-FILE, return it as a vector of strings. 5280Read the PHRASE-FILE, return it as a vector of strings.
5284Emit STARTMSG and ENDMSG before and after. Cache the result; second 5281Emit STARTMSG and ENDMSG before and after. Cache the result; second
5285and subsequent calls on the same file won't go to disk. 5282and subsequent calls on the same file won't go to disk.
5286 5283
5287(fn PHRASE-FILE &optional STARTMSG ENDMSG)" nil nil) 5284(fn PHRASE-FILE &optional STARTMSG ENDMSG)")
5288(register-definition-prefixes "cookie1" '("cookie")) 5285(register-definition-prefixes "cookie1" '("cookie"))
5289 5286
5290 5287
@@ -5302,21 +5299,21 @@ following the copyright are updated as well.
5302If non-nil, INTERACTIVEP tells the function to behave as when it's called 5299If non-nil, INTERACTIVEP tells the function to behave as when it's called
5303interactively. 5300interactively.
5304 5301
5305(fn &optional ARG INTERACTIVEP)" t nil) 5302(fn &optional ARG INTERACTIVEP)" t)
5306(autoload 'copyright-fix-years "copyright" "\ 5303(autoload 'copyright-fix-years "copyright" "\
5307Convert 2 digit years to 4 digit years. 5304Convert 2 digit years to 4 digit years.
5308Uses heuristic: year >= 50 means 19xx, < 50 means 20xx. 5305Uses heuristic: year >= 50 means 19xx, < 50 means 20xx.
5309If `copyright-year-ranges' (which see) is non-nil, also 5306If `copyright-year-ranges' (which see) is non-nil, also
5310independently replaces consecutive years with a range." t nil) 5307independently replaces consecutive years with a range." t)
5311(autoload 'copyright "copyright" "\ 5308(autoload 'copyright "copyright" "\
5312Insert a copyright by $ORGANIZATION notice at cursor. 5309Insert a copyright by $ORGANIZATION notice at cursor.
5313 5310
5314(fn &optional STR ARG)" t nil) 5311(fn &optional STR ARG)" t)
5315(autoload 'copyright-update-directory "copyright" "\ 5312(autoload 'copyright-update-directory "copyright" "\
5316Update copyright notice for all files in DIRECTORY matching MATCH. 5313Update copyright notice for all files in DIRECTORY matching MATCH.
5317If FIX is non-nil, run `copyright-fix-years' instead. 5314If FIX is non-nil, run `copyright-fix-years' instead.
5318 5315
5319(fn DIRECTORY MATCH &optional FIX)" t nil) 5316(fn DIRECTORY MATCH &optional FIX)" t)
5320(register-definition-prefixes "copyright" '("copyright-")) 5317(register-definition-prefixes "copyright" '("copyright-"))
5321 5318
5322 5319
@@ -5505,13 +5502,13 @@ DO NOT FORGET to read micro-docs (available from `Perl' menu)
5505or as help on variables `cperl-tips', `cperl-problems', 5502or as help on variables `cperl-tips', `cperl-problems',
5506`cperl-praise', `cperl-speed'. 5503`cperl-praise', `cperl-speed'.
5507 5504
5508(fn)" t nil) 5505(fn)" t)
5509(autoload 'cperl-perldoc "cperl-mode" "\ 5506(autoload 'cperl-perldoc "cperl-mode" "\
5510Run `perldoc' on WORD. 5507Run `perldoc' on WORD.
5511 5508
5512(fn WORD)" t nil) 5509(fn WORD)" t)
5513(autoload 'cperl-perldoc-at-point "cperl-mode" "\ 5510(autoload 'cperl-perldoc-at-point "cperl-mode" "\
5514Run a `perldoc' on the word around point." t nil) 5511Run a `perldoc' on the word around point." t)
5515(register-definition-prefixes "cperl-mode" '("cperl-")) 5512(register-definition-prefixes "cperl-mode" '("cperl-"))
5516 5513
5517 5514
@@ -5523,9 +5520,9 @@ This command pops up a buffer which you should edit to specify
5523what kind of highlighting to use, and the criteria for highlighting. 5520what kind of highlighting to use, and the criteria for highlighting.
5524A prefix arg suppresses display of that buffer. 5521A prefix arg suppresses display of that buffer.
5525 5522
5526(fn ARG)" t nil) 5523(fn ARG)" t)
5527(autoload 'cpp-parse-edit "cpp" "\ 5524(autoload 'cpp-parse-edit "cpp" "\
5528Edit display information for cpp conditionals." t nil) 5525Edit display information for cpp conditionals." t)
5529(register-definition-prefixes "cpp" '("cpp-")) 5526(register-definition-prefixes "cpp" '("cpp-"))
5530 5527
5531 5528
@@ -5560,7 +5557,7 @@ contents of the minibuffer are \"alice,bob,eve\" and point is between
5560This function returns a list of the strings that were read, 5557This function returns a list of the strings that were read,
5561with empty strings removed. 5558with empty strings removed.
5562 5559
5563(fn PROMPT TABLE &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)" nil nil) 5560(fn PROMPT TABLE &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)")
5564(register-definition-prefixes "crm" '("crm-")) 5561(register-definition-prefixes "crm" '("crm-"))
5565 5562
5566 5563
@@ -5592,12 +5589,12 @@ be used to fill comments.
5592 5589
5593\\{css-mode-map} 5590\\{css-mode-map}
5594 5591
5595(fn)" t nil) 5592(fn)" t)
5596 (add-to-list 'auto-mode-alist '("\\.scss\\'" . scss-mode)) 5593 (add-to-list 'auto-mode-alist '("\\.scss\\'" . scss-mode))
5597(autoload 'scss-mode "css-mode" "\ 5594(autoload 'scss-mode "css-mode" "\
5598Major mode to edit \"Sassy CSS\" files. 5595Major mode to edit \"Sassy CSS\" files.
5599 5596
5600(fn)" t nil) 5597(fn)" t)
5601(autoload 'css-lookup-symbol "css-mode" "\ 5598(autoload 'css-lookup-symbol "css-mode" "\
5602Display the CSS documentation for SYMBOL, as found on MDN. 5599Display the CSS documentation for SYMBOL, as found on MDN.
5603When this command is used interactively, it picks a default 5600When this command is used interactively, it picks a default
@@ -5605,7 +5602,7 @@ symbol based on the CSS text before point -- either an @-keyword,
5605a property name, a pseudo-class, or a pseudo-element, depending 5602a property name, a pseudo-class, or a pseudo-element, depending
5606on what is seen near point. 5603on what is seen near point.
5607 5604
5608(fn SYMBOL)" t nil) 5605(fn SYMBOL)" t)
5609(register-definition-prefixes "css-mode" '("css-" "scss-")) 5606(register-definition-prefixes "css-mode" '("css-" "scss-"))
5610 5607
5611 5608
@@ -5664,11 +5661,11 @@ evaluate `(default-value \\='cua-mode)'.
5664The mode's hook is called both when the mode is enabled and when 5661The mode's hook is called both when the mode is enabled and when
5665it is disabled. 5662it is disabled.
5666 5663
5667(fn &optional ARG)" t nil) 5664(fn &optional ARG)" t)
5668(autoload 'cua-selection-mode "cua-base" "\ 5665(autoload 'cua-selection-mode "cua-base" "\
5669Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. 5666Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings.
5670 5667
5671(fn ARG)" t nil) 5668(fn ARG)" t)
5672(register-definition-prefixes "cua-base" '("cua-")) 5669(register-definition-prefixes "cua-base" '("cua-"))
5673 5670
5674 5671
@@ -5699,7 +5696,7 @@ evaluate `cua-rectangle-mark-mode'.
5699The mode's hook is called both when the mode is enabled and when 5696The mode's hook is called both when the mode is enabled and when
5700it is disabled. 5697it is disabled.
5701 5698
5702(fn &optional ARG)" t nil) 5699(fn &optional ARG)" t)
5703(register-definition-prefixes "cua-rect" '("cua-")) 5700(register-definition-prefixes "cua-rect" '("cua-"))
5704 5701
5705 5702
@@ -5727,7 +5724,7 @@ evaluate `cursor-intangible-mode'.
5727The mode's hook is called both when the mode is enabled and when 5724The mode's hook is called both when the mode is enabled and when
5728it is disabled. 5725it is disabled.
5729 5726
5730(fn &optional ARG)" t nil) 5727(fn &optional ARG)" t)
5731(autoload 'cursor-sensor-mode "cursor-sensor" "\ 5728(autoload 'cursor-sensor-mode "cursor-sensor" "\
5732Handle the `cursor-sensor-functions' text property. 5729Handle the `cursor-sensor-functions' text property.
5733 5730
@@ -5751,7 +5748,7 @@ evaluate `cursor-sensor-mode'.
5751The mode's hook is called both when the mode is enabled and when 5748The mode's hook is called both when the mode is enabled and when
5752it is disabled. 5749it is disabled.
5753 5750
5754(fn &optional ARG)" t nil) 5751(fn &optional ARG)" t)
5755(register-definition-prefixes "cursor-sensor" '("cursor-sensor-")) 5752(register-definition-prefixes "cursor-sensor" '("cursor-sensor-"))
5756 5753
5757 5754
@@ -5782,7 +5779,7 @@ If VARIABLE has a `custom-type' property, it must be a widget and the
5782 5779
5783If given a prefix (or a COMMENT argument), also prompt for a comment. 5780If given a prefix (or a COMMENT argument), also prompt for a comment.
5784 5781
5785(fn VARIABLE VALUE &optional COMMENT)" t nil) 5782(fn VARIABLE VALUE &optional COMMENT)" t)
5786(autoload 'customize-set-variable "cus-edit" "\ 5783(autoload 'customize-set-variable "cus-edit" "\
5787Set the default for VARIABLE to VALUE, and return VALUE. 5784Set the default for VARIABLE to VALUE, and return VALUE.
5788VALUE is a Lisp object. 5785VALUE is a Lisp object.
@@ -5798,7 +5795,7 @@ If VARIABLE has a `custom-type' property, it must be a widget and the
5798 5795
5799If given a prefix (or a COMMENT argument), also prompt for a comment. 5796If given a prefix (or a COMMENT argument), also prompt for a comment.
5800 5797
5801(fn VARIABLE VALUE &optional COMMENT)" t nil) 5798(fn VARIABLE VALUE &optional COMMENT)" t)
5802(autoload 'setopt "cus-edit" "\ 5799(autoload 'setopt "cus-edit" "\
5803Set VARIABLE/VALUE pairs, and return the final VALUE. 5800Set VARIABLE/VALUE pairs, and return the final VALUE.
5804This is like `setq', but is meant for user options instead of 5801This is like `setq', but is meant for user options instead of
@@ -5809,7 +5806,7 @@ plain variables. This means that `setopt' will execute any
5809(autoload 'setopt--set "cus-edit" "\ 5806(autoload 'setopt--set "cus-edit" "\
5810 5807
5811 5808
5812(fn VARIABLE VALUE)" nil nil) 5809(fn VARIABLE VALUE)")
5813(autoload 'customize-save-variable "cus-edit" "\ 5810(autoload 'customize-save-variable "cus-edit" "\
5814Set the default for VARIABLE to VALUE, and save it for future sessions. 5811Set the default for VARIABLE to VALUE, and save it for future sessions.
5815Return VALUE. 5812Return VALUE.
@@ -5825,7 +5822,7 @@ If VARIABLE has a `custom-type' property, it must be a widget and the
5825 5822
5826If given a prefix (or a COMMENT argument), also prompt for a comment. 5823If given a prefix (or a COMMENT argument), also prompt for a comment.
5827 5824
5828(fn VARIABLE VALUE &optional COMMENT)" t nil) 5825(fn VARIABLE VALUE &optional COMMENT)" t)
5829(autoload 'customize-push-and-save "cus-edit" "\ 5826(autoload 'customize-push-and-save "cus-edit" "\
5830Add ELTS to LIST-VAR and save for future sessions, safely. 5827Add ELTS to LIST-VAR and save for future sessions, safely.
5831ELTS should be a list. This function adds each entry to the 5828ELTS should be a list. This function adds each entry to the
@@ -5835,39 +5832,39 @@ If Emacs is initialized, call `customize-save-variable' to save
5835the resulting list value now. Otherwise, add an entry to 5832the resulting list value now. Otherwise, add an entry to
5836`after-init-hook' to save it after initialization. 5833`after-init-hook' to save it after initialization.
5837 5834
5838(fn LIST-VAR ELTS)" nil nil) 5835(fn LIST-VAR ELTS)")
5839(autoload 'customize "cus-edit" "\ 5836(autoload 'customize "cus-edit" "\
5840Select a customization buffer which you can use to set user options. 5837Select a customization buffer which you can use to set user options.
5841User options are structured into \"groups\". 5838User options are structured into \"groups\".
5842Initially the top-level group `Emacs' and its immediate subgroups 5839Initially the top-level group `Emacs' and its immediate subgroups
5843are shown; the contents of those subgroups are initially hidden." t nil) 5840are shown; the contents of those subgroups are initially hidden." t)
5844(autoload 'customize-mode "cus-edit" "\ 5841(autoload 'customize-mode "cus-edit" "\
5845Customize options related to a major or minor mode. 5842Customize options related to a major or minor mode.
5846By default the current major mode is used. With a prefix 5843By default the current major mode is used. With a prefix
5847argument or if the current major mode has no known group, prompt 5844argument or if the current major mode has no known group, prompt
5848for the MODE to customize. 5845for the MODE to customize.
5849 5846
5850(fn MODE)" t nil) 5847(fn MODE)" t)
5851(autoload 'customize-group "cus-edit" "\ 5848(autoload 'customize-group "cus-edit" "\
5852Customize GROUP, which must be a customization group. 5849Customize GROUP, which must be a customization group.
5853If OTHER-WINDOW is non-nil, display in another window. 5850If OTHER-WINDOW is non-nil, display in another window.
5854 5851
5855(fn &optional GROUP OTHER-WINDOW)" t nil) 5852(fn &optional GROUP OTHER-WINDOW)" t)
5856(autoload 'customize-group-other-window "cus-edit" "\ 5853(autoload 'customize-group-other-window "cus-edit" "\
5857Customize GROUP, which must be a customization group, in another window. 5854Customize GROUP, which must be a customization group, in another window.
5858 5855
5859(fn &optional GROUP)" t nil) 5856(fn &optional GROUP)" t)
5860(defalias 'customize-variable 'customize-option) 5857(defalias 'customize-variable 'customize-option)
5861(autoload 'customize-option "cus-edit" "\ 5858(autoload 'customize-option "cus-edit" "\
5862Customize SYMBOL, which must be a user option. 5859Customize SYMBOL, which must be a user option.
5863 5860
5864(fn SYMBOL)" t nil) 5861(fn SYMBOL)" t)
5865(defalias 'customize-variable-other-window 'customize-option-other-window) 5862(defalias 'customize-variable-other-window 'customize-option-other-window)
5866(autoload 'customize-option-other-window "cus-edit" "\ 5863(autoload 'customize-option-other-window "cus-edit" "\
5867Customize SYMBOL, which must be a user option. 5864Customize SYMBOL, which must be a user option.
5868Show the buffer in another window, but don't select it. 5865Show the buffer in another window, but don't select it.
5869 5866
5870(fn SYMBOL)" t nil) 5867(fn SYMBOL)" t)
5871(defvar customize-package-emacs-version-alist nil "\ 5868(defvar customize-package-emacs-version-alist nil "\
5872Alist mapping versions of a package to Emacs versions. 5869Alist mapping versions of a package to Emacs versions.
5873We use this for packages that have their own names, but are released 5870We use this for packages that have their own names, but are released
@@ -5909,7 +5906,7 @@ release.
5909With argument SINCE-VERSION (a string), customize all settings 5906With argument SINCE-VERSION (a string), customize all settings
5910that were added or redefined since that version. 5907that were added or redefined since that version.
5911 5908
5912(fn &optional SINCE-VERSION)" t nil) 5909(fn &optional SINCE-VERSION)" t)
5913(autoload 'customize-face "cus-edit" "\ 5910(autoload 'customize-face "cus-edit" "\
5914Customize FACE, which should be a face name or nil. 5911Customize FACE, which should be a face name or nil.
5915If FACE is nil, customize all faces. If FACE is actually a 5912If FACE is nil, customize all faces. If FACE is actually a
@@ -5920,7 +5917,7 @@ If OTHER-WINDOW is non-nil, display in another window.
5920Interactively, when point is on text which has a face specified, 5917Interactively, when point is on text which has a face specified,
5921suggest to customize that face, if it's customizable. 5918suggest to customize that face, if it's customizable.
5922 5919
5923(fn &optional FACE OTHER-WINDOW)" t nil) 5920(fn &optional FACE OTHER-WINDOW)" t)
5924(autoload 'customize-face-other-window "cus-edit" "\ 5921(autoload 'customize-face-other-window "cus-edit" "\
5925Show customization buffer for face FACE in other window. 5922Show customization buffer for face FACE in other window.
5926If FACE is actually a face-alias, customize the face it is aliased to. 5923If FACE is actually a face-alias, customize the face it is aliased to.
@@ -5928,13 +5925,13 @@ If FACE is actually a face-alias, customize the face it is aliased to.
5928Interactively, when point is on text which has a face specified, 5925Interactively, when point is on text which has a face specified,
5929suggest to customize that face, if it's customizable. 5926suggest to customize that face, if it's customizable.
5930 5927
5931(fn &optional FACE)" t nil) 5928(fn &optional FACE)" t)
5932(autoload 'customize-unsaved "cus-edit" "\ 5929(autoload 'customize-unsaved "cus-edit" "\
5933Customize all options and faces set in this session but not saved." t nil) 5930Customize all options and faces set in this session but not saved." t)
5934(autoload 'customize-rogue "cus-edit" "\ 5931(autoload 'customize-rogue "cus-edit" "\
5935Customize all user variables modified outside customize." t nil) 5932Customize all user variables modified outside customize." t)
5936(autoload 'customize-saved "cus-edit" "\ 5933(autoload 'customize-saved "cus-edit" "\
5937Customize all saved options and faces." t nil) 5934Customize all saved options and faces." t)
5938(autoload 'customize-apropos "cus-edit" "\ 5935(autoload 'customize-apropos "cus-edit" "\
5939Customize loaded options, faces and groups matching PATTERN. 5936Customize loaded options, faces and groups matching PATTERN.
5940PATTERN can be a word, a list of words (separated by spaces), 5937PATTERN can be a word, a list of words (separated by spaces),
@@ -5946,23 +5943,23 @@ If TYPE is `options', include only options.
5946If TYPE is `faces', include only faces. 5943If TYPE is `faces', include only faces.
5947If TYPE is `groups', include only groups. 5944If TYPE is `groups', include only groups.
5948 5945
5949(fn PATTERN &optional TYPE)" t nil) 5946(fn PATTERN &optional TYPE)" t)
5950(autoload 'customize-apropos-options "cus-edit" "\ 5947(autoload 'customize-apropos-options "cus-edit" "\
5951Customize all loaded customizable options matching REGEXP. 5948Customize all loaded customizable options matching REGEXP.
5952 5949
5953(fn REGEXP &optional IGNORED)" t nil) 5950(fn REGEXP &optional IGNORED)" t)
5954(autoload 'customize-apropos-faces "cus-edit" "\ 5951(autoload 'customize-apropos-faces "cus-edit" "\
5955Customize all loaded faces matching REGEXP. 5952Customize all loaded faces matching REGEXP.
5956 5953
5957(fn REGEXP)" t nil) 5954(fn REGEXP)" t)
5958(autoload 'customize-apropos-groups "cus-edit" "\ 5955(autoload 'customize-apropos-groups "cus-edit" "\
5959Customize all loaded groups matching REGEXP. 5956Customize all loaded groups matching REGEXP.
5960 5957
5961(fn REGEXP)" t nil) 5958(fn REGEXP)" t)
5962(autoload 'custom-prompt-customize-unsaved-options "cus-edit" "\ 5959(autoload 'custom-prompt-customize-unsaved-options "cus-edit" "\
5963Prompt user to customize any unsaved customization options. 5960Prompt user to customize any unsaved customization options.
5964Return nil if user chooses to customize, for use in 5961Return nil if user chooses to customize, for use in
5965`kill-emacs-query-functions'." nil nil) 5962`kill-emacs-query-functions'.")
5966(autoload 'custom-buffer-create "cus-edit" "\ 5963(autoload 'custom-buffer-create "cus-edit" "\
5967Create a buffer containing OPTIONS. 5964Create a buffer containing OPTIONS.
5968Optional NAME is the name of the buffer. 5965Optional NAME is the name of the buffer.
@@ -5971,7 +5968,7 @@ SYMBOL is a customization option, and WIDGET is a widget for editing
5971that option. 5968that option.
5972DESCRIPTION is unused. 5969DESCRIPTION is unused.
5973 5970
5974(fn OPTIONS &optional NAME DESCRIPTION)" nil nil) 5971(fn OPTIONS &optional NAME DESCRIPTION)")
5975(autoload 'custom-buffer-create-other-window "cus-edit" "\ 5972(autoload 'custom-buffer-create-other-window "cus-edit" "\
5976Create a buffer containing OPTIONS, and display it in another window. 5973Create a buffer containing OPTIONS, and display it in another window.
5977The result includes selecting that window. 5974The result includes selecting that window.
@@ -5981,11 +5978,11 @@ SYMBOL is a customization option, and WIDGET is a widget for editing
5981that option. 5978that option.
5982DESCRIPTION is unused. 5979DESCRIPTION is unused.
5983 5980
5984(fn OPTIONS &optional NAME DESCRIPTION)" nil nil) 5981(fn OPTIONS &optional NAME DESCRIPTION)")
5985(autoload 'customize-browse "cus-edit" "\ 5982(autoload 'customize-browse "cus-edit" "\
5986Create a tree browser for the customize hierarchy. 5983Create a tree browser for the customize hierarchy.
5987 5984
5988(fn &optional GROUP)" t nil) 5985(fn &optional GROUP)" t)
5989(defvar custom-file nil "\ 5986(defvar custom-file nil "\
5990File used for storing customization information. 5987File used for storing customization information.
5991The default is nil, which means to use your init file 5988The default is nil, which means to use your init file
@@ -6020,25 +6017,25 @@ file. Otherwise, Emacs will not load the file when it starts up,
6020and hence will not set `custom-file' to that file either.") 6017and hence will not set `custom-file' to that file either.")
6021(custom-autoload 'custom-file "cus-edit" t) 6018(custom-autoload 'custom-file "cus-edit" t)
6022(autoload 'custom-save-all "cus-edit" "\ 6019(autoload 'custom-save-all "cus-edit" "\
6023Save all customizations in `custom-file'." nil nil) 6020Save all customizations in `custom-file'.")
6024(autoload 'customize-save-customized "cus-edit" "\ 6021(autoload 'customize-save-customized "cus-edit" "\
6025Save all user options which have been set in this session." t nil) 6022Save all user options which have been set in this session." t)
6026(autoload 'custom-menu-create "cus-edit" "\ 6023(autoload 'custom-menu-create "cus-edit" "\
6027Create menu for customization group SYMBOL. 6024Create menu for customization group SYMBOL.
6028The menu is in a format applicable to `easy-menu-define'. 6025The menu is in a format applicable to `easy-menu-define'.
6029 6026
6030(fn SYMBOL)" nil nil) 6027(fn SYMBOL)")
6031(autoload 'customize-menu-create "cus-edit" "\ 6028(autoload 'customize-menu-create "cus-edit" "\
6032Return a customize menu for customization group SYMBOL. 6029Return a customize menu for customization group SYMBOL.
6033If optional NAME is given, use that as the name of the menu. 6030If optional NAME is given, use that as the name of the menu.
6034Otherwise the menu will be named `Customize'. 6031Otherwise the menu will be named `Customize'.
6035The format is suitable for use with `easy-menu-define'. 6032The format is suitable for use with `easy-menu-define'.
6036 6033
6037(fn SYMBOL &optional NAME)" nil nil) 6034(fn SYMBOL &optional NAME)")
6038(autoload 'customize-icon "cus-edit" "\ 6035(autoload 'customize-icon "cus-edit" "\
6039Customize ICON. 6036Customize ICON.
6040 6037
6041(fn ICON)" t nil) 6038(fn ICON)" t)
6042(autoload 'custom-set-icons "cus-edit" "\ 6039(autoload 'custom-set-icons "cus-edit" "\
6043Install user customizations of icon specs specified in ARGS. 6040Install user customizations of icon specs specified in ARGS.
6044These settings are registered as theme `user'. 6041These settings are registered as theme `user'.
@@ -6048,9 +6045,9 @@ The arguments should each be a list of the form:
6048 6045
6049This stores EXP (without evaluating it) as the saved spec for SYMBOL. 6046This stores EXP (without evaluating it) as the saved spec for SYMBOL.
6050 6047
6051(fn &rest ARGS)" nil nil) 6048(fn &rest ARGS)")
6052(autoload 'custom-save-icons "cus-edit" "\ 6049(autoload 'custom-save-icons "cus-edit" "\
6053Save all customized icons in `custom-file'." nil nil) 6050Save all customized icons in `custom-file'.")
6054(register-definition-prefixes "cus-edit" '("Custom-" "cus" "widget-")) 6051(register-definition-prefixes "cus-edit" '("Custom-" "cus" "widget-"))
6055 6052
6056 6053
@@ -6065,21 +6062,21 @@ from the Custom save file.
6065BUFFER, if non-nil, should be a buffer to use; the default is 6062BUFFER, if non-nil, should be a buffer to use; the default is
6066named *Custom Theme*. 6063named *Custom Theme*.
6067 6064
6068(fn &optional THEME BUFFER)" t nil) 6065(fn &optional THEME BUFFER)" t)
6069(autoload 'custom-theme-visit-theme "cus-theme" "\ 6066(autoload 'custom-theme-visit-theme "cus-theme" "\
6070Set up a Custom buffer to edit custom theme THEME. 6067Set up a Custom buffer to edit custom theme THEME.
6071 6068
6072(fn THEME)" t nil) 6069(fn THEME)" t)
6073(autoload 'describe-theme "cus-theme" "\ 6070(autoload 'describe-theme "cus-theme" "\
6074Display a description of the Custom theme THEME (a symbol). 6071Display a description of the Custom theme THEME (a symbol).
6075 6072
6076(fn THEME)" t nil) 6073(fn THEME)" t)
6077(autoload 'customize-themes "cus-theme" "\ 6074(autoload 'customize-themes "cus-theme" "\
6078Display a selectable list of Custom themes. 6075Display a selectable list of Custom themes.
6079When called from Lisp, BUFFER should be the buffer to use; if 6076When called from Lisp, BUFFER should be the buffer to use; if
6080omitted, a buffer named *Custom Themes* is used. 6077omitted, a buffer named *Custom Themes* is used.
6081 6078
6082(fn &optional BUFFER)" t nil) 6079(fn &optional BUFFER)" t)
6083(register-definition-prefixes "cus-theme" '("custom-" "describe-theme-1")) 6080(register-definition-prefixes "cus-theme" '("custom-" "describe-theme-1"))
6084 6081
6085 6082
@@ -6093,7 +6090,7 @@ omitted, a buffer named *Custom Themes* is used.
6093(autoload 'cvs-status-mode "cvs-status" "\ 6090(autoload 'cvs-status-mode "cvs-status" "\
6094Mode used for cvs status output. 6091Mode used for cvs status output.
6095 6092
6096(fn)" t nil) 6093(fn)" t)
6097(register-definition-prefixes "cvs-status" '("cvs-")) 6094(register-definition-prefixes "cvs-status" '("cvs-"))
6098 6095
6099 6096
@@ -6122,7 +6119,7 @@ evaluate `cwarn-mode'.
6122The mode's hook is called both when the mode is enabled and when 6119The mode's hook is called both when the mode is enabled and when
6123it is disabled. 6120it is disabled.
6124 6121
6125(fn &optional ARG)" t nil) 6122(fn &optional ARG)" t)
6126(put 'global-cwarn-mode 'globalized-minor-mode t) 6123(put 'global-cwarn-mode 'globalized-minor-mode t)
6127(defvar global-cwarn-mode nil "\ 6124(defvar global-cwarn-mode nil "\
6128Non-nil if Global Cwarn mode is enabled. 6125Non-nil if Global Cwarn mode is enabled.
@@ -6146,7 +6143,7 @@ Cwarn mode is enabled in all buffers where
6146 6143
6147See `cwarn-mode' for more information on Cwarn mode. 6144See `cwarn-mode' for more information on Cwarn mode.
6148 6145
6149(fn &optional ARG)" t nil) 6146(fn &optional ARG)" t)
6150(register-definition-prefixes "cwarn" '("cwarn-" "turn-on-cwarn-mode-if-enabled")) 6147(register-definition-prefixes "cwarn" '("cwarn-" "turn-on-cwarn-mode-if-enabled"))
6151 6148
6152 6149
@@ -6155,11 +6152,11 @@ See `cwarn-mode' for more information on Cwarn mode.
6155(autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ 6152(autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\
6156Return KOI8-R external character code of CHAR if appropriate. 6153Return KOI8-R external character code of CHAR if appropriate.
6157 6154
6158(fn CHAR)" nil nil) 6155(fn CHAR)")
6159(autoload 'cyrillic-encode-alternativnyj-char "cyril-util" "\ 6156(autoload 'cyrillic-encode-alternativnyj-char "cyril-util" "\
6160Return ALTERNATIVNYJ external character code of CHAR if appropriate. 6157Return ALTERNATIVNYJ external character code of CHAR if appropriate.
6161 6158
6162(fn CHAR)" nil nil) 6159(fn CHAR)")
6163(autoload 'standard-display-cyrillic-translit "cyril-util" "\ 6160(autoload 'standard-display-cyrillic-translit "cyril-util" "\
6164Display a Cyrillic buffer using a transliteration. 6161Display a Cyrillic buffer using a transliteration.
6165For readability, the table is slightly 6162For readability, the table is slightly
@@ -6171,7 +6168,7 @@ Possible values are listed in `cyrillic-language-alist'.
6171If the argument is t, we use the default cyrillic transliteration. 6168If the argument is t, we use the default cyrillic transliteration.
6172If the argument is nil, we return the display table to its standard state. 6169If the argument is nil, we return the display table to its standard state.
6173 6170
6174(fn &optional CYRILLIC-LANGUAGE)" t nil) 6171(fn &optional CYRILLIC-LANGUAGE)" t)
6175(register-definition-prefixes "cyril-util" '("cyrillic-language-alist")) 6172(register-definition-prefixes "cyril-util" '("cyrillic-language-alist"))
6176 6173
6177 6174
@@ -6193,7 +6190,7 @@ completions.
6193If the prefix argument is 16 (which comes from \\[universal-argument] \\[universal-argument]), 6190If the prefix argument is 16 (which comes from \\[universal-argument] \\[universal-argument]),
6194then it searches *all* buffers. 6191then it searches *all* buffers.
6195 6192
6196(fn &optional ARG)" t nil) 6193(fn &optional ARG)" t)
6197(autoload 'dabbrev-expand "dabbrev" "\ 6194(autoload 'dabbrev-expand "dabbrev" "\
6198Expand previous word \"dynamically\". 6195Expand previous word \"dynamically\".
6199 6196
@@ -6218,7 +6215,7 @@ direction of search to backward if set non-nil.
6218 6215
6219See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. 6216See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion].
6220 6217
6221(fn ARG)" t nil) 6218(fn ARG)" t)
6222(register-definition-prefixes "dabbrev" '("dabbrev-")) 6219(register-definition-prefixes "dabbrev" '("dabbrev-"))
6223 6220
6224 6221
@@ -6227,7 +6224,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion].
6227(autoload 'data-debug-new-buffer "data-debug" "\ 6224(autoload 'data-debug-new-buffer "data-debug" "\
6228Create a new data-debug buffer with NAME. 6225Create a new data-debug buffer with NAME.
6229 6226
6230(fn NAME)" nil nil) 6227(fn NAME)")
6231(register-definition-prefixes "data-debug" '("data-debug-")) 6228(register-definition-prefixes "data-debug" '("data-debug-"))
6232 6229
6233 6230
@@ -6294,14 +6291,14 @@ EVENT is a D-Bus event, see `dbus-check-event'. HANDLER, being
6294part of the event, is called with arguments ARGS (without type information). 6291part of the event, is called with arguments ARGS (without type information).
6295If the HANDLER returns a `dbus-error', it is propagated as return message. 6292If the HANDLER returns a `dbus-error', it is propagated as return message.
6296 6293
6297(fn EVENT)" t nil) 6294(fn EVENT)" t)
6298(function-put 'dbus-handle-event 'completion-predicate #'ignore) 6295(function-put 'dbus-handle-event 'completion-predicate #'ignore)
6299(autoload 'dbus-monitor "dbus" "\ 6296(autoload 'dbus-monitor "dbus" "\
6300Invoke `dbus-register-monitor' interactively, and switch to the buffer. 6297Invoke `dbus-register-monitor' interactively, and switch to the buffer.
6301BUS is either a Lisp keyword, `:system' or `:session', or a 6298BUS is either a Lisp keyword, `:system' or `:session', or a
6302string denoting the bus address. The value nil defaults to `:session'. 6299string denoting the bus address. The value nil defaults to `:session'.
6303 6300
6304(fn &optional BUS)" t nil) 6301(fn &optional BUS)" t)
6305(register-definition-prefixes "dbus" '("dbus-")) 6302(register-definition-prefixes "dbus" '("dbus-"))
6306 6303
6307 6304
@@ -6425,7 +6422,7 @@ $
6425There is some minimal font-lock support (see vars 6422There is some minimal font-lock support (see vars
6426`dcl-font-lock-defaults' and `dcl-font-lock-keywords'). 6423`dcl-font-lock-defaults' and `dcl-font-lock-keywords').
6427 6424
6428(fn)" t nil) 6425(fn)" t)
6429(register-definition-prefixes "dcl-mode" '("dcl-")) 6426(register-definition-prefixes "dcl-mode" '("dcl-"))
6430 6427
6431 6428
@@ -6444,7 +6441,7 @@ first will be printed into the backtrace buffer.
6444If `inhibit-redisplay' is non-nil when this function is called, 6441If `inhibit-redisplay' is non-nil when this function is called,
6445the debugger will not be entered. 6442the debugger will not be entered.
6446 6443
6447(fn &rest ARGS)" t nil) 6444(fn &rest ARGS)" t)
6448(autoload 'debug-on-entry "debug" "\ 6445(autoload 'debug-on-entry "debug" "\
6449Request FUNCTION to invoke debugger each time it is called. 6446Request FUNCTION to invoke debugger each time it is called.
6450 6447
@@ -6460,14 +6457,14 @@ primitive functions only works when that function is called from Lisp.
6460Use \\[cancel-debug-on-entry] to cancel the effect of this command. 6457Use \\[cancel-debug-on-entry] to cancel the effect of this command.
6461Redefining FUNCTION also cancels it. 6458Redefining FUNCTION also cancels it.
6462 6459
6463(fn FUNCTION)" t nil) 6460(fn FUNCTION)" t)
6464(autoload 'cancel-debug-on-entry "debug" "\ 6461(autoload 'cancel-debug-on-entry "debug" "\
6465Undo effect of \\[debug-on-entry] on FUNCTION. 6462Undo effect of \\[debug-on-entry] on FUNCTION.
6466If FUNCTION is nil, cancel `debug-on-entry' for all functions. 6463If FUNCTION is nil, cancel `debug-on-entry' for all functions.
6467When called interactively, prompt for FUNCTION in the minibuffer. 6464When called interactively, prompt for FUNCTION in the minibuffer.
6468To specify a nil argument interactively, exit with an empty minibuffer. 6465To specify a nil argument interactively, exit with an empty minibuffer.
6469 6466
6470(fn &optional FUNCTION)" t nil) 6467(fn &optional FUNCTION)" t)
6471(autoload 'debug-on-variable-change "debug" "\ 6468(autoload 'debug-on-variable-change "debug" "\
6472Trigger a debugger invocation when VARIABLE is changed. 6469Trigger a debugger invocation when VARIABLE is changed.
6473 6470
@@ -6486,7 +6483,7 @@ Use \\[cancel-debug-on-variable-change] to cancel the effect of
6486this command. Uninterning VARIABLE or making it an alias of 6483this command. Uninterning VARIABLE or making it an alias of
6487another symbol also cancels it. 6484another symbol also cancels it.
6488 6485
6489(fn VARIABLE)" t nil) 6486(fn VARIABLE)" t)
6490(defalias 'debug-watch #'debug-on-variable-change) 6487(defalias 'debug-watch #'debug-on-variable-change)
6491(autoload 'cancel-debug-on-variable-change "debug" "\ 6488(autoload 'cancel-debug-on-variable-change "debug" "\
6492Undo effect of \\[debug-on-variable-change] on VARIABLE. 6489Undo effect of \\[debug-on-variable-change] on VARIABLE.
@@ -6494,7 +6491,7 @@ If VARIABLE is nil, cancel `debug-on-variable-change' for all variables.
6494When called interactively, prompt for VARIABLE in the minibuffer. 6491When called interactively, prompt for VARIABLE in the minibuffer.
6495To specify a nil argument interactively, exit with an empty minibuffer. 6492To specify a nil argument interactively, exit with an empty minibuffer.
6496 6493
6497(fn &optional VARIABLE)" t nil) 6494(fn &optional VARIABLE)" t)
6498(defalias 'cancel-debug-watch #'cancel-debug-on-variable-change) 6495(defalias 'cancel-debug-watch #'cancel-debug-on-variable-change)
6499(register-definition-prefixes "debug" '("debug" "inhibit-debug-on-entry")) 6496(register-definition-prefixes "debug" '("debug" "inhibit-debug-on-entry"))
6500 6497
@@ -6517,7 +6514,7 @@ To specify a nil argument interactively, exit with an empty minibuffer.
6517;;; Generated autoloads from play/decipher.el 6514;;; Generated autoloads from play/decipher.el
6518 6515
6519(autoload 'decipher "decipher" "\ 6516(autoload 'decipher "decipher" "\
6520Format a buffer of ciphertext for cryptanalysis and enter Decipher mode." t nil) 6517Format a buffer of ciphertext for cryptanalysis and enter Decipher mode." t)
6521(autoload 'decipher-mode "decipher" "\ 6518(autoload 'decipher-mode "decipher" "\
6522Major mode for decrypting monoalphabetic substitution ciphers. 6519Major mode for decrypting monoalphabetic substitution ciphers.
6523Lower-case letters enter plaintext. 6520Lower-case letters enter plaintext.
@@ -6534,7 +6531,7 @@ The most useful commands are:
6534\\[decipher-make-checkpoint] Save the current cipher alphabet (checkpoint) 6531\\[decipher-make-checkpoint] Save the current cipher alphabet (checkpoint)
6535\\[decipher-restore-checkpoint] Restore a saved cipher alphabet (checkpoint) 6532\\[decipher-restore-checkpoint] Restore a saved cipher alphabet (checkpoint)
6536 6533
6537(fn)" t nil) 6534(fn)" t)
6538(register-definition-prefixes "decipher" '("decipher-")) 6535(register-definition-prefixes "decipher" '("decipher-"))
6539 6536
6540 6537
@@ -6546,7 +6543,7 @@ The most useful commands are:
6546;;; Generated autoloads from delim-col.el 6543;;; Generated autoloads from delim-col.el
6547 6544
6548(autoload 'delimit-columns-customize "delim-col" "\ 6545(autoload 'delimit-columns-customize "delim-col" "\
6549Customize the `columns' group." t nil) 6546Customize the `columns' group." t)
6550(autoload 'delimit-columns-region "delim-col" "\ 6547(autoload 'delimit-columns-region "delim-col" "\
6551Prettify all columns in a text region. 6548Prettify all columns in a text region.
6552 6549
@@ -6570,7 +6567,7 @@ See the `delimit-columns-str-before',
6570`delimit-columns-extra' variables for customization of the 6567`delimit-columns-extra' variables for customization of the
6571look. 6568look.
6572 6569
6573(fn START END)" t nil) 6570(fn START END)" t)
6574(autoload 'delimit-columns-rectangle "delim-col" "\ 6571(autoload 'delimit-columns-rectangle "delim-col" "\
6575Prettify all columns in a text rectangle. 6572Prettify all columns in a text rectangle.
6576 6573
@@ -6578,7 +6575,7 @@ See `delimit-columns-region' for what this entails.
6578 6575
6579START and END delimit the corners of the text rectangle. 6576START and END delimit the corners of the text rectangle.
6580 6577
6581(fn START END)" t nil) 6578(fn START END)" t)
6582(register-definition-prefixes "delim-col" '("delimit-columns-")) 6579(register-definition-prefixes "delim-col" '("delimit-columns-"))
6583 6580
6584 6581
@@ -6618,13 +6615,13 @@ evaluate `(default-value \\='delete-selection-mode)'.
6618The mode's hook is called both when the mode is enabled and when 6615The mode's hook is called both when the mode is enabled and when
6619it is disabled. 6616it is disabled.
6620 6617
6621(fn &optional ARG)" t nil) 6618(fn &optional ARG)" t)
6622(autoload 'delete-active-region "delsel" "\ 6619(autoload 'delete-active-region "delsel" "\
6623Delete the active region. 6620Delete the active region.
6624If KILLP is non-nil, or if called interactively with a prefix argument, 6621If KILLP is non-nil, or if called interactively with a prefix argument,
6625the active region is killed instead of deleted. 6622the active region is killed instead of deleted.
6626 6623
6627(fn &optional KILLP)" t nil) 6624(fn &optional KILLP)" t)
6628(register-definition-prefixes "delsel" '("del" "minibuffer-keyboard-quit")) 6625(register-definition-prefixes "delsel" '("del" "minibuffer-keyboard-quit"))
6629 6626
6630 6627
@@ -6703,7 +6700,7 @@ Right now, if they don't already exist, set up a blank keymap, an
6703empty syntax table, and an empty abbrev table -- these will be merged 6700empty syntax table, and an empty abbrev table -- these will be merged
6704the first time the mode is used. 6701the first time the mode is used.
6705 6702
6706(fn MODE)" nil nil) 6703(fn MODE)")
6707(register-definition-prefixes "derived" '("derived-mode-")) 6704(register-definition-prefixes "derived" '("derived-mode-"))
6708 6705
6709 6706
@@ -6717,7 +6714,7 @@ If optional second argument OUTPUT-BUFFER is non-nil,
6717insert the output into that buffer, and don't initialize or clear it 6714insert the output into that buffer, and don't initialize or clear it
6718otherwise. 6715otherwise.
6719 6716
6720(fn POS &optional OUTPUT-BUFFER BUFFER)" t nil) 6717(fn POS &optional OUTPUT-BUFFER BUFFER)" t)
6721(autoload 'describe-char "descr-text" "\ 6718(autoload 'describe-char "descr-text" "\
6722Describe position POS (interactively, point) and the char after POS. 6719Describe position POS (interactively, point) and the char after POS.
6723POS is taken to be in BUFFER, or the current buffer if BUFFER is nil. 6720POS is taken to be in BUFFER, or the current buffer if BUFFER is nil.
@@ -6744,7 +6741,7 @@ The character information includes:
6744 Unicode Data Base; 6741 Unicode Data Base;
6745 and widgets, buttons, overlays, and text properties relevant to POS. 6742 and widgets, buttons, overlays, and text properties relevant to POS.
6746 6743
6747(fn POS &optional BUFFER)" t nil) 6744(fn POS &optional BUFFER)" t)
6748(autoload 'describe-char-eldoc "descr-text" "\ 6745(autoload 'describe-char-eldoc "descr-text" "\
6749Return a description of character at point for use by ElDoc mode. 6746Return a description of character at point for use by ElDoc mode.
6750 6747
@@ -6758,7 +6755,7 @@ minibuffer window for width limit.
6758This function can be used as a value of 6755This function can be used as a value of
6759`eldoc-documentation-functions' variable. 6756`eldoc-documentation-functions' variable.
6760 6757
6761(fn CALLBACK &rest _)" nil nil) 6758(fn CALLBACK &rest _)")
6762(register-definition-prefixes "descr-text" '("describe-")) 6759(register-definition-prefixes "descr-text" '("describe-"))
6763 6760
6764 6761
@@ -6804,7 +6801,7 @@ evaluate `(default-value \\='desktop-save-mode)'.
6804The mode's hook is called both when the mode is enabled and when 6801The mode's hook is called both when the mode is enabled and when
6805it is disabled. 6802it is disabled.
6806 6803
6807(fn &optional ARG)" t nil) 6804(fn &optional ARG)" t)
6808(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) "\ 6805(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) "\
6809List of local variables to save for each buffer. 6806List of local variables to save for each buffer.
6810The variables are saved only when they really are local. Conventional minor 6807The variables are saved only when they really are local. Conventional minor
@@ -6913,7 +6910,7 @@ a regular expression in the list `desktop-clear-preserve-buffers'.
6913Furthermore, it clears the variables listed in `desktop-globals-to-clear'. 6910Furthermore, it clears the variables listed in `desktop-globals-to-clear'.
6914When called interactively and `desktop-restore-frames' is non-nil, it also 6911When called interactively and `desktop-restore-frames' is non-nil, it also
6915deletes all frames except the selected one (and its minibuffer frame, 6912deletes all frames except the selected one (and its minibuffer frame,
6916if different)." t nil) 6913if different)." t)
6917(autoload 'desktop-save "desktop" "\ 6914(autoload 'desktop-save "desktop" "\
6918Save the state of Emacs in a desktop file in directory DIRNAME. 6915Save the state of Emacs in a desktop file in directory DIRNAME.
6919Optional argument RELEASE non-nil says we're done with this 6916Optional argument RELEASE non-nil says we're done with this
@@ -6949,10 +6946,10 @@ In a non-interactive call, VERSION can be given as an integer, either
6949206 or 208, to specify the format version in which to save the file, 6946206 or 208, to specify the format version in which to save the file,
6950no questions asked. 6947no questions asked.
6951 6948
6952(fn DIRNAME &optional RELEASE ONLY-IF-CHANGED VERSION)" t nil) 6949(fn DIRNAME &optional RELEASE ONLY-IF-CHANGED VERSION)" t)
6953(autoload 'desktop-remove "desktop" "\ 6950(autoload 'desktop-remove "desktop" "\
6954Delete desktop file in `desktop-dirname'. 6951Delete desktop file in `desktop-dirname'.
6955This function also sets `desktop-dirname' to nil." t nil) 6952This function also sets `desktop-dirname' to nil." t)
6956(autoload 'desktop-read "desktop" "\ 6953(autoload 'desktop-read "desktop" "\
6957Read and process the desktop file in directory DIRNAME. 6954Read and process the desktop file in directory DIRNAME.
6958Look for a desktop file in DIRNAME, or if DIRNAME is omitted, look in 6955Look for a desktop file in DIRNAME, or if DIRNAME is omitted, look in
@@ -6963,18 +6960,18 @@ Interactively, with prefix arg \\[universal-argument], ask for DIRNAME.
6963This function is a no-op when Emacs is running in batch mode. 6960This function is a no-op when Emacs is running in batch mode.
6964It returns t if a desktop file was loaded, nil otherwise. 6961It returns t if a desktop file was loaded, nil otherwise.
6965 6962
6966(fn DIRNAME)" t nil) 6963(fn DIRNAME)" t)
6967(autoload 'desktop-change-dir "desktop" "\ 6964(autoload 'desktop-change-dir "desktop" "\
6968Change to desktop saved in DIRNAME. 6965Change to desktop saved in DIRNAME.
6969Kill the desktop as specified by variables `desktop-save-mode' and 6966Kill the desktop as specified by variables `desktop-save-mode' and
6970`desktop-save', then clear the desktop and load the desktop file in 6967`desktop-save', then clear the desktop and load the desktop file in
6971directory DIRNAME. 6968directory DIRNAME.
6972 6969
6973(fn DIRNAME)" t nil) 6970(fn DIRNAME)" t)
6974(autoload 'desktop-save-in-desktop-dir "desktop" "\ 6971(autoload 'desktop-save-in-desktop-dir "desktop" "\
6975Save the desktop in directory `desktop-dirname'." t nil) 6972Save the desktop in directory `desktop-dirname'." t)
6976(autoload 'desktop-revert "desktop" "\ 6973(autoload 'desktop-revert "desktop" "\
6977Revert to the last loaded desktop." t nil) 6974Revert to the last loaded desktop." t)
6978(register-definition-prefixes "desktop" '("desktop-")) 6975(register-definition-prefixes "desktop" '("desktop-"))
6979 6976
6980 6977
@@ -6992,26 +6989,26 @@ You can control what lines will be unwrapped by frobbing
6992indicating the minimum and maximum length of an unwrapped citation line. If 6989indicating the minimum and maximum length of an unwrapped citation line. If
6993NODISPLAY is non-nil, don't redisplay the article buffer. 6990NODISPLAY is non-nil, don't redisplay the article buffer.
6994 6991
6995(fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode) nil) 6992(fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode))
6996(autoload 'gnus-article-outlook-repair-attribution "deuglify" "\ 6993(autoload 'gnus-article-outlook-repair-attribution "deuglify" "\
6997Repair a broken attribution line. 6994Repair a broken attribution line.
6998If NODISPLAY is non-nil, don't redisplay the article buffer. 6995If NODISPLAY is non-nil, don't redisplay the article buffer.
6999 6996
7000(fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode) nil) 6997(fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode))
7001(autoload 'gnus-article-outlook-rearrange-citation "deuglify" "\ 6998(autoload 'gnus-article-outlook-rearrange-citation "deuglify" "\
7002Repair broken citations. 6999Repair broken citations.
7003If NODISPLAY is non-nil, don't redisplay the article buffer. 7000If NODISPLAY is non-nil, don't redisplay the article buffer.
7004 7001
7005(fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode) nil) 7002(fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode))
7006(autoload 'gnus-outlook-deuglify-article "deuglify" "\ 7003(autoload 'gnus-outlook-deuglify-article "deuglify" "\
7007Full deuglify of broken Outlook (Express) articles. 7004Full deuglify of broken Outlook (Express) articles.
7008Treat \"smartquotes\", unwrap lines, repair attribution and 7005Treat \"smartquotes\", unwrap lines, repair attribution and
7009rearrange citation. If NODISPLAY is non-nil, don't redisplay the 7006rearrange citation. If NODISPLAY is non-nil, don't redisplay the
7010article buffer. 7007article buffer.
7011 7008
7012(fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode) nil) 7009(fn &optional NODISPLAY)" '(gnus-article-mode gnus-summary-mode))
7013(autoload 'gnus-article-outlook-deuglify-article "deuglify" "\ 7010(autoload 'gnus-article-outlook-deuglify-article "deuglify" "\
7014Deuglify broken Outlook (Express) articles and redisplay." '(gnus-article-mode gnus-summary-mode) nil) 7011Deuglify broken Outlook (Express) articles and redisplay." '(gnus-article-mode gnus-summary-mode))
7015(register-definition-prefixes "deuglify" '("gnus-outlook-")) 7012(register-definition-prefixes "deuglify" '("gnus-outlook-"))
7016 7013
7017 7014
@@ -7028,7 +7025,7 @@ If no argument is provided, the number of days of diary entries is governed
7028by the variable `diary-number-of-entries'. A value of ARG less than 1 7025by the variable `diary-number-of-entries'. A value of ARG less than 1
7029does nothing. This function is suitable for execution in an init file. 7026does nothing. This function is suitable for execution in an init file.
7030 7027
7031(fn &optional ARG)" t nil) 7028(fn &optional ARG)" t)
7032(autoload 'diary-mail-entries "diary-lib" "\ 7029(autoload 'diary-mail-entries "diary-lib" "\
7033Send a mail message showing diary entries for next NDAYS days. 7030Send a mail message showing diary entries for next NDAYS days.
7034If no prefix argument is given, NDAYS is set to `diary-mail-days'. 7031If no prefix argument is given, NDAYS is set to `diary-mail-days'.
@@ -7051,11 +7048,11 @@ ensure that all relevant variables are set.
7051 7048
7052# diary-rem.el ends here 7049# diary-rem.el ends here
7053 7050
7054(fn &optional NDAYS)" t nil) 7051(fn &optional NDAYS)" t)
7055(autoload 'diary-mode "diary-lib" "\ 7052(autoload 'diary-mode "diary-lib" "\
7056Major mode for editing the diary file. 7053Major mode for editing the diary file.
7057 7054
7058(fn)" t nil) 7055(fn)" t)
7059(register-definition-prefixes "diary-lib" '("calendar-mark-" "diary-")) 7056(register-definition-prefixes "diary-lib" '("calendar-mark-" "diary-"))
7060 7057
7061 7058
@@ -7079,29 +7076,29 @@ This is a quick reference to this mode describing the default key bindings:
7079* \\[dictionary-select-dictionary] select the default dictionary 7076* \\[dictionary-select-dictionary] select the default dictionary
7080* \\[dictionary-select-strategy] select the default search strategy 7077* \\[dictionary-select-strategy] select the default search strategy
7081 7078
7082* \\`RET' or \\`<mouse-2>' visit that link" nil nil) 7079* \\`RET' or \\`<mouse-2>' visit that link")
7083(autoload 'dictionary "dictionary" "\ 7080(autoload 'dictionary "dictionary" "\
7084Create a new dictionary buffer and install `dictionary-mode'." t nil) 7081Create a new dictionary buffer and install `dictionary-mode'." t)
7085(autoload 'dictionary-search "dictionary" "\ 7082(autoload 'dictionary-search "dictionary" "\
7086Search the WORD in DICTIONARY if given or in all if nil. 7083Search the WORD in DICTIONARY if given or in all if nil.
7087It presents the selection or word at point as default input and 7084It presents the selection or word at point as default input and
7088allows editing it. 7085allows editing it.
7089 7086
7090(fn WORD &optional DICTIONARY)" t nil) 7087(fn WORD &optional DICTIONARY)" t)
7091(autoload 'dictionary-lookup-definition "dictionary" "\ 7088(autoload 'dictionary-lookup-definition "dictionary" "\
7092Unconditionally lookup the word at point." t nil) 7089Unconditionally lookup the word at point." t)
7093(autoload 'dictionary-match-words "dictionary" "\ 7090(autoload 'dictionary-match-words "dictionary" "\
7094Search PATTERN in current default dictionary using default strategy. 7091Search PATTERN in current default dictionary using default strategy.
7095 7092
7096(fn &optional PATTERN &rest IGNORED)" t nil) 7093(fn &optional PATTERN &rest IGNORED)" t)
7097(autoload 'dictionary-mouse-popup-matching-words "dictionary" "\ 7094(autoload 'dictionary-mouse-popup-matching-words "dictionary" "\
7098Display entries matching the word at the cursor retrieved using EVENT. 7095Display entries matching the word at the cursor retrieved using EVENT.
7099 7096
7100(fn EVENT)" t nil) 7097(fn EVENT)" t)
7101(autoload 'dictionary-popup-matching-words "dictionary" "\ 7098(autoload 'dictionary-popup-matching-words "dictionary" "\
7102Display entries matching WORD or the current word if not given. 7099Display entries matching WORD or the current word if not given.
7103 7100
7104(fn &optional WORD)" t nil) 7101(fn &optional WORD)" t)
7105(autoload 'dictionary-tooltip-mode "dictionary" "\ 7102(autoload 'dictionary-tooltip-mode "dictionary" "\
7106Display tooltips for the current word. 7103Display tooltips for the current word.
7107 7104
@@ -7109,7 +7106,7 @@ This function can be used to enable or disable the tooltip mode
7109for the current buffer (based on ARG). If global-tooltip-mode is 7106for the current buffer (based on ARG). If global-tooltip-mode is
7110active it will overwrite that mode for the current buffer. 7107active it will overwrite that mode for the current buffer.
7111 7108
7112(fn &optional ARG)" t nil) 7109(fn &optional ARG)" t)
7113(autoload 'global-dictionary-tooltip-mode "dictionary" "\ 7110(autoload 'global-dictionary-tooltip-mode "dictionary" "\
7114Enable/disable `dictionary-tooltip-mode' for all buffers. 7111Enable/disable `dictionary-tooltip-mode' for all buffers.
7115 7112
@@ -7119,14 +7116,14 @@ It can be overwritten for each buffer using `dictionary-tooltip-mode'.
7119Note: (global-dictionary-tooltip-mode 0) will not disable the mode 7116Note: (global-dictionary-tooltip-mode 0) will not disable the mode
7120any buffer where (dictionary-tooltip-mode 1) has been called. 7117any buffer where (dictionary-tooltip-mode 1) has been called.
7121 7118
7122(fn &optional ARG)" t nil) 7119(fn &optional ARG)" t)
7123(autoload 'dictionary-context-menu "dictionary" "\ 7120(autoload 'dictionary-context-menu "dictionary" "\
7124Populate MENU with dictionary commands at CLICK. 7121Populate MENU with dictionary commands at CLICK.
7125When you add this function to `context-menu-functions', 7122When you add this function to `context-menu-functions',
7126the context menu will contain an item that searches 7123the context menu will contain an item that searches
7127the word at mouse click. 7124the word at mouse click.
7128 7125
7129(fn MENU CLICK)" nil nil) 7126(fn MENU CLICK)")
7130(register-definition-prefixes "dictionary" '("dictionary-" "global-dictionary-tooltip-mode")) 7127(register-definition-prefixes "dictionary" '("dictionary-" "global-dictionary-tooltip-mode"))
7131 7128
7132 7129
@@ -7167,7 +7164,7 @@ command.
7167 7164
7168Non-interactively, OLD and NEW may each be a file or a buffer. 7165Non-interactively, OLD and NEW may each be a file or a buffer.
7169 7166
7170(fn OLD NEW &optional SWITCHES NO-ASYNC)" t nil) 7167(fn OLD NEW &optional SWITCHES NO-ASYNC)" t)
7171(autoload 'diff-backup "diff" "\ 7168(autoload 'diff-backup "diff" "\
7172Diff this file with its backup file or vice versa. 7169Diff this file with its backup file or vice versa.
7173Uses the latest backup, if there are several numerical backups. 7170Uses the latest backup, if there are several numerical backups.
@@ -7175,16 +7172,16 @@ If this file is a backup, diff it with its original.
7175The backup file is the first file given to `diff'. 7172The backup file is the first file given to `diff'.
7176With prefix arg SWITCHES, prompt for diff switches. 7173With prefix arg SWITCHES, prompt for diff switches.
7177 7174
7178(fn FILE &optional SWITCHES)" t nil) 7175(fn FILE &optional SWITCHES)" t)
7179(autoload 'diff-latest-backup-file "diff" "\ 7176(autoload 'diff-latest-backup-file "diff" "\
7180Return the latest existing backup of file FN, or nil. 7177Return the latest existing backup of file FN, or nil.
7181 7178
7182(fn FN)" nil nil) 7179(fn FN)")
7183(autoload 'diff-buffer-with-file "diff" "\ 7180(autoload 'diff-buffer-with-file "diff" "\
7184View the differences between BUFFER and its associated file. 7181View the differences between BUFFER and its associated file.
7185This requires the external program `diff' to be in your `exec-path'. 7182This requires the external program `diff' to be in your `exec-path'.
7186 7183
7187(fn &optional BUFFER)" t nil) 7184(fn &optional BUFFER)" t)
7188(autoload 'diff-buffers "diff" "\ 7185(autoload 'diff-buffers "diff" "\
7189Find and display the differences between OLD and NEW buffers. 7186Find and display the differences between OLD and NEW buffers.
7190 7187
@@ -7202,7 +7199,7 @@ OLD and NEW may each be a buffer or a buffer name.
7202 7199
7203Also see the `diff-entire-buffers' variable. 7200Also see the `diff-entire-buffers' variable.
7204 7201
7205(fn OLD NEW &optional SWITCHES NO-ASYNC)" t nil) 7202(fn OLD NEW &optional SWITCHES NO-ASYNC)" t)
7206(register-definition-prefixes "diff" '("diff-")) 7203(register-definition-prefixes "diff" '("diff-"))
7207 7204
7208 7205
@@ -7223,7 +7220,7 @@ a diff with \\[diff-reverse-direction].
7223 7220
7224\\{diff-mode-map} 7221\\{diff-mode-map}
7225 7222
7226(fn)" t nil) 7223(fn)" t)
7227(autoload 'diff-minor-mode "diff-mode" "\ 7224(autoload 'diff-minor-mode "diff-mode" "\
7228Toggle Diff minor mode. 7225Toggle Diff minor mode.
7229 7226
@@ -7243,7 +7240,7 @@ evaluate `diff-minor-mode'.
7243The mode's hook is called both when the mode is enabled and when 7240The mode's hook is called both when the mode is enabled and when
7244it is disabled. 7241it is disabled.
7245 7242
7246(fn &optional ARG)" t nil) 7243(fn &optional ARG)" t)
7247(register-definition-prefixes "diff-mode" '("diff-")) 7244(register-definition-prefixes "diff-mode" '("diff-"))
7248 7245
7249 7246
@@ -7258,7 +7255,7 @@ If given a \\[universal-argument] prefix, also prompt for the QUERY-TYPE paramet
7258 7255
7259If given a \\[universal-argument] \\[universal-argument] prefix, also prompt for the SERVER parameter. 7256If given a \\[universal-argument] \\[universal-argument] prefix, also prompt for the SERVER parameter.
7260 7257
7261(fn DOMAIN &optional QUERY-TYPE QUERY-CLASS QUERY-OPTION DIG-OPTION SERVER)" t nil) 7258(fn DOMAIN &optional QUERY-TYPE QUERY-CLASS QUERY-OPTION DIG-OPTION SERVER)" t)
7262(register-definition-prefixes "dig" '("dig-")) 7259(register-definition-prefixes "dig" '("dig-"))
7263 7260
7264 7261
@@ -7316,26 +7313,26 @@ Type \\[describe-mode] after entering Dired for more info.
7316 7313
7317If DIRNAME is already in a Dired buffer, that buffer is used without refresh. 7314If DIRNAME is already in a Dired buffer, that buffer is used without refresh.
7318 7315
7319(fn DIRNAME &optional SWITCHES)" t nil) 7316(fn DIRNAME &optional SWITCHES)" t)
7320 (define-key ctl-x-4-map "d" 'dired-other-window) 7317 (define-key ctl-x-4-map "d" 'dired-other-window)
7321(autoload 'dired-other-window "dired" "\ 7318(autoload 'dired-other-window "dired" "\
7322\"Edit\" directory DIRNAME. Like `dired' but select in another window. 7319\"Edit\" directory DIRNAME. Like `dired' but select in another window.
7323 7320
7324(fn DIRNAME &optional SWITCHES)" t nil) 7321(fn DIRNAME &optional SWITCHES)" t)
7325 (define-key ctl-x-5-map "d" 'dired-other-frame) 7322 (define-key ctl-x-5-map "d" 'dired-other-frame)
7326(autoload 'dired-other-frame "dired" "\ 7323(autoload 'dired-other-frame "dired" "\
7327\"Edit\" directory DIRNAME. Like `dired' but make a new frame. 7324\"Edit\" directory DIRNAME. Like `dired' but make a new frame.
7328 7325
7329(fn DIRNAME &optional SWITCHES)" t nil) 7326(fn DIRNAME &optional SWITCHES)" t)
7330 (define-key tab-prefix-map "d" 'dired-other-tab) 7327 (define-key tab-prefix-map "d" 'dired-other-tab)
7331(autoload 'dired-other-tab "dired" "\ 7328(autoload 'dired-other-tab "dired" "\
7332\"Edit\" directory DIRNAME. Like `dired' but make a new tab. 7329\"Edit\" directory DIRNAME. Like `dired' but make a new tab.
7333 7330
7334(fn DIRNAME &optional SWITCHES)" t nil) 7331(fn DIRNAME &optional SWITCHES)" t)
7335(autoload 'dired-noselect "dired" "\ 7332(autoload 'dired-noselect "dired" "\
7336Like `dired' but return the Dired buffer as value, do not select it. 7333Like `dired' but return the Dired buffer as value, do not select it.
7337 7334
7338(fn DIR-OR-LIST &optional SWITCHES)" nil nil) 7335(fn DIR-OR-LIST &optional SWITCHES)")
7339(autoload 'dired-mode "dired" "\ 7336(autoload 'dired-mode "dired" "\
7340Mode for \"editing\" directory listings. 7337Mode for \"editing\" directory listings.
7341In Dired, you are \"editing\" a list of the files in a directory and 7338In Dired, you are \"editing\" a list of the files in a directory and
@@ -7386,7 +7383,7 @@ This mode runs the following hooks:
7386Keybindings: 7383Keybindings:
7387\\{dired-mode-map} 7384\\{dired-mode-map}
7388 7385
7389(fn &optional DIRNAME SWITCHES)" nil nil) 7386(fn &optional DIRNAME SWITCHES)")
7390 (put 'dired-find-alternate-file 'disabled t) 7387 (put 'dired-find-alternate-file 'disabled t)
7391(autoload 'dired-jump "dired" "\ 7388(autoload 'dired-jump "dired" "\
7392Jump to Dired buffer corresponding to current buffer. 7389Jump to Dired buffer corresponding to current buffer.
@@ -7404,11 +7401,11 @@ When OTHER-WINDOW is non-nil, jump to Dired buffer in other window.
7404When FILE-NAME is non-nil, jump to its line in Dired. 7401When FILE-NAME is non-nil, jump to its line in Dired.
7405Interactively with prefix argument, read FILE-NAME. 7402Interactively with prefix argument, read FILE-NAME.
7406 7403
7407(fn &optional OTHER-WINDOW FILE-NAME)" t nil) 7404(fn &optional OTHER-WINDOW FILE-NAME)" t)
7408(autoload 'dired-jump-other-window "dired" "\ 7405(autoload 'dired-jump-other-window "dired" "\
7409Like \\[dired-jump] (`dired-jump') but in other window. 7406Like \\[dired-jump] (`dired-jump') but in other window.
7410 7407
7411(fn &optional FILE-NAME)" t nil) 7408(fn &optional FILE-NAME)" t)
7412(register-definition-prefixes "dired" '("dired-")) 7409(register-definition-prefixes "dired" '("dired-"))
7413 7410
7414 7411
@@ -7449,7 +7446,7 @@ evaluate `dirtrack-mode'.
7449The mode's hook is called both when the mode is enabled and when 7446The mode's hook is called both when the mode is enabled and when
7450it is disabled. 7447it is disabled.
7451 7448
7452(fn &optional ARG)" t nil) 7449(fn &optional ARG)" t)
7453(autoload 'dirtrack "dirtrack" "\ 7450(autoload 'dirtrack "dirtrack" "\
7454Determine the current directory from the process output for a prompt. 7451Determine the current directory from the process output for a prompt.
7455This filter function is used by `dirtrack-mode'. It looks for 7452This filter function is used by `dirtrack-mode'. It looks for
@@ -7457,7 +7454,7 @@ the prompt specified by `dirtrack-list', and calls
7457`shell-process-cd' if the directory seems to have changed away 7454`shell-process-cd' if the directory seems to have changed away
7458from `default-directory'. 7455from `default-directory'.
7459 7456
7460(fn INPUT)" nil nil) 7457(fn INPUT)")
7461(register-definition-prefixes "dirtrack" '("dirtrack-")) 7458(register-definition-prefixes "dirtrack" '("dirtrack-"))
7462 7459
7463 7460
@@ -7470,34 +7467,34 @@ OBJECT can be a symbol defined as a function, or a function itself
7470If OBJECT is not already compiled, we compile it, but do not 7467If OBJECT is not already compiled, we compile it, but do not
7471redefine OBJECT if it is a symbol. 7468redefine OBJECT if it is a symbol.
7472 7469
7473(fn OBJECT &optional BUFFER INDENT INTERACTIVE-P)" t nil) 7470(fn OBJECT &optional BUFFER INDENT INTERACTIVE-P)" t)
7474(register-definition-prefixes "disass" '("disassemble-")) 7471(register-definition-prefixes "disass" '("disassemble-"))
7475 7472
7476 7473
7477;;; Generated autoloads from disp-table.el 7474;;; Generated autoloads from disp-table.el
7478 7475
7479(autoload 'make-display-table "disp-table" "\ 7476(autoload 'make-display-table "disp-table" "\
7480Return a new, empty display table." nil nil) 7477Return a new, empty display table.")
7481(autoload 'display-table-slot "disp-table" "\ 7478(autoload 'display-table-slot "disp-table" "\
7482Return the value of the extra slot in DISPLAY-TABLE named SLOT. 7479Return the value of the extra slot in DISPLAY-TABLE named SLOT.
7483SLOT may be a number from 0 to 5 inclusive, or a slot name (symbol). 7480SLOT may be a number from 0 to 5 inclusive, or a slot name (symbol).
7484Valid symbols are `truncation', `wrap', `escape', `control', 7481Valid symbols are `truncation', `wrap', `escape', `control',
7485`selective-display', and `vertical-border'. 7482`selective-display', and `vertical-border'.
7486 7483
7487(fn DISPLAY-TABLE SLOT)" nil nil) 7484(fn DISPLAY-TABLE SLOT)")
7488(autoload 'set-display-table-slot "disp-table" "\ 7485(autoload 'set-display-table-slot "disp-table" "\
7489Set the value of the extra slot in DISPLAY-TABLE named SLOT to VALUE. 7486Set the value of the extra slot in DISPLAY-TABLE named SLOT to VALUE.
7490SLOT may be a number from 0 to 5 inclusive, or a name (symbol). 7487SLOT may be a number from 0 to 5 inclusive, or a name (symbol).
7491Valid symbols are `truncation', `wrap', `escape', `control', 7488Valid symbols are `truncation', `wrap', `escape', `control',
7492`selective-display', and `vertical-border'. 7489`selective-display', and `vertical-border'.
7493 7490
7494(fn DISPLAY-TABLE SLOT VALUE)" nil nil) 7491(fn DISPLAY-TABLE SLOT VALUE)")
7495(autoload 'describe-display-table "disp-table" "\ 7492(autoload 'describe-display-table "disp-table" "\
7496Describe the display table DT in a help buffer. 7493Describe the display table DT in a help buffer.
7497 7494
7498(fn DT)" nil nil) 7495(fn DT)")
7499(autoload 'describe-current-display-table "disp-table" "\ 7496(autoload 'describe-current-display-table "disp-table" "\
7500Describe the display table in use in the selected window and buffer." t nil) 7497Describe the display table in use in the selected window and buffer." t)
7501(autoload 'standard-display-8bit "disp-table" "\ 7498(autoload 'standard-display-8bit "disp-table" "\
7502Display characters representing raw bytes in the range L to H literally. 7499Display characters representing raw bytes in the range L to H literally.
7503 7500
@@ -7511,47 +7508,47 @@ byte.
7511Note that ASCII printable characters (SPC to TILDA) are displayed 7508Note that ASCII printable characters (SPC to TILDA) are displayed
7512in the default way after this call. 7509in the default way after this call.
7513 7510
7514(fn L H)" nil nil) 7511(fn L H)")
7515(autoload 'standard-display-default "disp-table" "\ 7512(autoload 'standard-display-default "disp-table" "\
7516Display characters in the range L to H using the default notation. 7513Display characters in the range L to H using the default notation.
7517 7514
7518(fn L H)" nil nil) 7515(fn L H)")
7519(autoload 'standard-display-ascii "disp-table" "\ 7516(autoload 'standard-display-ascii "disp-table" "\
7520Display character C using printable string S. 7517Display character C using printable string S.
7521 7518
7522(fn C S)" nil nil) 7519(fn C S)")
7523(autoload 'standard-display-g1 "disp-table" "\ 7520(autoload 'standard-display-g1 "disp-table" "\
7524Display character C as character SC in the g1 character set. 7521Display character C as character SC in the g1 character set.
7525This function assumes that your terminal uses the SO/SI characters; 7522This function assumes that your terminal uses the SO/SI characters;
7526it is meaningless for a graphical frame. 7523it is meaningless for a graphical frame.
7527 7524
7528(fn C SC)" nil nil) 7525(fn C SC)")
7529(autoload 'standard-display-graphic "disp-table" "\ 7526(autoload 'standard-display-graphic "disp-table" "\
7530Display character C as character GC in graphics character set. 7527Display character C as character GC in graphics character set.
7531This function assumes VT100-compatible escapes; it is meaningless 7528This function assumes VT100-compatible escapes; it is meaningless
7532for a graphical frame. 7529for a graphical frame.
7533 7530
7534(fn C GC)" nil nil) 7531(fn C GC)")
7535(autoload 'standard-display-underline "disp-table" "\ 7532(autoload 'standard-display-underline "disp-table" "\
7536Display character C as character UC plus underlining. 7533Display character C as character UC plus underlining.
7537 7534
7538(fn C UC)" nil nil) 7535(fn C UC)")
7539(autoload 'create-glyph "disp-table" "\ 7536(autoload 'create-glyph "disp-table" "\
7540Allocate a glyph code to display by sending STRING to the terminal. 7537Allocate a glyph code to display by sending STRING to the terminal.
7541 7538
7542(fn STRING)" nil nil) 7539(fn STRING)")
7543(autoload 'make-glyph-code "disp-table" "\ 7540(autoload 'make-glyph-code "disp-table" "\
7544Return a glyph code representing char CHAR with face FACE. 7541Return a glyph code representing char CHAR with face FACE.
7545 7542
7546(fn CHAR &optional FACE)" nil nil) 7543(fn CHAR &optional FACE)")
7547(autoload 'glyph-char "disp-table" "\ 7544(autoload 'glyph-char "disp-table" "\
7548Return the character of glyph code GLYPH. 7545Return the character of glyph code GLYPH.
7549 7546
7550(fn GLYPH)" nil nil) 7547(fn GLYPH)")
7551(autoload 'glyph-face "disp-table" "\ 7548(autoload 'glyph-face "disp-table" "\
7552Return the face of glyph code GLYPH, or nil if glyph has default face. 7549Return the face of glyph code GLYPH, or nil if glyph has default face.
7553 7550
7554(fn GLYPH)" nil nil) 7551(fn GLYPH)")
7555(autoload 'standard-display-european "disp-table" "\ 7552(autoload 'standard-display-european "disp-table" "\
7556Semi-obsolete way to toggle display of ISO 8859 European characters. 7553Semi-obsolete way to toggle display of ISO 8859 European characters.
7557 7554
@@ -7571,7 +7568,7 @@ from Lisp code also selects Latin-1 as the language environment.
7571This provides increased compatibility for users who call this function 7568This provides increased compatibility for users who call this function
7572in `.emacs'. 7569in `.emacs'.
7573 7570
7574(fn ARG)" nil nil) 7571(fn ARG)")
7575(register-definition-prefixes "disp-table" '("display-table-print-array")) 7572(register-definition-prefixes "disp-table" '("display-table-print-array"))
7576 7573
7577 7574
@@ -7604,7 +7601,7 @@ evaluate `display-fill-column-indicator-mode'.
7604The mode's hook is called both when the mode is enabled and when 7601The mode's hook is called both when the mode is enabled and when
7605it is disabled. 7602it is disabled.
7606 7603
7607(fn &optional ARG)" t nil) 7604(fn &optional ARG)" t)
7608(put 'global-display-fill-column-indicator-mode 'globalized-minor-mode t) 7605(put 'global-display-fill-column-indicator-mode 'globalized-minor-mode t)
7609(defvar global-display-fill-column-indicator-mode nil "\ 7606(defvar global-display-fill-column-indicator-mode nil "\
7610Non-nil if Global Display-Fill-Column-Indicator mode is enabled. 7607Non-nil if Global Display-Fill-Column-Indicator mode is enabled.
@@ -7632,7 +7629,7 @@ Display-Fill-Column-Indicator mode.
7632`global-display-fill-column-indicator-modes' is used to control which 7629`global-display-fill-column-indicator-modes' is used to control which
7633modes this minor mode is used in. 7630modes this minor mode is used in.
7634 7631
7635(fn &optional ARG)" t nil) 7632(fn &optional ARG)" t)
7636(defvar global-display-fill-column-indicator-modes '((not special-mode) t) "\ 7633(defvar global-display-fill-column-indicator-modes '((not special-mode) t) "\
7637Which major modes `display-fill-column-indicator-mode' is switched on in. 7634Which major modes `display-fill-column-indicator-mode' is switched on in.
7638This variable can be either t (all major modes), nil (no major modes), 7635This variable can be either t (all major modes), nil (no major modes),
@@ -7676,7 +7673,7 @@ evaluate `display-line-numbers-mode'.
7676The mode's hook is called both when the mode is enabled and when 7673The mode's hook is called both when the mode is enabled and when
7677it is disabled. 7674it is disabled.
7678 7675
7679(fn &optional ARG)" t nil) 7676(fn &optional ARG)" t)
7680(put 'global-display-line-numbers-mode 'globalized-minor-mode t) 7677(put 'global-display-line-numbers-mode 'globalized-minor-mode t)
7681(defvar global-display-line-numbers-mode nil "\ 7678(defvar global-display-line-numbers-mode nil "\
7682Non-nil if Global Display-Line-Numbers mode is enabled. 7679Non-nil if Global Display-Line-Numbers mode is enabled.
@@ -7701,7 +7698,7 @@ Display-Line-Numbers mode is enabled in all buffers where
7701See `display-line-numbers-mode' for more information on 7698See `display-line-numbers-mode' for more information on
7702Display-Line-Numbers mode. 7699Display-Line-Numbers mode.
7703 7700
7704(fn &optional ARG)" t nil) 7701(fn &optional ARG)" t)
7705(defvar header-line-indent "" "\ 7702(defvar header-line-indent "" "\
7706String to indent at the start if the header line. 7703String to indent at the start if the header line.
7707This is used in `header-line-indent-mode', and buffers that have 7704This is used in `header-line-indent-mode', and buffers that have
@@ -7748,7 +7745,7 @@ evaluate `header-line-indent-mode'.
7748The mode's hook is called both when the mode is enabled and when 7745The mode's hook is called both when the mode is enabled and when
7749it is disabled. 7746it is disabled.
7750 7747
7751(fn &optional ARG)" t nil) 7748(fn &optional ARG)" t)
7752(register-definition-prefixes "display-line-numbers" '("display-line-numbers-" "header-line-indent--")) 7749(register-definition-prefixes "display-line-numbers" '("display-line-numbers-" "header-line-indent--"))
7753 7750
7754 7751
@@ -7763,7 +7760,7 @@ If ARG is positive, require ARG chars of continuity.
7763If ARG is negative, require -ARG words of continuity. 7760If ARG is negative, require -ARG words of continuity.
7764Default is 2. 7761Default is 2.
7765 7762
7766(fn &optional ARG)" t nil) 7763(fn &optional ARG)" t)
7767 7764
7768 7765
7769;;; Generated autoloads from dnd.el 7766;;; Generated autoloads from dnd.el
@@ -7791,7 +7788,7 @@ Query a DNS server for NAME of TYPE.
7791If FULL, return the entire record returned. 7788If FULL, return the entire record returned.
7792If REVERSE, look up an IP address. 7789If REVERSE, look up an IP address.
7793 7790
7794(fn NAME &optional TYPE FULL REVERSE)" nil nil) 7791(fn NAME &optional TYPE FULL REVERSE)")
7795(register-definition-prefixes "dns" '("dns-")) 7792(register-definition-prefixes "dns" '("dns-"))
7796 7793
7797 7794
@@ -7807,10 +7804,10 @@ table and its own syntax table.
7807 7804
7808Turning on DNS mode runs `dns-mode-hook'. 7805Turning on DNS mode runs `dns-mode-hook'.
7809 7806
7810(fn)" t nil) 7807(fn)" t)
7811 (defalias 'zone-mode 'dns-mode) 7808 (defalias 'zone-mode 'dns-mode)
7812(autoload 'dns-mode-soa-increment-serial "dns-mode" "\ 7809(autoload 'dns-mode-soa-increment-serial "dns-mode" "\
7813Locate SOA record and increment the serial field." t nil) 7810Locate SOA record and increment the serial field." t)
7814(register-definition-prefixes "dns-mode" '("dns-mode-")) 7811(register-definition-prefixes "dns-mode" '("dns-mode-"))
7815 7812
7816 7813
@@ -7826,7 +7823,7 @@ Return non-nil if document type TYPE is available for `doc-view'.
7826Document types are symbols like `dvi', `ps', `pdf', `epub', 7823Document types are symbols like `dvi', `ps', `pdf', `epub',
7827`cbz', `fb2', `xps', `oxps', or`odf' (any OpenDocument format). 7824`cbz', `fb2', `xps', `oxps', or`odf' (any OpenDocument format).
7828 7825
7829(fn TYPE)" nil nil) 7826(fn TYPE)")
7830(autoload 'doc-view-mode "doc-view" "\ 7827(autoload 'doc-view-mode "doc-view" "\
7831Major mode in DocView buffers. 7828Major mode in DocView buffers.
7832 7829
@@ -7835,11 +7832,11 @@ and DVI files (as PNG images) in Emacs buffers.
7835 7832
7836You can use \\<doc-view-mode-map>\\[doc-view-toggle-display] to 7833You can use \\<doc-view-mode-map>\\[doc-view-toggle-display] to
7837toggle between displaying the document or editing it as text. 7834toggle between displaying the document or editing it as text.
7838\\{doc-view-mode-map}" t nil) 7835\\{doc-view-mode-map}" t)
7839(autoload 'doc-view-mode-maybe "doc-view" "\ 7836(autoload 'doc-view-mode-maybe "doc-view" "\
7840Switch to `doc-view-mode' if possible. 7837Switch to `doc-view-mode' if possible.
7841If the required external tools are not available, then fallback 7838If the required external tools are not available, then fallback
7842to the next best mode." nil nil) 7839to the next best mode.")
7843(autoload 'doc-view-minor-mode "doc-view" "\ 7840(autoload 'doc-view-minor-mode "doc-view" "\
7844Toggle displaying buffer via Doc View (Doc View minor mode). 7841Toggle displaying buffer via Doc View (Doc View minor mode).
7845 7842
@@ -7859,18 +7856,18 @@ evaluate `doc-view-minor-mode'.
7859The mode's hook is called both when the mode is enabled and when 7856The mode's hook is called both when the mode is enabled and when
7860it is disabled. 7857it is disabled.
7861 7858
7862(fn &optional ARG)" t nil) 7859(fn &optional ARG)" t)
7863(autoload 'doc-view-bookmark-jump "doc-view" "\ 7860(autoload 'doc-view-bookmark-jump "doc-view" "\
7864 7861
7865 7862
7866(fn BMK)" nil nil) 7863(fn BMK)")
7867(register-definition-prefixes "doc-view" '("doc-view-")) 7864(register-definition-prefixes "doc-view" '("doc-view-"))
7868 7865
7869 7866
7870;;; Generated autoloads from play/doctor.el 7867;;; Generated autoloads from play/doctor.el
7871 7868
7872(autoload 'doctor "doctor" "\ 7869(autoload 'doctor "doctor" "\
7873Switch to *doctor* buffer and start giving psychotherapy." t nil) 7870Switch to *doctor* buffer and start giving psychotherapy." t)
7874(register-definition-prefixes "doctor" '("doc")) 7871(register-definition-prefixes "doctor" '("doc"))
7875 7872
7876 7873
@@ -7921,14 +7918,14 @@ evaluate `double-mode'.
7921The mode's hook is called both when the mode is enabled and when 7918The mode's hook is called both when the mode is enabled and when
7922it is disabled. 7919it is disabled.
7923 7920
7924(fn &optional ARG)" t nil) 7921(fn &optional ARG)" t)
7925(register-definition-prefixes "double" '("double-")) 7922(register-definition-prefixes "double" '("double-"))
7926 7923
7927 7924
7928;;; Generated autoloads from play/dunnet.el 7925;;; Generated autoloads from play/dunnet.el
7929 7926
7930(autoload 'dunnet "dunnet" "\ 7927(autoload 'dunnet "dunnet" "\
7931Switch to *dungeon* buffer and start game." t nil) 7928Switch to *dungeon* buffer and start game." t)
7932(register-definition-prefixes "dunnet" '("dun" "obj-special")) 7929(register-definition-prefixes "dunnet" '("dun" "obj-special"))
7933 7930
7934 7931
@@ -8065,7 +8062,7 @@ Valid keywords and arguments are:
8065 :suppress Non-nil to call `suppress-keymap' on keymap, 8062 :suppress Non-nil to call `suppress-keymap' on keymap,
8066 `nodigits' to suppress digits as prefix arguments. 8063 `nodigits' to suppress digits as prefix arguments.
8067 8064
8068(fn BS &optional NAME M ARGS)" nil nil) 8065(fn BS &optional NAME M ARGS)")
8069(autoload 'easy-mmode-defmap "easy-mmode" "\ 8066(autoload 'easy-mmode-defmap "easy-mmode" "\
8070Define a constant M whose value is the result of `easy-mmode-define-keymap'. 8067Define a constant M whose value is the result of `easy-mmode-define-keymap'.
8071The M, BS, and ARGS arguments are as per that function. DOC is 8068The M, BS, and ARGS arguments are as per that function. DOC is
@@ -8123,9 +8120,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX).
8123 8120
8124;;; Generated autoloads from progmodes/ebnf2ps.el 8121;;; Generated autoloads from progmodes/ebnf2ps.el
8125 8122
8126(push (purecopy '(ebnf2ps 4 4)) package--builtin-versions)
8127(autoload 'ebnf-customize "ebnf2ps" "\ 8123(autoload 'ebnf-customize "ebnf2ps" "\
8128Customization for ebnf group." t nil) 8124Customization for ebnf group." t)
8129(autoload 'ebnf-print-directory "ebnf2ps" "\ 8125(autoload 'ebnf-print-directory "ebnf2ps" "\
8130Generate and print a PostScript syntactic chart image of DIRECTORY. 8126Generate and print a PostScript syntactic chart image of DIRECTORY.
8131 8127
@@ -8136,7 +8132,7 @@ processed.
8136 8132
8137See also `ebnf-print-buffer'. 8133See also `ebnf-print-buffer'.
8138 8134
8139(fn &optional DIRECTORY)" t nil) 8135(fn &optional DIRECTORY)" t)
8140(autoload 'ebnf-print-file "ebnf2ps" "\ 8136(autoload 'ebnf-print-file "ebnf2ps" "\
8141Generate and print a PostScript syntactic chart image of the file FILE. 8137Generate and print a PostScript syntactic chart image of the file FILE.
8142 8138
@@ -8145,7 +8141,7 @@ killed after process termination.
8145 8141
8146See also `ebnf-print-buffer'. 8142See also `ebnf-print-buffer'.
8147 8143
8148(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) 8144(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t)
8149(autoload 'ebnf-print-buffer "ebnf2ps" "\ 8145(autoload 'ebnf-print-buffer "ebnf2ps" "\
8150Generate and print a PostScript syntactic chart image of the buffer. 8146Generate and print a PostScript syntactic chart image of the buffer.
8151 8147
@@ -8158,12 +8154,12 @@ is nil, send the image to the printer. If FILENAME is a string, save
8158the PostScript image in a file with that name. If FILENAME is a 8154the PostScript image in a file with that name. If FILENAME is a
8159number, prompt the user for the name of the file to save in. 8155number, prompt the user for the name of the file to save in.
8160 8156
8161(fn &optional FILENAME)" t nil) 8157(fn &optional FILENAME)" t)
8162(autoload 'ebnf-print-region "ebnf2ps" "\ 8158(autoload 'ebnf-print-region "ebnf2ps" "\
8163Generate and print a PostScript syntactic chart image of the region. 8159Generate and print a PostScript syntactic chart image of the region.
8164Like `ebnf-print-buffer', but prints just the current region. 8160Like `ebnf-print-buffer', but prints just the current region.
8165 8161
8166(fn FROM TO &optional FILENAME)" t nil) 8162(fn FROM TO &optional FILENAME)" t)
8167(autoload 'ebnf-spool-directory "ebnf2ps" "\ 8163(autoload 'ebnf-spool-directory "ebnf2ps" "\
8168Generate and spool a PostScript syntactic chart image of DIRECTORY. 8164Generate and spool a PostScript syntactic chart image of DIRECTORY.
8169 8165
@@ -8174,7 +8170,7 @@ processed.
8174 8170
8175See also `ebnf-spool-buffer'. 8171See also `ebnf-spool-buffer'.
8176 8172
8177(fn &optional DIRECTORY)" t nil) 8173(fn &optional DIRECTORY)" t)
8178(autoload 'ebnf-spool-file "ebnf2ps" "\ 8174(autoload 'ebnf-spool-file "ebnf2ps" "\
8179Generate and spool a PostScript syntactic chart image of the file FILE. 8175Generate and spool a PostScript syntactic chart image of the file FILE.
8180 8176
@@ -8183,20 +8179,20 @@ killed after process termination.
8183 8179
8184See also `ebnf-spool-buffer'. 8180See also `ebnf-spool-buffer'.
8185 8181
8186(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) 8182(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t)
8187(autoload 'ebnf-spool-buffer "ebnf2ps" "\ 8183(autoload 'ebnf-spool-buffer "ebnf2ps" "\
8188Generate and spool a PostScript syntactic chart image of the buffer. 8184Generate and spool a PostScript syntactic chart image of the buffer.
8189Like `ebnf-print-buffer' except that the PostScript image is saved in a 8185Like `ebnf-print-buffer' except that the PostScript image is saved in a
8190local buffer to be sent to the printer later. 8186local buffer to be sent to the printer later.
8191 8187
8192Use the command `ebnf-despool' to send the spooled images to the printer." t nil) 8188Use the command `ebnf-despool' to send the spooled images to the printer." t)
8193(autoload 'ebnf-spool-region "ebnf2ps" "\ 8189(autoload 'ebnf-spool-region "ebnf2ps" "\
8194Generate a PostScript syntactic chart image of the region and spool locally. 8190Generate a PostScript syntactic chart image of the region and spool locally.
8195Like `ebnf-spool-buffer', but spools just the current region. 8191Like `ebnf-spool-buffer', but spools just the current region.
8196 8192
8197Use the command `ebnf-despool' to send the spooled images to the printer. 8193Use the command `ebnf-despool' to send the spooled images to the printer.
8198 8194
8199(fn FROM TO)" t nil) 8195(fn FROM TO)" t)
8200(autoload 'ebnf-eps-directory "ebnf2ps" "\ 8196(autoload 'ebnf-eps-directory "ebnf2ps" "\
8201Generate EPS files from EBNF files in DIRECTORY. 8197Generate EPS files from EBNF files in DIRECTORY.
8202 8198
@@ -8207,7 +8203,7 @@ processed.
8207 8203
8208See also `ebnf-eps-buffer'. 8204See also `ebnf-eps-buffer'.
8209 8205
8210(fn &optional DIRECTORY)" t nil) 8206(fn &optional DIRECTORY)" t)
8211(autoload 'ebnf-eps-file "ebnf2ps" "\ 8207(autoload 'ebnf-eps-file "ebnf2ps" "\
8212Generate an EPS file from EBNF file FILE. 8208Generate an EPS file from EBNF file FILE.
8213 8209
@@ -8216,7 +8212,7 @@ killed after EPS generation.
8216 8212
8217See also `ebnf-eps-buffer'. 8213See also `ebnf-eps-buffer'.
8218 8214
8219(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) 8215(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t)
8220(autoload 'ebnf-eps-buffer "ebnf2ps" "\ 8216(autoload 'ebnf-eps-buffer "ebnf2ps" "\
8221Generate a PostScript syntactic chart image of the buffer in an EPS file. 8217Generate a PostScript syntactic chart image of the buffer in an EPS file.
8222 8218
@@ -8235,7 +8231,7 @@ The EPS file name has the following form:
8235 file name used in this case will be \"ebnf--A_B_+_C.eps\". 8231 file name used in this case will be \"ebnf--A_B_+_C.eps\".
8236 8232
8237WARNING: This function does *NOT* ask any confirmation to override existing 8233WARNING: This function does *NOT* ask any confirmation to override existing
8238 files." t nil) 8234 files." t)
8239(autoload 'ebnf-eps-region "ebnf2ps" "\ 8235(autoload 'ebnf-eps-region "ebnf2ps" "\
8240Generate a PostScript syntactic chart image of the region in an EPS file. 8236Generate a PostScript syntactic chart image of the region in an EPS file.
8241 8237
@@ -8256,7 +8252,7 @@ The EPS file name has the following form:
8256WARNING: This function does *NOT* ask any confirmation to override existing 8252WARNING: This function does *NOT* ask any confirmation to override existing
8257 files. 8253 files.
8258 8254
8259(fn FROM TO)" t nil) 8255(fn FROM TO)" t)
8260(defalias 'ebnf-despool #'ps-despool) 8256(defalias 'ebnf-despool #'ps-despool)
8261(autoload 'ebnf-syntax-directory "ebnf2ps" "\ 8257(autoload 'ebnf-syntax-directory "ebnf2ps" "\
8262Do a syntactic analysis of the files in DIRECTORY. 8258Do a syntactic analysis of the files in DIRECTORY.
@@ -8268,7 +8264,7 @@ are processed.
8268 8264
8269See also `ebnf-syntax-buffer'. 8265See also `ebnf-syntax-buffer'.
8270 8266
8271(fn &optional DIRECTORY)" t nil) 8267(fn &optional DIRECTORY)" t)
8272(autoload 'ebnf-syntax-file "ebnf2ps" "\ 8268(autoload 'ebnf-syntax-file "ebnf2ps" "\
8273Do a syntactic analysis of the named FILE. 8269Do a syntactic analysis of the named FILE.
8274 8270
@@ -8277,39 +8273,39 @@ killed after syntax checking.
8277 8273
8278See also `ebnf-syntax-buffer'. 8274See also `ebnf-syntax-buffer'.
8279 8275
8280(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) 8276(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t)
8281(autoload 'ebnf-syntax-buffer "ebnf2ps" "\ 8277(autoload 'ebnf-syntax-buffer "ebnf2ps" "\
8282Do a syntactic analysis of the current buffer." t nil) 8278Do a syntactic analysis of the current buffer." t)
8283(autoload 'ebnf-syntax-region "ebnf2ps" "\ 8279(autoload 'ebnf-syntax-region "ebnf2ps" "\
8284Do a syntactic analysis of a region. 8280Do a syntactic analysis of a region.
8285 8281
8286(fn FROM TO)" t nil) 8282(fn FROM TO)" t)
8287(autoload 'ebnf-setup "ebnf2ps" "\ 8283(autoload 'ebnf-setup "ebnf2ps" "\
8288Return the current ebnf2ps setup." nil nil) 8284Return the current ebnf2ps setup.")
8289(autoload 'ebnf-find-style "ebnf2ps" "\ 8285(autoload 'ebnf-find-style "ebnf2ps" "\
8290Return style definition if NAME is already defined; otherwise, return nil. 8286Return style definition if NAME is already defined; otherwise, return nil.
8291 8287
8292See `ebnf-style-database' documentation. 8288See `ebnf-style-database' documentation.
8293 8289
8294(fn NAME)" t nil) 8290(fn NAME)" t)
8295(autoload 'ebnf-insert-style "ebnf2ps" "\ 8291(autoload 'ebnf-insert-style "ebnf2ps" "\
8296Insert a new style NAME with inheritance INHERITS and values VALUES. 8292Insert a new style NAME with inheritance INHERITS and values VALUES.
8297 8293
8298See `ebnf-style-database' documentation. 8294See `ebnf-style-database' documentation.
8299 8295
8300(fn NAME INHERITS &rest VALUES)" t nil) 8296(fn NAME INHERITS &rest VALUES)" t)
8301(autoload 'ebnf-delete-style "ebnf2ps" "\ 8297(autoload 'ebnf-delete-style "ebnf2ps" "\
8302Delete style NAME. 8298Delete style NAME.
8303 8299
8304See `ebnf-style-database' documentation. 8300See `ebnf-style-database' documentation.
8305 8301
8306(fn NAME)" t nil) 8302(fn NAME)" t)
8307(autoload 'ebnf-merge-style "ebnf2ps" "\ 8303(autoload 'ebnf-merge-style "ebnf2ps" "\
8308Merge values of style NAME with style VALUES. 8304Merge values of style NAME with style VALUES.
8309 8305
8310See `ebnf-style-database' documentation. 8306See `ebnf-style-database' documentation.
8311 8307
8312(fn NAME &rest VALUES)" t nil) 8308(fn NAME &rest VALUES)" t)
8313(autoload 'ebnf-apply-style "ebnf2ps" "\ 8309(autoload 'ebnf-apply-style "ebnf2ps" "\
8314Set STYLE as the current style. 8310Set STYLE as the current style.
8315 8311
@@ -8317,7 +8313,7 @@ Returns the old style symbol.
8317 8313
8318See `ebnf-style-database' documentation. 8314See `ebnf-style-database' documentation.
8319 8315
8320(fn STYLE)" t nil) 8316(fn STYLE)" t)
8321(autoload 'ebnf-reset-style "ebnf2ps" "\ 8317(autoload 'ebnf-reset-style "ebnf2ps" "\
8322Reset current style. 8318Reset current style.
8323 8319
@@ -8325,7 +8321,7 @@ Returns the old style symbol.
8325 8321
8326See `ebnf-style-database' documentation. 8322See `ebnf-style-database' documentation.
8327 8323
8328(fn &optional STYLE)" t nil) 8324(fn &optional STYLE)" t)
8329(autoload 'ebnf-push-style "ebnf2ps" "\ 8325(autoload 'ebnf-push-style "ebnf2ps" "\
8330Push the current style onto a stack and set STYLE as the current style. 8326Push the current style onto a stack and set STYLE as the current style.
8331 8327
@@ -8335,7 +8331,7 @@ See also `ebnf-pop-style'.
8335 8331
8336See `ebnf-style-database' documentation. 8332See `ebnf-style-database' documentation.
8337 8333
8338(fn &optional STYLE)" t nil) 8334(fn &optional STYLE)" t)
8339(autoload 'ebnf-pop-style "ebnf2ps" "\ 8335(autoload 'ebnf-pop-style "ebnf2ps" "\
8340Pop a style from the stack of pushed styles and set it as the current style. 8336Pop a style from the stack of pushed styles and set it as the current style.
8341 8337
@@ -8343,7 +8339,7 @@ Returns the old style symbol.
8343 8339
8344See also `ebnf-push-style'. 8340See also `ebnf-push-style'.
8345 8341
8346See `ebnf-style-database' documentation." t nil) 8342See `ebnf-style-database' documentation." t)
8347(register-definition-prefixes "ebnf2ps" '("ebnf-")) 8343(register-definition-prefixes "ebnf2ps" '("ebnf-"))
8348 8344
8349 8345
@@ -8359,52 +8355,52 @@ E.g. \\[save-buffer] writes the tree to the file it was loaded from.
8359Tree mode key bindings: 8355Tree mode key bindings:
8360\\{ebrowse-tree-mode-map} 8356\\{ebrowse-tree-mode-map}
8361 8357
8362(fn)" t nil) 8358(fn)" t)
8363(autoload 'ebrowse-electric-choose-tree "ebrowse" "\ 8359(autoload 'ebrowse-electric-choose-tree "ebrowse" "\
8364Return a buffer containing a tree or nil if no tree found or canceled." t nil) 8360Return a buffer containing a tree or nil if no tree found or canceled." t)
8365(autoload 'ebrowse-member-mode "ebrowse" "\ 8361(autoload 'ebrowse-member-mode "ebrowse" "\
8366Major mode for Ebrowse member buffers. 8362Major mode for Ebrowse member buffers.
8367 8363
8368(fn)" t nil) 8364(fn)" t)
8369(autoload 'ebrowse-tags-view-declaration "ebrowse" "\ 8365(autoload 'ebrowse-tags-view-declaration "ebrowse" "\
8370View declaration of member at point." t nil) 8366View declaration of member at point." t)
8371(autoload 'ebrowse-tags-find-declaration "ebrowse" "\ 8367(autoload 'ebrowse-tags-find-declaration "ebrowse" "\
8372Find declaration of member at point." t nil) 8368Find declaration of member at point." t)
8373(autoload 'ebrowse-tags-view-definition "ebrowse" "\ 8369(autoload 'ebrowse-tags-view-definition "ebrowse" "\
8374View definition of member at point." t nil) 8370View definition of member at point." t)
8375(autoload 'ebrowse-tags-find-definition "ebrowse" "\ 8371(autoload 'ebrowse-tags-find-definition "ebrowse" "\
8376Find definition of member at point." t nil) 8372Find definition of member at point." t)
8377(autoload 'ebrowse-tags-find-declaration-other-window "ebrowse" "\ 8373(autoload 'ebrowse-tags-find-declaration-other-window "ebrowse" "\
8378Find declaration of member at point in other window." t nil) 8374Find declaration of member at point in other window." t)
8379(autoload 'ebrowse-tags-view-definition-other-window "ebrowse" "\ 8375(autoload 'ebrowse-tags-view-definition-other-window "ebrowse" "\
8380View definition of member at point in other window." t nil) 8376View definition of member at point in other window." t)
8381(autoload 'ebrowse-tags-find-definition-other-window "ebrowse" "\ 8377(autoload 'ebrowse-tags-find-definition-other-window "ebrowse" "\
8382Find definition of member at point in other window." t nil) 8378Find definition of member at point in other window." t)
8383(autoload 'ebrowse-tags-find-declaration-other-frame "ebrowse" "\ 8379(autoload 'ebrowse-tags-find-declaration-other-frame "ebrowse" "\
8384Find definition of member at point in other frame." t nil) 8380Find definition of member at point in other frame." t)
8385(autoload 'ebrowse-tags-view-definition-other-frame "ebrowse" "\ 8381(autoload 'ebrowse-tags-view-definition-other-frame "ebrowse" "\
8386View definition of member at point in other frame." t nil) 8382View definition of member at point in other frame." t)
8387(autoload 'ebrowse-tags-find-definition-other-frame "ebrowse" "\ 8383(autoload 'ebrowse-tags-find-definition-other-frame "ebrowse" "\
8388Find definition of member at point in other frame." t nil) 8384Find definition of member at point in other frame." t)
8389(autoload 'ebrowse-tags-complete-symbol "ebrowse" "\ 8385(autoload 'ebrowse-tags-complete-symbol "ebrowse" "\
8390Perform completion on the C++ symbol preceding point. 8386Perform completion on the C++ symbol preceding point.
8391A second call of this function without changing point inserts the next match. 8387A second call of this function without changing point inserts the next match.
8392A call with prefix PREFIX reads the symbol to insert from the minibuffer with 8388A call with prefix PREFIX reads the symbol to insert from the minibuffer with
8393completion. 8389completion.
8394 8390
8395(fn PREFIX)" t nil) 8391(fn PREFIX)" '("P"))
8396(autoload 'ebrowse-tags-loop-continue "ebrowse" "\ 8392(autoload 'ebrowse-tags-loop-continue "ebrowse" "\
8397Repeat last operation on files in tree. 8393Repeat last operation on files in tree.
8398FIRST-TIME non-nil means this is not a repetition, but the first time. 8394FIRST-TIME non-nil means this is not a repetition, but the first time.
8399TREE-BUFFER if indirectly specifies which files to loop over. 8395TREE-BUFFER if indirectly specifies which files to loop over.
8400 8396
8401(fn &optional FIRST-TIME TREE-BUFFER)" t nil) 8397(fn &optional FIRST-TIME TREE-BUFFER)" t)
8402(autoload 'ebrowse-tags-search "ebrowse" "\ 8398(autoload 'ebrowse-tags-search "ebrowse" "\
8403Search for REGEXP in all files in a tree. 8399Search for REGEXP in all files in a tree.
8404If marked classes exist, process marked classes, only. 8400If marked classes exist, process marked classes, only.
8405If regular expression is nil, repeat last search. 8401If regular expression is nil, repeat last search.
8406 8402
8407(fn REGEXP)" t nil) 8403(fn REGEXP)" t)
8408(autoload 'ebrowse-tags-query-replace "ebrowse" "\ 8404(autoload 'ebrowse-tags-query-replace "ebrowse" "\
8409Query replace FROM with TO in all files of a class tree. 8405Query replace FROM with TO in all files of a class tree.
8410With prefix arg, process files of marked classes only. 8406With prefix arg, process files of marked classes only.
@@ -8414,7 +8410,7 @@ what to do with it. Type SPC or `y' to replace the match,
8414DEL or `n' to skip and go to the next match. For more directions, 8410DEL or `n' to skip and go to the next match. For more directions,
8415type \\[help-command] at that time. 8411type \\[help-command] at that time.
8416 8412
8417(fn FROM TO)" t nil) 8413(fn FROM TO)" t)
8418(autoload 'ebrowse-tags-search-member-use "ebrowse" "\ 8414(autoload 'ebrowse-tags-search-member-use "ebrowse" "\
8419Search for call sites of a member. 8415Search for call sites of a member.
8420If FIX-NAME is specified, search uses of that member. 8416If FIX-NAME is specified, search uses of that member.
@@ -8422,29 +8418,29 @@ Otherwise, read a member name from the minibuffer.
8422Searches in all files mentioned in a class tree for something that 8418Searches in all files mentioned in a class tree for something that
8423looks like a function call to the member. 8419looks like a function call to the member.
8424 8420
8425(fn &optional FIX-NAME)" t nil) 8421(fn &optional FIX-NAME)" t)
8426(autoload 'ebrowse-back-in-position-stack "ebrowse" "\ 8422(autoload 'ebrowse-back-in-position-stack "ebrowse" "\
8427Move backward in the position stack. 8423Move backward in the position stack.
8428Prefix arg ARG says how much. 8424Prefix arg ARG says how much.
8429 8425
8430(fn ARG)" t nil) 8426(fn ARG)" t)
8431(autoload 'ebrowse-forward-in-position-stack "ebrowse" "\ 8427(autoload 'ebrowse-forward-in-position-stack "ebrowse" "\
8432Move forward in the position stack. 8428Move forward in the position stack.
8433Prefix arg ARG says how much. 8429Prefix arg ARG says how much.
8434 8430
8435(fn ARG)" t nil) 8431(fn ARG)" t)
8436(autoload 'ebrowse-electric-position-menu "ebrowse" "\ 8432(autoload 'ebrowse-electric-position-menu "ebrowse" "\
8437List positions in the position stack in an electric buffer." t nil) 8433List positions in the position stack in an electric buffer." t)
8438(autoload 'ebrowse-save-tree "ebrowse" "\ 8434(autoload 'ebrowse-save-tree "ebrowse" "\
8439Save current tree in same file it was loaded from." t nil) 8435Save current tree in same file it was loaded from." t)
8440(autoload 'ebrowse-save-tree-as "ebrowse" "\ 8436(autoload 'ebrowse-save-tree-as "ebrowse" "\
8441Write the current tree data structure to a file. 8437Write the current tree data structure to a file.
8442Read the file name from the minibuffer if interactive. 8438Read the file name from the minibuffer if interactive.
8443Otherwise, FILE-NAME specifies the file to save the tree in. 8439Otherwise, FILE-NAME specifies the file to save the tree in.
8444 8440
8445(fn &optional FILE-NAME)" t nil) 8441(fn &optional FILE-NAME)" t)
8446(autoload 'ebrowse-statistics "ebrowse" "\ 8442(autoload 'ebrowse-statistics "ebrowse" "\
8447Display statistics for a class tree." t nil) 8443Display statistics for a class tree." t)
8448(register-definition-prefixes "ebrowse" '("ebrowse-" "electric-buffer-menu-mode-hook")) 8444(register-definition-prefixes "ebrowse" '("ebrowse-" "electric-buffer-menu-mode-hook"))
8449 8445
8450 8446
@@ -8476,7 +8472,7 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry.
8476\\[Electric-buffer-menu-mode-view-buffer] -- view buffer, returning when done. 8472\\[Electric-buffer-menu-mode-view-buffer] -- view buffer, returning when done.
8477\\[Buffer-menu-backup-unmark] -- back up a line and remove marks. 8473\\[Buffer-menu-backup-unmark] -- back up a line and remove marks.
8478 8474
8479(fn ARG)" t nil) 8475(fn ARG)" t)
8480(register-definition-prefixes "ebuff-menu" '("Electric-buffer-menu-" "electric-buffer-")) 8476(register-definition-prefixes "ebuff-menu" '("Electric-buffer-menu-" "electric-buffer-"))
8481 8477
8482 8478
@@ -8486,20 +8482,20 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry.
8486Edit current history line in minibuffer and execute result. 8482Edit current history line in minibuffer and execute result.
8487With prefix arg NOCONFIRM, execute current line as-is without editing. 8483With prefix arg NOCONFIRM, execute current line as-is without editing.
8488 8484
8489(fn &optional NOCONFIRM)" t nil) 8485(fn &optional NOCONFIRM)" t)
8490(register-definition-prefixes "echistory" '("Electric-history-" "electric-")) 8486(register-definition-prefixes "echistory" '("Electric-history-" "electric-"))
8491 8487
8492 8488
8493;;; Generated autoloads from ecomplete.el 8489;;; Generated autoloads from ecomplete.el
8494 8490
8495(autoload 'ecomplete-setup "ecomplete" "\ 8491(autoload 'ecomplete-setup "ecomplete" "\
8496Read the .ecompleterc file." nil nil) 8492Read the .ecompleterc file.")
8497(register-definition-prefixes "ecomplete" '("ecomplete-")) 8493(register-definition-prefixes "ecomplete" '("ecomplete-"))
8498 8494
8499 8495
8500;;; Generated autoloads from cedet/ede.el 8496;;; Generated autoloads from cedet/ede.el
8501 8497
8502(push (purecopy '(ede 1 2)) package--builtin-versions) 8498(push (purecopy '(ede 2 0)) package--builtin-versions)
8503(defvar global-ede-mode nil "\ 8499(defvar global-ede-mode nil "\
8504Non-nil if Global Ede mode is enabled. 8500Non-nil if Global Ede mode is enabled.
8505See the `global-ede-mode' command 8501See the `global-ede-mode' command
@@ -8528,7 +8524,7 @@ evaluate `(default-value \\='global-ede-mode)'.
8528The mode's hook is called both when the mode is enabled and when 8524The mode's hook is called both when the mode is enabled and when
8529it is disabled. 8525it is disabled.
8530 8526
8531(fn &optional ARG)" t nil) 8527(fn &optional ARG)" t)
8532(register-definition-prefixes "ede" '("ede" "global-ede-mode-map" "project-try-ede")) 8528(register-definition-prefixes "ede" '("ede" "global-ede-mode-map" "project-try-ede"))
8533 8529
8534 8530
@@ -8563,7 +8559,7 @@ Return t if SPEC uses only extant spec symbols.
8563An extant spec symbol is a symbol that is not a function and has a 8559An extant spec symbol is a symbol that is not a function and has a
8564`edebug-form-spec' property. 8560`edebug-form-spec' property.
8565 8561
8566(fn SPEC)" nil nil) 8562(fn SPEC)")
8567(defalias 'edebug-defun 'edebug-eval-top-level-form) 8563(defalias 'edebug-defun 'edebug-eval-top-level-form)
8568(autoload 'edebug-eval-top-level-form "edebug" "\ 8564(autoload 'edebug-eval-top-level-form "edebug" "\
8569Evaluate the top level form point is in, stepping through with Edebug. 8565Evaluate the top level form point is in, stepping through with Edebug.
@@ -8581,11 +8577,11 @@ If the current defun is actually a call to `defvar' or `defcustom',
8581evaluating it this way resets the variable using its initial value 8577evaluating it this way resets the variable using its initial value
8582expression even if the variable already has some other value. 8578expression even if the variable already has some other value.
8583(Normally `defvar' and `defcustom' do not alter the value if there 8579(Normally `defvar' and `defcustom' do not alter the value if there
8584already is one.)" t nil) 8580already is one.)" t)
8585(autoload 'edebug-all-defs "edebug" "\ 8581(autoload 'edebug-all-defs "edebug" "\
8586Toggle edebugging of all definitions." t nil) 8582Toggle edebugging of all definitions." t)
8587(autoload 'edebug-all-forms "edebug" "\ 8583(autoload 'edebug-all-forms "edebug" "\
8588Toggle edebugging of all forms." t nil) 8584Toggle edebugging of all forms." t)
8589(register-definition-prefixes "edebug" '("edebug")) 8585(register-definition-prefixes "edebug" '("edebug"))
8590 8586
8591 8587
@@ -8597,25 +8593,25 @@ Run Ediff on a pair of files, FILE-A and FILE-B.
8597STARTUP-HOOKS is a list of functions that Emacs calls without 8593STARTUP-HOOKS is a list of functions that Emacs calls without
8598arguments after setting up the Ediff buffers. 8594arguments after setting up the Ediff buffers.
8599 8595
8600(fn FILE-A FILE-B &optional STARTUP-HOOKS)" t nil) 8596(fn FILE-A FILE-B &optional STARTUP-HOOKS)" t)
8601(autoload 'ediff-files3 "ediff" "\ 8597(autoload 'ediff-files3 "ediff" "\
8602Run Ediff on three files, FILE-A, FILE-B, and FILE-C. 8598Run Ediff on three files, FILE-A, FILE-B, and FILE-C.
8603STARTUP-HOOKS is a list of functions that Emacs calls without 8599STARTUP-HOOKS is a list of functions that Emacs calls without
8604arguments after setting up the Ediff buffers. 8600arguments after setting up the Ediff buffers.
8605 8601
8606(fn FILE-A FILE-B FILE-C &optional STARTUP-HOOKS)" t nil) 8602(fn FILE-A FILE-B FILE-C &optional STARTUP-HOOKS)" t)
8607(defalias 'ediff3 #'ediff-files3) 8603(defalias 'ediff3 #'ediff-files3)
8608(defalias 'ediff #'ediff-files) 8604(defalias 'ediff #'ediff-files)
8609(autoload 'ediff-current-file "ediff" "\ 8605(autoload 'ediff-current-file "ediff" "\
8610Start ediff between current buffer and its file on disk. 8606Start ediff between current buffer and its file on disk.
8611This command can be used instead of `revert-buffer'. If there is 8607This command can be used instead of `revert-buffer'. If there is
8612nothing to revert then this command fails." t nil) 8608nothing to revert then this command fails." t)
8613(autoload 'ediff-backup "ediff" "\ 8609(autoload 'ediff-backup "ediff" "\
8614Run Ediff on FILE and its backup file. 8610Run Ediff on FILE and its backup file.
8615Uses the latest backup, if there are several numerical backups. 8611Uses the latest backup, if there are several numerical backups.
8616If this file is a backup, `ediff' it with its original. 8612If this file is a backup, `ediff' it with its original.
8617 8613
8618(fn FILE)" t nil) 8614(fn FILE)" t)
8619(autoload 'ediff-buffers "ediff" "\ 8615(autoload 'ediff-buffers "ediff" "\
8620Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B. 8616Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B.
8621STARTUP-HOOKS is a list of functions that Emacs calls without 8617STARTUP-HOOKS is a list of functions that Emacs calls without
@@ -8626,7 +8622,7 @@ symbol describing the Ediff job type; it defaults to
8626`ediff-last-dir-C', `ediff-buffers3', `ediff-merge-buffers', or 8622`ediff-last-dir-C', `ediff-buffers3', `ediff-merge-buffers', or
8627`ediff-merge-buffers-with-ancestor'. 8623`ediff-merge-buffers-with-ancestor'.
8628 8624
8629(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME)" t nil) 8625(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME)" t)
8630(defalias 'ebuffers #'ediff-buffers) 8626(defalias 'ebuffers #'ediff-buffers)
8631(autoload 'ediff-buffers3 "ediff" "\ 8627(autoload 'ediff-buffers3 "ediff" "\
8632Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C. 8628Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C.
@@ -8638,7 +8634,7 @@ symbol describing the Ediff job type; it defaults to
8638`ediff-last-dir-C', `ediff-buffers', `ediff-merge-buffers', or 8634`ediff-last-dir-C', `ediff-buffers', `ediff-merge-buffers', or
8639`ediff-merge-buffers-with-ancestor'. 8635`ediff-merge-buffers-with-ancestor'.
8640 8636
8641(fn BUFFER-A BUFFER-B BUFFER-C &optional STARTUP-HOOKS JOB-NAME)" t nil) 8637(fn BUFFER-A BUFFER-B BUFFER-C &optional STARTUP-HOOKS JOB-NAME)" t)
8642(defalias 'ebuffers3 #'ediff-buffers3) 8638(defalias 'ebuffers3 #'ediff-buffers3)
8643(autoload 'ediff-directories "ediff" "\ 8639(autoload 'ediff-directories "ediff" "\
8644Run Ediff on directories DIR1 and DIR2, comparing files. 8640Run Ediff on directories DIR1 and DIR2, comparing files.
@@ -8647,14 +8643,14 @@ Consider only files that have the same name in both directories.
8647REGEXP is nil or a regular expression; only file names that match 8643REGEXP is nil or a regular expression; only file names that match
8648the regexp are considered. 8644the regexp are considered.
8649 8645
8650(fn DIR1 DIR2 REGEXP)" t nil) 8646(fn DIR1 DIR2 REGEXP)" t)
8651(defalias 'edirs #'ediff-directories) 8647(defalias 'edirs #'ediff-directories)
8652(autoload 'ediff-directory-revisions "ediff" "\ 8648(autoload 'ediff-directory-revisions "ediff" "\
8653Run Ediff on a directory, DIR1, comparing its files with their revisions. 8649Run Ediff on a directory, DIR1, comparing its files with their revisions.
8654The second argument, REGEXP, is a regular expression that filters the file 8650The second argument, REGEXP, is a regular expression that filters the file
8655names. Only the files that are under revision control are taken into account. 8651names. Only the files that are under revision control are taken into account.
8656 8652
8657(fn DIR1 REGEXP)" t nil) 8653(fn DIR1 REGEXP)" t)
8658(defalias 'edir-revisions #'ediff-directory-revisions) 8654(defalias 'edir-revisions #'ediff-directory-revisions)
8659(autoload 'ediff-directories3 "ediff" "\ 8655(autoload 'ediff-directories3 "ediff" "\
8660Run Ediff on directories DIR1, DIR2, and DIR3, comparing files. 8656Run Ediff on directories DIR1, DIR2, and DIR3, comparing files.
@@ -8663,7 +8659,7 @@ Consider only files that have the same name in all three directories.
8663REGEXP is nil or a regular expression; only file names that match 8659REGEXP is nil or a regular expression; only file names that match
8664the regexp are considered. 8660the regexp are considered.
8665 8661
8666(fn DIR1 DIR2 DIR3 REGEXP)" t nil) 8662(fn DIR1 DIR2 DIR3 REGEXP)" t)
8667(defalias 'edirs3 #'ediff-directories3) 8663(defalias 'edirs3 #'ediff-directories3)
8668(autoload 'ediff-merge-directories "ediff" "\ 8664(autoload 'ediff-merge-directories "ediff" "\
8669Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have 8665Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have
@@ -8671,7 +8667,7 @@ the same name in both. The third argument, REGEXP, is nil or a regular
8671expression; only file names that match the regexp are considered. 8667expression; only file names that match the regexp are considered.
8672MERGE-AUTOSTORE-DIR is the directory in which to store merged files. 8668MERGE-AUTOSTORE-DIR is the directory in which to store merged files.
8673 8669
8674(fn DIR1 DIR2 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) 8670(fn DIR1 DIR2 REGEXP &optional MERGE-AUTOSTORE-DIR)" t)
8675(defalias 'edirs-merge #'ediff-merge-directories) 8671(defalias 'edirs-merge #'ediff-merge-directories)
8676(autoload 'ediff-merge-directories-with-ancestor "ediff" "\ 8672(autoload 'ediff-merge-directories-with-ancestor "ediff" "\
8677Merge files in DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors. 8673Merge files in DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors.
@@ -8681,14 +8677,14 @@ without ancestor. The fourth argument, REGEXP, is nil or a regular expression;
8681only file names that match the regexp are considered. 8677only file names that match the regexp are considered.
8682MERGE-AUTOSTORE-DIR is the directory in which to store merged files. 8678MERGE-AUTOSTORE-DIR is the directory in which to store merged files.
8683 8679
8684(fn DIR1 DIR2 ANCESTOR-DIR REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) 8680(fn DIR1 DIR2 ANCESTOR-DIR REGEXP &optional MERGE-AUTOSTORE-DIR)" t)
8685(autoload 'ediff-merge-directory-revisions "ediff" "\ 8681(autoload 'ediff-merge-directory-revisions "ediff" "\
8686Run Ediff on a directory, DIR1, merging its files with their revisions. 8682Run Ediff on a directory, DIR1, merging its files with their revisions.
8687The second argument, REGEXP, is a regular expression that filters the file 8683The second argument, REGEXP, is a regular expression that filters the file
8688names. Only the files that are under revision control are taken into account. 8684names. Only the files that are under revision control are taken into account.
8689MERGE-AUTOSTORE-DIR is the directory in which to store merged files. 8685MERGE-AUTOSTORE-DIR is the directory in which to store merged files.
8690 8686
8691(fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) 8687(fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t)
8692(defalias 'edir-merge-revisions #'ediff-merge-directory-revisions) 8688(defalias 'edir-merge-revisions #'ediff-merge-directory-revisions)
8693(autoload 'ediff-merge-directory-revisions-with-ancestor "ediff" "\ 8689(autoload 'ediff-merge-directory-revisions-with-ancestor "ediff" "\
8694Run Ediff on DIR1 and merge its files with their revisions and ancestors. 8690Run Ediff on DIR1 and merge its files with their revisions and ancestors.
@@ -8696,7 +8692,7 @@ The second argument, REGEXP, is a regular expression that filters the file
8696names. Only the files that are under revision control are taken into account. 8692names. Only the files that are under revision control are taken into account.
8697MERGE-AUTOSTORE-DIR is the directory in which to store merged files. 8693MERGE-AUTOSTORE-DIR is the directory in which to store merged files.
8698 8694
8699(fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) 8695(fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t)
8700(defalias 'edir-merge-revisions-with-ancestor 'ediff-merge-directory-revisions-with-ancestor) 8696(defalias 'edir-merge-revisions-with-ancestor 'ediff-merge-directory-revisions-with-ancestor)
8701(defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor) 8697(defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor)
8702(autoload 'ediff-windows-wordwise "ediff" "\ 8698(autoload 'ediff-windows-wordwise "ediff" "\
@@ -8709,7 +8705,7 @@ If WIND-B is nil, use window next to WIND-A.
8709STARTUP-HOOKS is a list of functions that Emacs calls without 8705STARTUP-HOOKS is a list of functions that Emacs calls without
8710arguments after setting up the Ediff buffers. 8706arguments after setting up the Ediff buffers.
8711 8707
8712(fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t nil) 8708(fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t)
8713(autoload 'ediff-windows-linewise "ediff" "\ 8709(autoload 'ediff-windows-linewise "ediff" "\
8714Compare WIND-A and WIND-B, which are selected by clicking, linewise. 8710Compare WIND-A and WIND-B, which are selected by clicking, linewise.
8715This compares the portions of text visible in each of the two windows. 8711This compares the portions of text visible in each of the two windows.
@@ -8720,7 +8716,7 @@ If WIND-B is nil, use window next to WIND-A.
8720STARTUP-HOOKS is a list of functions that Emacs calls without 8716STARTUP-HOOKS is a list of functions that Emacs calls without
8721arguments after setting up the Ediff buffers. 8717arguments after setting up the Ediff buffers.
8722 8718
8723(fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t nil) 8719(fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t)
8724(autoload 'ediff-regions-wordwise "ediff" "\ 8720(autoload 'ediff-regions-wordwise "ediff" "\
8725Run Ediff on a pair of regions in specified buffers. 8721Run Ediff on a pair of regions in specified buffers.
8726BUFFER-A and BUFFER-B are the buffers to be compared. 8722BUFFER-A and BUFFER-B are the buffers to be compared.
@@ -8730,7 +8726,7 @@ use `ediff-regions-linewise' instead.
8730STARTUP-HOOKS is a list of functions that Emacs calls without 8726STARTUP-HOOKS is a list of functions that Emacs calls without
8731arguments after setting up the Ediff buffers. 8727arguments after setting up the Ediff buffers.
8732 8728
8733(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t nil) 8729(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t)
8734(autoload 'ediff-regions-linewise "ediff" "\ 8730(autoload 'ediff-regions-linewise "ediff" "\
8735Run Ediff on a pair of regions in specified buffers. 8731Run Ediff on a pair of regions in specified buffers.
8736BUFFER-A and BUFFER-B are the buffers to be compared. 8732BUFFER-A and BUFFER-B are the buffers to be compared.
@@ -8741,7 +8737,7 @@ lines. For small regions, use `ediff-regions-wordwise'.
8741STARTUP-HOOKS is a list of functions that Emacs calls without 8737STARTUP-HOOKS is a list of functions that Emacs calls without
8742arguments after setting up the Ediff buffers. 8738arguments after setting up the Ediff buffers.
8743 8739
8744(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t nil) 8740(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t)
8745(defalias 'ediff-merge 'ediff-merge-files) 8741(defalias 'ediff-merge 'ediff-merge-files)
8746(autoload 'ediff-merge-files "ediff" "\ 8742(autoload 'ediff-merge-files "ediff" "\
8747Merge two files without ancestor. 8743Merge two files without ancestor.
@@ -8750,7 +8746,7 @@ STARTUP-HOOKS is a list of functions that Emacs calls without
8750arguments after setting up the Ediff buffers. MERGE-BUFFER-FILE 8746arguments after setting up the Ediff buffers. MERGE-BUFFER-FILE
8751is the name of the file to be associated with the merge buffer.. 8747is the name of the file to be associated with the merge buffer..
8752 8748
8753(fn FILE-A FILE-B &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) 8749(fn FILE-A FILE-B &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t)
8754(autoload 'ediff-merge-files-with-ancestor "ediff" "\ 8750(autoload 'ediff-merge-files-with-ancestor "ediff" "\
8755Merge two files with ancestor. 8751Merge two files with ancestor.
8756FILE-A and FILE-B are the names of the files to be merged, and 8752FILE-A and FILE-B are the names of the files to be merged, and
@@ -8759,7 +8755,7 @@ a list of functions that Emacs calls without arguments after
8759setting up the Ediff buffers. MERGE-BUFFER-FILE is the name of 8755setting up the Ediff buffers. MERGE-BUFFER-FILE is the name of
8760the file to be associated with the merge buffer. 8756the file to be associated with the merge buffer.
8761 8757
8762(fn FILE-A FILE-B FILE-ANCESTOR &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) 8758(fn FILE-A FILE-B FILE-ANCESTOR &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t)
8763(defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor) 8759(defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor)
8764(autoload 'ediff-merge-buffers "ediff" "\ 8760(autoload 'ediff-merge-buffers "ediff" "\
8765Merge buffers without ancestor. 8761Merge buffers without ancestor.
@@ -8773,7 +8769,7 @@ symbol describing the Ediff job type; it defaults to
8773`ediff-merge-buffers-with-ancestor'. MERGE-BUFFER-FILE is the 8769`ediff-merge-buffers-with-ancestor'. MERGE-BUFFER-FILE is the
8774name of the file to be associated with the merge buffer. 8770name of the file to be associated with the merge buffer.
8775 8771
8776(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t nil) 8772(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t)
8777(autoload 'ediff-merge-buffers-with-ancestor "ediff" "\ 8773(autoload 'ediff-merge-buffers-with-ancestor "ediff" "\
8778Merge buffers with ancestor. 8774Merge buffers with ancestor.
8779BUFFER-A and BUFFER-B are the buffers to be merged, and 8775BUFFER-A and BUFFER-B are the buffers to be merged, and
@@ -8786,7 +8782,7 @@ also be one of `ediff-merge-files-with-ancestor',
8786`ediff-buffers3', or `ediff-merge-buffers'. MERGE-BUFFER-FILE is 8782`ediff-buffers3', or `ediff-merge-buffers'. MERGE-BUFFER-FILE is
8787the name of the file to be associated with the merge buffer. 8783the name of the file to be associated with the merge buffer.
8788 8784
8789(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t nil) 8785(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t)
8790(autoload 'ediff-merge-revisions "ediff" "\ 8786(autoload 'ediff-merge-revisions "ediff" "\
8791Run Ediff by merging two revisions of a file. 8787Run Ediff by merging two revisions of a file.
8792The file is the optional FILE argument or the file visited by the 8788The file is the optional FILE argument or the file visited by the
@@ -8795,7 +8791,7 @@ calls without arguments after setting up the Ediff buffers.
8795MERGE-BUFFER-FILE is the name of the file to be associated with 8791MERGE-BUFFER-FILE is the name of the file to be associated with
8796the merge buffer. 8792the merge buffer.
8797 8793
8798(fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) 8794(fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t)
8799(autoload 'ediff-merge-revisions-with-ancestor "ediff" "\ 8795(autoload 'ediff-merge-revisions-with-ancestor "ediff" "\
8800Run Ediff by merging two revisions of a file with a common ancestor. 8796Run Ediff by merging two revisions of a file with a common ancestor.
8801The file is the optional FILE argument or the file visited by the 8797The file is the optional FILE argument or the file visited by the
@@ -8804,7 +8800,7 @@ calls without arguments after setting up the Ediff buffers.
8804MERGE-BUFFER-FILE is the name of the file to be associated with 8800MERGE-BUFFER-FILE is the name of the file to be associated with
8805the merge buffer. 8801the merge buffer.
8806 8802
8807(fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) 8803(fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t)
8808(autoload 'ediff-patch-file "ediff" "\ 8804(autoload 'ediff-patch-file "ediff" "\
8809Query for a file name, and then run Ediff by patching that file. 8805Query for a file name, and then run Ediff by patching that file.
8810If optional PATCH-BUF is given, use the patch in that buffer 8806If optional PATCH-BUF is given, use the patch in that buffer
@@ -8812,7 +8808,7 @@ and don't ask the user.
8812If prefix argument ARG, then: if even argument, assume that the 8808If prefix argument ARG, then: if even argument, assume that the
8813patch is in a buffer. If odd -- assume it is in a file. 8809patch is in a buffer. If odd -- assume it is in a file.
8814 8810
8815(fn &optional ARG PATCH-BUF)" t nil) 8811(fn &optional ARG PATCH-BUF)" t)
8816(autoload 'ediff-patch-buffer "ediff" "\ 8812(autoload 'ediff-patch-buffer "ediff" "\
8817Run Ediff by patching the buffer specified at prompt. 8813Run Ediff by patching the buffer specified at prompt.
8818Without the optional prefix ARG, asks if the patch is in some buffer and 8814Without the optional prefix ARG, asks if the patch is in some buffer and
@@ -8822,7 +8818,7 @@ With ARG=2, assumes the patch is in a buffer and prompts for the buffer.
8822PATCH-BUF is an optional argument, which specifies the buffer that contains the 8818PATCH-BUF is an optional argument, which specifies the buffer that contains the
8823patch. If not given, the user is prompted according to the prefix argument. 8819patch. If not given, the user is prompted according to the prefix argument.
8824 8820
8825(fn &optional ARG PATCH-BUF)" t nil) 8821(fn &optional ARG PATCH-BUF)" t)
8826(defalias 'epatch 'ediff-patch-file) 8822(defalias 'epatch 'ediff-patch-file)
8827(defalias 'epatch-buffer 'ediff-patch-buffer) 8823(defalias 'epatch-buffer 'ediff-patch-buffer)
8828(autoload 'ediff-revision "ediff" "\ 8824(autoload 'ediff-revision "ediff" "\
@@ -8833,33 +8829,33 @@ Uses `vc.el' or `rcs.el' depending on `ediff-version-control-package'.
8833STARTUP-HOOKS is a list of functions that Emacs calls without 8829STARTUP-HOOKS is a list of functions that Emacs calls without
8834arguments after setting up the Ediff buffers. 8830arguments after setting up the Ediff buffers.
8835 8831
8836(fn &optional FILE STARTUP-HOOKS)" t nil) 8832(fn &optional FILE STARTUP-HOOKS)" t)
8837(defalias 'erevision 'ediff-revision) 8833(defalias 'erevision 'ediff-revision)
8838(autoload 'ediff-version "ediff" "\ 8834(autoload 'ediff-version "ediff" "\
8839Return string describing the version of Ediff. 8835Return string describing the version of Ediff.
8840When called interactively, displays the version." t nil) 8836When called interactively, displays the version." t)
8841(autoload 'ediff-documentation "ediff" "\ 8837(autoload 'ediff-documentation "ediff" "\
8842Display Ediff's manual. 8838Display Ediff's manual.
8843With optional NODE, goes to that node. 8839With optional NODE, goes to that node.
8844 8840
8845(fn &optional NODE)" t nil) 8841(fn &optional NODE)" t)
8846(autoload 'ediff-files-command "ediff" "\ 8842(autoload 'ediff-files-command "ediff" "\
8847Call `ediff-files' with the next two command line arguments." nil nil) 8843Call `ediff-files' with the next two command line arguments.")
8848(autoload 'ediff3-files-command "ediff" "\ 8844(autoload 'ediff3-files-command "ediff" "\
8849Call `ediff3-files' with the next three command line arguments." nil nil) 8845Call `ediff3-files' with the next three command line arguments.")
8850(autoload 'ediff-merge-command "ediff" "\ 8846(autoload 'ediff-merge-command "ediff" "\
8851Call `ediff-merge-files' with the next two command line arguments." nil nil) 8847Call `ediff-merge-files' with the next two command line arguments.")
8852(autoload 'ediff-merge-with-ancestor-command "ediff" "\ 8848(autoload 'ediff-merge-with-ancestor-command "ediff" "\
8853Call `ediff-merge-files-with-ancestor' with next three command line arguments." nil nil) 8849Call `ediff-merge-files-with-ancestor' with next three command line arguments.")
8854(autoload 'ediff-directories-command "ediff" "\ 8850(autoload 'ediff-directories-command "ediff" "\
8855Call `ediff-directories' with the next three command line arguments." nil nil) 8851Call `ediff-directories' with the next three command line arguments.")
8856(autoload 'ediff-directories3-command "ediff" "\ 8852(autoload 'ediff-directories3-command "ediff" "\
8857Call `ediff-directories3' with the next four command line arguments." nil nil) 8853Call `ediff-directories3' with the next four command line arguments.")
8858(autoload 'ediff-merge-directories-command "ediff" "\ 8854(autoload 'ediff-merge-directories-command "ediff" "\
8859Call `ediff-merge-directories' with the next three command line arguments." nil nil) 8855Call `ediff-merge-directories' with the next three command line arguments.")
8860(autoload 'ediff-merge-directories-with-ancestor-command "ediff" "\ 8856(autoload 'ediff-merge-directories-with-ancestor-command "ediff" "\
8861Call `ediff-merge-directories-with-ancestor' with the next four command line 8857Call `ediff-merge-directories-with-ancestor' with the next four command line
8862arguments." nil nil) 8858arguments.")
8863(register-definition-prefixes "ediff" '("ediff-")) 8859(register-definition-prefixes "ediff" '("ediff-"))
8864 8860
8865 8861
@@ -8870,7 +8866,7 @@ arguments." nil nil)
8870 8866
8871;;; Generated autoloads from vc/ediff-help.el 8867;;; Generated autoloads from vc/ediff-help.el
8872 8868
8873(autoload 'ediff-customize "ediff-help" nil t nil) 8869(autoload 'ediff-customize "ediff-help" nil t)
8874(register-definition-prefixes "ediff-help" '("ediff-")) 8870(register-definition-prefixes "ediff-help" '("ediff-"))
8875 8871
8876 8872
@@ -8887,7 +8883,7 @@ arguments." nil nil)
8887;;; Generated autoloads from vc/ediff-mult.el 8883;;; Generated autoloads from vc/ediff-mult.el
8888 8884
8889(autoload 'ediff-show-registry "ediff-mult" "\ 8885(autoload 'ediff-show-registry "ediff-mult" "\
8890Display Ediff's registry." t nil) 8886Display Ediff's registry." t)
8891(defalias 'eregistry #'ediff-show-registry) 8887(defalias 'eregistry #'ediff-show-registry)
8892(register-definition-prefixes "ediff-mult" '("ediff-")) 8888(register-definition-prefixes "ediff-mult" '("ediff-"))
8893 8889
@@ -8902,11 +8898,11 @@ Display Ediff's registry." t nil)
8902(autoload 'ediff-toggle-multiframe "ediff-util" "\ 8898(autoload 'ediff-toggle-multiframe "ediff-util" "\
8903Switch from multiframe display to single-frame display and back. 8899Switch from multiframe display to single-frame display and back.
8904To change the default, set the variable `ediff-window-setup-function', 8900To change the default, set the variable `ediff-window-setup-function',
8905which see." t nil) 8901which see." t)
8906(autoload 'ediff-toggle-use-toolbar "ediff-util" "\ 8902(autoload 'ediff-toggle-use-toolbar "ediff-util" "\
8907Enable or disable Ediff toolbar. 8903Enable or disable Ediff toolbar.
8908Works only in versions of Emacs that support toolbars. 8904Works only in versions of Emacs that support toolbars.
8909To change the default, set the variable `ediff-use-toolbar-p', which see." t nil) 8905To change the default, set the variable `ediff-use-toolbar-p', which see." t)
8910(register-definition-prefixes "ediff-util" '("ediff-")) 8906(register-definition-prefixes "ediff-util" '("ediff-"))
8911 8907
8912 8908
@@ -8936,15 +8932,15 @@ keystrokes as a keyboard macro, or `\\[execute-extended-command]'
8936to edit a macro by its command name. 8932to edit a macro by its command name.
8937With a prefix argument, format the macro in a more concise way. 8933With a prefix argument, format the macro in a more concise way.
8938 8934
8939(fn KEYS &optional PREFIX FINISH-HOOK STORE-HOOK)" t nil) 8935(fn KEYS &optional PREFIX FINISH-HOOK STORE-HOOK)" t)
8940(autoload 'edit-last-kbd-macro "edmacro" "\ 8936(autoload 'edit-last-kbd-macro "edmacro" "\
8941Edit the most recently defined keyboard macro. 8937Edit the most recently defined keyboard macro.
8942 8938
8943(fn &optional PREFIX)" t nil) 8939(fn &optional PREFIX)" t)
8944(autoload 'edit-named-kbd-macro "edmacro" "\ 8940(autoload 'edit-named-kbd-macro "edmacro" "\
8945Edit a keyboard macro which has been given a name by `name-last-kbd-macro'. 8941Edit a keyboard macro which has been given a name by `name-last-kbd-macro'.
8946 8942
8947(fn &optional PREFIX)" t nil) 8943(fn &optional PREFIX)" t)
8948(autoload 'read-kbd-macro "edmacro" "\ 8944(autoload 'read-kbd-macro "edmacro" "\
8949Read the region as a keyboard macro definition. 8945Read the region as a keyboard macro definition.
8950The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\". 8946The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
@@ -8957,7 +8953,7 @@ the result is returned rather than being installed as the current macro.
8957The result will be a string if possible, otherwise an event vector. 8953The result will be a string if possible, otherwise an event vector.
8958Second argument NEED-VECTOR means to return an event vector always. 8954Second argument NEED-VECTOR means to return an event vector always.
8959 8955
8960(fn START &optional END)" t nil) 8956(fn START &optional END)" t)
8961(autoload 'format-kbd-macro "edmacro" "\ 8957(autoload 'format-kbd-macro "edmacro" "\
8962Return the keyboard macro MACRO as a human-readable string. 8958Return the keyboard macro MACRO as a human-readable string.
8963This string is suitable for passing to `read-kbd-macro'. 8959This string is suitable for passing to `read-kbd-macro'.
@@ -8965,7 +8961,7 @@ Second argument VERBOSE means to put one command per line with comments.
8965If VERBOSE is `1', put everything on one line. If VERBOSE is omitted 8961If VERBOSE is `1', put everything on one line. If VERBOSE is omitted
8966or nil, use a compact 80-column format. 8962or nil, use a compact 80-column format.
8967 8963
8968(fn &optional MACRO VERBOSE)" nil nil) 8964(fn &optional MACRO VERBOSE)")
8969(register-definition-prefixes "edmacro" '("edmacro-")) 8965(register-definition-prefixes "edmacro" '("edmacro-"))
8970 8966
8971 8967
@@ -8976,9 +8972,9 @@ Set scroll margins.
8976Argument TOP is the top margin in number of lines or percent of window. 8972Argument TOP is the top margin in number of lines or percent of window.
8977Argument BOTTOM is the bottom margin in number of lines or percent of window. 8973Argument BOTTOM is the bottom margin in number of lines or percent of window.
8978 8974
8979(fn TOP BOTTOM)" t nil) 8975(fn TOP BOTTOM)" t)
8980(autoload 'edt-emulation-on "edt" "\ 8976(autoload 'edt-emulation-on "edt" "\
8981Turn on EDT Emulation." t nil) 8977Turn on EDT Emulation." t)
8982(register-definition-prefixes "edt" '("edt-")) 8978(register-definition-prefixes "edt" '("edt-"))
8983 8979
8984 8980
@@ -9028,11 +9024,11 @@ When the user exits (with `electric-help-exit', or otherwise), the help
9028buffer's window disappears (i.e., we use `save-window-excursion'), and 9024buffer's window disappears (i.e., we use `save-window-excursion'), and
9029BUFFER is put back into its original major mode. 9025BUFFER is put back into its original major mode.
9030 9026
9031(fn THUNK &optional BUFFER NOERASE MINHEIGHT)" nil nil) 9027(fn THUNK &optional BUFFER NOERASE MINHEIGHT)")
9032(autoload 'electric-helpify "ehelp" "\ 9028(autoload 'electric-helpify "ehelp" "\
9033 9029
9034 9030
9035(fn FUN &optional NAME)" nil nil) 9031(fn FUN &optional NAME)")
9036(register-definition-prefixes "ehelp" '("ehelp-" "electric-")) 9032(register-definition-prefixes "ehelp" '("ehelp-" "electric-"))
9037 9033
9038 9034
@@ -9050,7 +9046,7 @@ for each slot. For example:
9050 9046
9051 (make-instance \\='foo :slot1 value1 :slotN valueN) 9047 (make-instance \\='foo :slot1 value1 :slotN valueN)
9052 9048
9053(fn CLASS &rest INITARGS)" nil nil) 9049(fn CLASS &rest INITARGS)")
9054(register-definition-prefixes "eieio" '("child-of-class-p" "defclass" "eieio-" "find-class" "obj" "oref" "oset" "same-class-p" "set-slot-value" "slot-" "with-slots")) 9050(register-definition-prefixes "eieio" '("child-of-class-p" "defclass" "eieio-" "find-class" "obj" "oref" "oset" "same-class-p" "set-slot-value" "slot-" "with-slots"))
9055 9051
9056 9052
@@ -9070,7 +9066,7 @@ This function creates a mock-class for CNAME and adds it into
9070SUPERCLASSES as children. 9066SUPERCLASSES as children.
9071It creates an autoload function for CNAME's constructor. 9067It creates an autoload function for CNAME's constructor.
9072 9068
9073(fn CNAME SUPERCLASSES FILENAME DOC)" nil nil) 9069(fn CNAME SUPERCLASSES FILENAME DOC)")
9074(register-definition-prefixes "eieio-core" '("class-" "eieio-" "inconsistent-class-hierarchy" "invalid-slot-" "unbound-slot")) 9070(register-definition-prefixes "eieio-core" '("class-" "eieio-" "inconsistent-class-hierarchy" "invalid-slot-" "unbound-slot"))
9075 9071
9076 9072
@@ -9080,7 +9076,7 @@ It creates an autoload function for CNAME's constructor.
9080Customize OBJ in a custom buffer. 9076Customize OBJ in a custom buffer.
9081Optional argument GROUP is the sub-group of slots to display. 9077Optional argument GROUP is the sub-group of slots to display.
9082 9078
9083(fn OBJ &optional GROUP)" nil nil) 9079(fn OBJ &optional GROUP)")
9084(register-definition-prefixes "eieio-custom" '("eieio-")) 9080(register-definition-prefixes "eieio-custom" '("eieio-"))
9085 9081
9086 9082
@@ -9096,12 +9092,12 @@ Create an object browser window to show all objects.
9096If optional ROOT-CLASS, then start with that, otherwise start with 9092If optional ROOT-CLASS, then start with that, otherwise start with
9097variable `eieio-default-superclass'. 9093variable `eieio-default-superclass'.
9098 9094
9099(fn &optional ROOT-CLASS)" t nil) 9095(fn &optional ROOT-CLASS)" t)
9100(define-obsolete-function-alias 'eieio-help-class 'cl--describe-class "25.1") 9096(define-obsolete-function-alias 'eieio-help-class 'cl--describe-class "25.1")
9101(autoload 'eieio-help-constructor "eieio-opt" "\ 9097(autoload 'eieio-help-constructor "eieio-opt" "\
9102Describe CTR if it is a class constructor. 9098Describe CTR if it is a class constructor.
9103 9099
9104(fn CTR)" nil nil) 9100(fn CTR)")
9105(make-obsolete 'eieio-help-constructor '"use `describe-function' or `cl--describe-class'." "29.1") 9101(make-obsolete 'eieio-help-constructor '"use `describe-function' or `cl--describe-class'." "29.1")
9106(register-definition-prefixes "eieio-opt" '("eieio-")) 9102(register-definition-prefixes "eieio-opt" '("eieio-"))
9107 9103
@@ -9161,7 +9157,7 @@ evaluate `(default-value \\='electric-pair-mode)'.
9161The mode's hook is called both when the mode is enabled and when 9157The mode's hook is called both when the mode is enabled and when
9162it is disabled. 9158it is disabled.
9163 9159
9164(fn &optional ARG)" t nil) 9160(fn &optional ARG)" t)
9165(autoload 'electric-pair-local-mode "elec-pair" "\ 9161(autoload 'electric-pair-local-mode "elec-pair" "\
9166Toggle `electric-pair-mode' only in this buffer. 9162Toggle `electric-pair-mode' only in this buffer.
9167 9163
@@ -9181,7 +9177,7 @@ evaluate `(buffer-local-value \\='electric-pair-mode
9181The mode's hook is called both when the mode is enabled and when 9177The mode's hook is called both when the mode is enabled and when
9182it is disabled. 9178it is disabled.
9183 9179
9184(fn &optional ARG)" t nil) 9180(fn &optional ARG)" t)
9185(register-definition-prefixes "elec-pair" '("electric-pair-")) 9181(register-definition-prefixes "elec-pair" '("electric-pair-"))
9186 9182
9187 9183
@@ -9210,7 +9206,7 @@ evaluate `elide-head-mode'.
9210The mode's hook is called both when the mode is enabled and when 9206The mode's hook is called both when the mode is enabled and when
9211it is disabled. 9207it is disabled.
9212 9208
9213(fn &optional ARG)" t nil) 9209(fn &optional ARG)" t)
9214(autoload 'elide-head "elide-head" "\ 9210(autoload 'elide-head "elide-head" "\
9215Hide header material in buffer according to `elide-head-headers-to-hide'. 9211Hide header material in buffer according to `elide-head-headers-to-hide'.
9216 9212
@@ -9219,7 +9215,7 @@ an elided material again.
9219 9215
9220This is suitable as an entry on `find-file-hook' or appropriate mode hooks. 9216This is suitable as an entry on `find-file-hook' or appropriate mode hooks.
9221 9217
9222(fn &optional ARG)" t nil) 9218(fn &optional ARG)" t)
9223(make-obsolete 'elide-head 'elide-head-mode "29.1") 9219(make-obsolete 'elide-head 'elide-head-mode "29.1")
9224(register-definition-prefixes "elide-head" '("elide-head-")) 9220(register-definition-prefixes "elide-head" '("elide-head-"))
9225 9221
@@ -9229,24 +9225,24 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks.
9229(autoload 'elint-file "elint" "\ 9225(autoload 'elint-file "elint" "\
9230Lint the file FILE. 9226Lint the file FILE.
9231 9227
9232(fn FILE)" t nil) 9228(fn FILE)" t)
9233(autoload 'elint-directory "elint" "\ 9229(autoload 'elint-directory "elint" "\
9234Lint all the .el files in DIRECTORY. 9230Lint all the .el files in DIRECTORY.
9235A complicated directory may require a lot of memory. 9231A complicated directory may require a lot of memory.
9236 9232
9237(fn DIRECTORY)" t nil) 9233(fn DIRECTORY)" t)
9238(autoload 'elint-current-buffer "elint" "\ 9234(autoload 'elint-current-buffer "elint" "\
9239Lint the current buffer. 9235Lint the current buffer.
9240If necessary, this first calls `elint-initialize'." t nil) 9236If necessary, this first calls `elint-initialize'." t)
9241(autoload 'elint-defun "elint" "\ 9237(autoload 'elint-defun "elint" "\
9242Lint the function at point. 9238Lint the function at point.
9243If necessary, this first calls `elint-initialize'." t nil) 9239If necessary, this first calls `elint-initialize'." t)
9244(autoload 'elint-initialize "elint" "\ 9240(autoload 'elint-initialize "elint" "\
9245Initialize elint. 9241Initialize elint.
9246If elint is already initialized, this does nothing, unless 9242If elint is already initialized, this does nothing, unless
9247optional prefix argument REINIT is non-nil. 9243optional prefix argument REINIT is non-nil.
9248 9244
9249(fn &optional REINIT)" t nil) 9245(fn &optional REINIT)" t)
9250(register-definition-prefixes "elint" '("elint-")) 9246(register-definition-prefixes "elint" '("elint-"))
9251 9247
9252 9248
@@ -9256,14 +9252,14 @@ optional prefix argument REINIT is non-nil.
9256Instrument FUNSYM for profiling. 9252Instrument FUNSYM for profiling.
9257FUNSYM must be a symbol of a defined function. 9253FUNSYM must be a symbol of a defined function.
9258 9254
9259(fn FUNSYM)" t nil) 9255(fn FUNSYM)" t)
9260(autoload 'elp-instrument-list "elp" "\ 9256(autoload 'elp-instrument-list "elp" "\
9261Instrument, for profiling, all functions in `elp-function-list'. 9257Instrument, for profiling, all functions in `elp-function-list'.
9262Use optional LIST if provided instead. 9258Use optional LIST if provided instead.
9263If called interactively, prompt for LIST in the minibuffer; 9259If called interactively, prompt for LIST in the minibuffer;
9264type \"nil\" to use `elp-function-list'. 9260type \"nil\" to use `elp-function-list'.
9265 9261
9266(fn &optional LIST)" t nil) 9262(fn &optional LIST)" t)
9267(autoload 'elp-instrument-package "elp" "\ 9263(autoload 'elp-instrument-package "elp" "\
9268Instrument for profiling, all functions which start with PREFIX. 9264Instrument for profiling, all functions which start with PREFIX.
9269For example, to instrument all ELP functions, do the following: 9265For example, to instrument all ELP functions, do the following:
@@ -9275,12 +9271,12 @@ instrumented. If you run this function, and then later load
9275further functions that start with PREFIX, they will not be 9271further functions that start with PREFIX, they will not be
9276instrumented automatically. 9272instrumented automatically.
9277 9273
9278(fn PREFIX)" t nil) 9274(fn PREFIX)" t)
9279(autoload 'elp-results "elp" "\ 9275(autoload 'elp-results "elp" "\
9280Display current profiling results. 9276Display current profiling results.
9281If `elp-reset-after-results' is non-nil, then current profiling 9277If `elp-reset-after-results' is non-nil, then current profiling
9282information for all instrumented functions is reset after results are 9278information for all instrumented functions is reset after results are
9283displayed." t nil) 9279displayed." t)
9284(register-definition-prefixes "elp" '("elp-")) 9280(register-definition-prefixes "elp" '("elp-"))
9285 9281
9286 9282
@@ -9384,6 +9380,17 @@ displayed." t nil)
9384(register-definition-prefixes "ede/emacs" '("ede-emacs-")) 9380(register-definition-prefixes "ede/emacs" '("ede-emacs-"))
9385 9381
9386 9382
9383;;; Generated autoloads from textmodes/emacs-authors-mode.el
9384
9385(autoload 'emacs-authors-mode "emacs-authors-mode" "\
9386Major mode for viewing \"etc/AUTHORS\" from the Emacs distribution.
9387Provides some basic font locking and not much else.
9388
9389(fn)" t)
9390(define-obsolete-function-alias 'etc-authors-mode #'emacs-authors-mode "29.1")
9391(register-definition-prefixes "emacs-authors-mode" '("emacs-authors-" "etc-authors-"))
9392
9393
9387;;; Generated autoloads from emacs-lock.el 9394;;; Generated autoloads from emacs-lock.el
9388 9395
9389(autoload 'emacs-lock-mode "emacs-lock" "\ 9396(autoload 'emacs-lock-mode "emacs-lock" "\
@@ -9407,7 +9414,7 @@ Other values are interpreted as usual.
9407See also `emacs-lock-unlockable-modes', which exempts buffers under 9414See also `emacs-lock-unlockable-modes', which exempts buffers under
9408some major modes from being locked under some circumstances. 9415some major modes from being locked under some circumstances.
9409 9416
9410(fn &optional ARG)" t nil) 9417(fn &optional ARG)" t)
9411(register-definition-prefixes "emacs-lock" '("emacs-lock-")) 9418(register-definition-prefixes "emacs-lock" '("emacs-lock-"))
9412 9419
9413 9420
@@ -9416,11 +9423,11 @@ some major modes from being locked under some circumstances.
9416(autoload 'emacs-news-mode "emacs-news-mode" "\ 9423(autoload 'emacs-news-mode "emacs-news-mode" "\
9417Major mode for editing the Emacs NEWS file. 9424Major mode for editing the Emacs NEWS file.
9418 9425
9419(fn)" t nil) 9426(fn)" t)
9420(autoload 'emacs-news-view-mode "emacs-news-mode" "\ 9427(autoload 'emacs-news-view-mode "emacs-news-mode" "\
9421Major mode for viewing the Emacs NEWS file. 9428Major mode for viewing the Emacs NEWS file.
9422 9429
9423(fn)" t nil) 9430(fn)" t)
9424(register-definition-prefixes "emacs-news-mode" '("emacs-news-")) 9431(register-definition-prefixes "emacs-news-mode" '("emacs-news-"))
9425 9432
9426 9433
@@ -9434,7 +9441,7 @@ Already submitted bugs can be found in the Emacs bug tracker:
9434 9441
9435 https://debbugs.gnu.org/cgi/pkgreport.cgi?package=emacs;max-bugs=100;base-order=1;bug-rev=1 9442 https://debbugs.gnu.org/cgi/pkgreport.cgi?package=emacs;max-bugs=100;base-order=1;bug-rev=1
9436 9443
9437(fn TOPIC &optional UNUSED)" t nil) 9444(fn TOPIC &optional UNUSED)" t)
9438(set-advertised-calling-convention 'report-emacs-bug '(topic) '"24.5") 9445(set-advertised-calling-convention 'report-emacs-bug '(topic) '"24.5")
9439(autoload 'submit-emacs-patch "emacsbug" "\ 9446(autoload 'submit-emacs-patch "emacsbug" "\
9440Send an Emacs patch to the Emacs maintainers. 9447Send an Emacs patch to the Emacs maintainers.
@@ -9442,7 +9449,7 @@ Interactively, you will be prompted for SUBJECT and a patch FILE
9442name (which will be attached to the mail). You will end up in a 9449name (which will be attached to the mail). You will end up in a
9443Message buffer where you can explain more about the patch. 9450Message buffer where you can explain more about the patch.
9444 9451
9445(fn SUBJECT FILE)" t nil) 9452(fn SUBJECT FILE)" t)
9446(register-definition-prefixes "emacsbug" '("emacs-bug--system-description" "report-emacs-bug-")) 9453(register-definition-prefixes "emacsbug" '("emacs-bug--system-description" "report-emacs-bug-"))
9447 9454
9448 9455
@@ -9451,60 +9458,60 @@ Message buffer where you can explain more about the patch.
9451(autoload 'emerge-files "emerge" "\ 9458(autoload 'emerge-files "emerge" "\
9452Run Emerge on two files FILE-A and FILE-B. 9459Run Emerge on two files FILE-A and FILE-B.
9453 9460
9454(fn ARG FILE-A FILE-B FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) 9461(fn ARG FILE-A FILE-B FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t)
9455(autoload 'emerge-files-with-ancestor "emerge" "\ 9462(autoload 'emerge-files-with-ancestor "emerge" "\
9456Run Emerge on two files, giving another file as the ancestor. 9463Run Emerge on two files, giving another file as the ancestor.
9457 9464
9458(fn ARG FILE-A FILE-B FILE-ANCESTOR FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) 9465(fn ARG FILE-A FILE-B FILE-ANCESTOR FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t)
9459(autoload 'emerge-buffers "emerge" "\ 9466(autoload 'emerge-buffers "emerge" "\
9460Run Emerge on two buffers BUFFER-A and BUFFER-B. 9467Run Emerge on two buffers BUFFER-A and BUFFER-B.
9461 9468
9462(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) 9469(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS QUIT-HOOKS)" t)
9463(autoload 'emerge-buffers-with-ancestor "emerge" "\ 9470(autoload 'emerge-buffers-with-ancestor "emerge" "\
9464Run Emerge on two buffers, giving another buffer as the ancestor. 9471Run Emerge on two buffers, giving another buffer as the ancestor.
9465 9472
9466(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) 9473(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t)
9467(autoload 'emerge-files-command "emerge" nil nil nil) 9474(autoload 'emerge-files-command "emerge")
9468(autoload 'emerge-files-with-ancestor-command "emerge" nil nil nil) 9475(autoload 'emerge-files-with-ancestor-command "emerge")
9469(autoload 'emerge-files-remote "emerge" "\ 9476(autoload 'emerge-files-remote "emerge" "\
9470 9477
9471 9478
9472(fn FILE-A FILE-B FILE-OUT)" nil nil) 9479(fn FILE-A FILE-B FILE-OUT)")
9473(autoload 'emerge-files-with-ancestor-remote "emerge" "\ 9480(autoload 'emerge-files-with-ancestor-remote "emerge" "\
9474 9481
9475 9482
9476(fn FILE-A FILE-B FILE-ANC FILE-OUT)" nil nil) 9483(fn FILE-A FILE-B FILE-ANC FILE-OUT)")
9477(autoload 'emerge-revisions "emerge" "\ 9484(autoload 'emerge-revisions "emerge" "\
9478Emerge two RCS revisions of a file. 9485Emerge two RCS revisions of a file.
9479 9486
9480(fn ARG FILE REVISION-A REVISION-B &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) 9487(fn ARG FILE REVISION-A REVISION-B &optional STARTUP-HOOKS QUIT-HOOKS)" t)
9481(autoload 'emerge-revisions-with-ancestor "emerge" "\ 9488(autoload 'emerge-revisions-with-ancestor "emerge" "\
9482Emerge two RCS revisions of a file, with another revision as ancestor. 9489Emerge two RCS revisions of a file, with another revision as ancestor.
9483 9490
9484(fn ARG FILE REVISION-A REVISION-B ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) 9491(fn ARG FILE REVISION-A REVISION-B ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t)
9485(autoload 'emerge-merge-directories "emerge" "\ 9492(autoload 'emerge-merge-directories "emerge" "\
9486 9493
9487 9494
9488(fn A-DIR B-DIR ANCESTOR-DIR OUTPUT-DIR)" t nil) 9495(fn A-DIR B-DIR ANCESTOR-DIR OUTPUT-DIR)" t)
9489(register-definition-prefixes "emerge" '("emerge-")) 9496(register-definition-prefixes "emerge" '("emerge-"))
9490 9497
9491 9498
9492;;; Generated autoloads from international/emoji.el 9499;;; Generated autoloads from international/emoji.el
9493 9500
9494(autoload 'emoji-insert "emoji" "\ 9501(autoload 'emoji-insert "emoji" "\
9495Choose and insert an emoji glyph." t nil) 9502Choose and insert an emoji glyph." t)
9496(autoload 'emoji-recent "emoji" "\ 9503(autoload 'emoji-recent "emoji" "\
9497Choose and insert one of the recently-used emoji glyphs." t nil) 9504Choose and insert one of the recently-used emoji glyphs." t)
9498(autoload 'emoji-search "emoji" "\ 9505(autoload 'emoji-search "emoji" "\
9499Choose and insert an emoji glyph by typing its Unicode name. 9506Choose and insert an emoji glyph by typing its Unicode name.
9500This command prompts for an emoji name, with completion, and 9507This command prompts for an emoji name, with completion, and
9501inserts it. It recognizes the Unicode Standard names of emoji, 9508inserts it. It recognizes the Unicode Standard names of emoji,
9502and also consults the `emoji-alternate-names' alist." t nil) 9509and also consults the `emoji-alternate-names' alist." t)
9503(autoload 'emoji-list "emoji" "\ 9510(autoload 'emoji-list "emoji" "\
9504List emojis and insert the one that's selected. 9511List emojis and insert the one that's selected.
9505Select the emoji by typing \\<emoji-list-mode-map>\\[emoji-list-select] on its picture. 9512Select the emoji by typing \\<emoji-list-mode-map>\\[emoji-list-select] on its picture.
9506The glyph will be inserted into the buffer that was current 9513The glyph will be inserted into the buffer that was current
9507when the command was invoked." t nil) 9514when the command was invoked." t)
9508(autoload 'emoji-describe "emoji" "\ 9515(autoload 'emoji-describe "emoji" "\
9509Display the name of the grapheme cluster composed from GLYPH. 9516Display the name of the grapheme cluster composed from GLYPH.
9510GLYPH should be a string of one or more characters which together 9517GLYPH should be a string of one or more characters which together
@@ -9514,14 +9521,14 @@ could also be any character, not just emoji).
9514If called from Lisp, return the name as a string; return nil if 9521If called from Lisp, return the name as a string; return nil if
9515the name is not known. 9522the name is not known.
9516 9523
9517(fn GLYPH &optional INTERACTIVE)" t nil) 9524(fn GLYPH &optional INTERACTIVE)" t)
9518(autoload 'emoji-zoom-increase "emoji" "\ 9525(autoload 'emoji-zoom-increase "emoji" "\
9519Increase the size of the character under point. 9526Increase the size of the character under point.
9520FACTOR is the multiplication factor for the size. 9527FACTOR is the multiplication factor for the size.
9521 9528
9522(fn &optional FACTOR)" t nil) 9529(fn &optional FACTOR)" t)
9523(autoload 'emoji-zoom-decrease "emoji" "\ 9530(autoload 'emoji-zoom-decrease "emoji" "\
9524Decrease the size of the character under point." t nil) 9531Decrease the size of the character under point." t)
9525(register-definition-prefixes "emoji" '("emoji-")) 9532(register-definition-prefixes "emoji" '("emoji-"))
9526 9533
9527 9534
@@ -9556,15 +9563,15 @@ evaluate `enriched-mode'.
9556The mode's hook is called both when the mode is enabled and when 9563The mode's hook is called both when the mode is enabled and when
9557it is disabled. 9564it is disabled.
9558 9565
9559(fn &optional ARG)" t nil) 9566(fn &optional ARG)" t)
9560(autoload 'enriched-encode "enriched" "\ 9567(autoload 'enriched-encode "enriched" "\
9561 9568
9562 9569
9563(fn FROM TO ORIG-BUF)" nil nil) 9570(fn FROM TO ORIG-BUF)")
9564(autoload 'enriched-decode "enriched" "\ 9571(autoload 'enriched-decode "enriched" "\
9565 9572
9566 9573
9567(fn FROM TO)" nil nil) 9574(fn FROM TO)")
9568(register-definition-prefixes "enriched" '("enriched-")) 9575(register-definition-prefixes "enriched" '("enriched-"))
9569 9576
9570 9577
@@ -9573,11 +9580,11 @@ it is disabled.
9573(autoload 'epa-list-keys "epa" "\ 9580(autoload 'epa-list-keys "epa" "\
9574List all keys matched with NAME from the public keyring. 9581List all keys matched with NAME from the public keyring.
9575 9582
9576(fn &optional NAME)" t nil) 9583(fn &optional NAME)" t)
9577(autoload 'epa-list-secret-keys "epa" "\ 9584(autoload 'epa-list-secret-keys "epa" "\
9578List all keys matched with NAME from the private keyring. 9585List all keys matched with NAME from the private keyring.
9579 9586
9580(fn &optional NAME)" t nil) 9587(fn &optional NAME)" t)
9581(autoload 'epa-select-keys "epa" "\ 9588(autoload 'epa-select-keys "epa" "\
9582Display a user's keyring and ask him to select keys. 9589Display a user's keyring and ask him to select keys.
9583CONTEXT is an `epg-context'. 9590CONTEXT is an `epg-context'.
@@ -9586,24 +9593,24 @@ NAMES is a list of strings to be matched with keys. If it is nil, all
9586the keys are listed. 9593the keys are listed.
9587If SECRET is non-nil, list secret keys instead of public keys. 9594If SECRET is non-nil, list secret keys instead of public keys.
9588 9595
9589(fn CONTEXT PROMPT &optional NAMES SECRET)" nil nil) 9596(fn CONTEXT PROMPT &optional NAMES SECRET)")
9590(autoload 'epa-decrypt-file "epa" "\ 9597(autoload 'epa-decrypt-file "epa" "\
9591Decrypt DECRYPT-FILE into PLAIN-FILE. 9598Decrypt DECRYPT-FILE into PLAIN-FILE.
9592If you do not specify PLAIN-FILE, this functions prompts for the value to use. 9599If you do not specify PLAIN-FILE, this functions prompts for the value to use.
9593 9600
9594(fn DECRYPT-FILE &optional PLAIN-FILE)" t nil) 9601(fn DECRYPT-FILE &optional PLAIN-FILE)" t)
9595(autoload 'epa-verify-file "epa" "\ 9602(autoload 'epa-verify-file "epa" "\
9596Verify FILE. 9603Verify FILE.
9597 9604
9598(fn FILE)" t nil) 9605(fn FILE)" t)
9599(autoload 'epa-sign-file "epa" "\ 9606(autoload 'epa-sign-file "epa" "\
9600Sign FILE by SIGNERS keys selected. 9607Sign FILE by SIGNERS keys selected.
9601 9608
9602(fn FILE SIGNERS MODE)" t nil) 9609(fn FILE SIGNERS MODE)" t)
9603(autoload 'epa-encrypt-file "epa" "\ 9610(autoload 'epa-encrypt-file "epa" "\
9604Encrypt FILE for RECIPIENTS. 9611Encrypt FILE for RECIPIENTS.
9605 9612
9606(fn FILE RECIPIENTS)" t nil) 9613(fn FILE RECIPIENTS)" t)
9607(autoload 'epa-decrypt-region "epa" "\ 9614(autoload 'epa-decrypt-region "epa" "\
9608Decrypt the current region between START and END. 9615Decrypt the current region between START and END.
9609 9616
@@ -9627,14 +9634,14 @@ For example:
9627 (epg-decrypt-string context (buffer-substring start end)) 9634 (epg-decrypt-string context (buffer-substring start end))
9628 \\='utf-8)) 9635 \\='utf-8))
9629 9636
9630(fn START END &optional MAKE-BUFFER-FUNCTION)" t nil) 9637(fn START END &optional MAKE-BUFFER-FUNCTION)" t)
9631(autoload 'epa-decrypt-armor-in-region "epa" "\ 9638(autoload 'epa-decrypt-armor-in-region "epa" "\
9632Decrypt OpenPGP armors in the current region between START and END. 9639Decrypt OpenPGP armors in the current region between START and END.
9633 9640
9634Don't use this command in Lisp programs! 9641Don't use this command in Lisp programs!
9635See the reason described in the `epa-decrypt-region' documentation. 9642See the reason described in the `epa-decrypt-region' documentation.
9636 9643
9637(fn START END)" t nil) 9644(fn START END)" t)
9638(function-put 'epa-decrypt-armor-in-region 'interactive-only 't) 9645(function-put 'epa-decrypt-armor-in-region 'interactive-only 't)
9639(autoload 'epa-verify-region "epa" "\ 9646(autoload 'epa-verify-region "epa" "\
9640Verify the current region between START and END. 9647Verify the current region between START and END.
@@ -9654,7 +9661,7 @@ For example:
9654 (epg-verify-string context (buffer-substring start end)) 9661 (epg-verify-string context (buffer-substring start end))
9655 \\='utf-8)) 9662 \\='utf-8))
9656 9663
9657(fn START END)" t nil) 9664(fn START END)" t)
9658(function-put 'epa-verify-region 'interactive-only 't) 9665(function-put 'epa-verify-region 'interactive-only 't)
9659(autoload 'epa-verify-cleartext-in-region "epa" "\ 9666(autoload 'epa-verify-cleartext-in-region "epa" "\
9660Verify OpenPGP cleartext signed messages in current region from START to END. 9667Verify OpenPGP cleartext signed messages in current region from START to END.
@@ -9662,7 +9669,7 @@ Verify OpenPGP cleartext signed messages in current region from START to END.
9662Don't use this command in Lisp programs! 9669Don't use this command in Lisp programs!
9663See the reason described in the `epa-verify-region' documentation. 9670See the reason described in the `epa-verify-region' documentation.
9664 9671
9665(fn START END)" t nil) 9672(fn START END)" t)
9666(function-put 'epa-verify-cleartext-in-region 'interactive-only 't) 9673(function-put 'epa-verify-cleartext-in-region 'interactive-only 't)
9667(autoload 'epa-sign-region "epa" "\ 9674(autoload 'epa-sign-region "epa" "\
9668Sign the current region between START and END by SIGNERS keys selected. 9675Sign the current region between START and END by SIGNERS keys selected.
@@ -9681,7 +9688,7 @@ For example:
9681 context 9688 context
9682 (encode-coding-string (buffer-substring start end) \\='utf-8))) 9689 (encode-coding-string (buffer-substring start end) \\='utf-8)))
9683 9690
9684(fn START END SIGNERS MODE)" t nil) 9691(fn START END SIGNERS MODE)" t)
9685(function-put 'epa-sign-region 'interactive-only 't) 9692(function-put 'epa-sign-region 'interactive-only 't)
9686(autoload 'epa-encrypt-region "epa" "\ 9693(autoload 'epa-encrypt-region "epa" "\
9687Encrypt the current region between START and END for RECIPIENTS. 9694Encrypt the current region between START and END for RECIPIENTS.
@@ -9701,45 +9708,45 @@ For example:
9701 (encode-coding-string (buffer-substring start end) \\='utf-8) 9708 (encode-coding-string (buffer-substring start end) \\='utf-8)
9702 nil)) 9709 nil))
9703 9710
9704(fn START END RECIPIENTS SIGN SIGNERS)" t nil) 9711(fn START END RECIPIENTS SIGN SIGNERS)" t)
9705(function-put 'epa-encrypt-region 'interactive-only 't) 9712(function-put 'epa-encrypt-region 'interactive-only 't)
9706(autoload 'epa-delete-keys "epa" "\ 9713(autoload 'epa-delete-keys "epa" "\
9707Delete selected KEYS. 9714Delete selected KEYS.
9708 9715
9709(fn KEYS &optional ALLOW-SECRET)" t nil) 9716(fn KEYS &optional ALLOW-SECRET)" t)
9710(autoload 'epa-import-keys "epa" "\ 9717(autoload 'epa-import-keys "epa" "\
9711Import keys from FILE. 9718Import keys from FILE.
9712 9719
9713(fn FILE)" t nil) 9720(fn FILE)" t)
9714(autoload 'epa-import-keys-region "epa" "\ 9721(autoload 'epa-import-keys-region "epa" "\
9715Import keys from the region. 9722Import keys from the region.
9716 9723
9717(fn START END)" t nil) 9724(fn START END)" t)
9718(autoload 'epa-import-armor-in-region "epa" "\ 9725(autoload 'epa-import-armor-in-region "epa" "\
9719Import keys in the OpenPGP armor format in the current region from START to END. 9726Import keys in the OpenPGP armor format in the current region from START to END.
9720 9727
9721(fn START END)" t nil) 9728(fn START END)" t)
9722(autoload 'epa-export-keys "epa" "\ 9729(autoload 'epa-export-keys "epa" "\
9723Export selected KEYS to FILE. 9730Export selected KEYS to FILE.
9724 9731
9725(fn KEYS FILE)" t nil) 9732(fn KEYS FILE)" t)
9726(autoload 'epa-insert-keys "epa" "\ 9733(autoload 'epa-insert-keys "epa" "\
9727Insert selected KEYS after the point. 9734Insert selected KEYS after the point.
9728 9735
9729(fn KEYS)" t nil) 9736(fn KEYS)" t)
9730(register-definition-prefixes "epa" '("epa-")) 9737(register-definition-prefixes "epa" '("epa-"))
9731 9738
9732 9739
9733;;; Generated autoloads from epa-dired.el 9740;;; Generated autoloads from epa-dired.el
9734 9741
9735(autoload 'epa-dired-do-decrypt "epa-dired" "\ 9742(autoload 'epa-dired-do-decrypt "epa-dired" "\
9736Decrypt marked files." t nil) 9743Decrypt marked files." t)
9737(autoload 'epa-dired-do-verify "epa-dired" "\ 9744(autoload 'epa-dired-do-verify "epa-dired" "\
9738Verify marked files." t nil) 9745Verify marked files." t)
9739(autoload 'epa-dired-do-sign "epa-dired" "\ 9746(autoload 'epa-dired-do-sign "epa-dired" "\
9740Sign marked files." t nil) 9747Sign marked files." t)
9741(autoload 'epa-dired-do-encrypt "epa-dired" "\ 9748(autoload 'epa-dired-do-encrypt "epa-dired" "\
9742Encrypt marked files." t nil) 9749Encrypt marked files." t)
9743 9750
9744 9751
9745;;; Generated autoloads from epa-file.el 9752;;; Generated autoloads from epa-file.el
@@ -9747,9 +9754,9 @@ Encrypt marked files." t nil)
9747(autoload 'epa-file-handler "epa-file" "\ 9754(autoload 'epa-file-handler "epa-file" "\
9748 9755
9749 9756
9750(fn OPERATION &rest ARGS)" nil nil) 9757(fn OPERATION &rest ARGS)")
9751(autoload 'epa-file-enable "epa-file" nil t nil) 9758(autoload 'epa-file-enable "epa-file" nil t)
9752(autoload 'epa-file-disable "epa-file" nil t nil) 9759(autoload 'epa-file-disable "epa-file" nil t)
9753(register-definition-prefixes "epa-file" '("epa-")) 9760(register-definition-prefixes "epa-file" '("epa-"))
9754 9761
9755 9762
@@ -9766,7 +9773,7 @@ exact matches.
9766Note that the request may fail if the query is not specific 9773Note that the request may fail if the query is not specific
9767enough, since keyservers have strict timeout settings. 9774enough, since keyservers have strict timeout settings.
9768 9775
9769(fn QUERY EXACT)" t nil) 9776(fn QUERY EXACT)" t)
9770(register-definition-prefixes "epa-ks" '("epa-k")) 9777(register-definition-prefixes "epa-ks" '("epa-k"))
9771 9778
9772 9779
@@ -9789,14 +9796,14 @@ evaluate `epa-mail-mode'.
9789The mode's hook is called both when the mode is enabled and when 9796The mode's hook is called both when the mode is enabled and when
9790it is disabled. 9797it is disabled.
9791 9798
9792(fn &optional ARG)" t nil) 9799(fn &optional ARG)" t)
9793(autoload 'epa-mail-decrypt "epa-mail" "\ 9800(autoload 'epa-mail-decrypt "epa-mail" "\
9794Decrypt OpenPGP armors in the current buffer. 9801Decrypt OpenPGP armors in the current buffer.
9795The buffer is expected to contain a mail message." t nil) 9802The buffer is expected to contain a mail message." t)
9796(function-put 'epa-mail-decrypt 'interactive-only 't) 9803(function-put 'epa-mail-decrypt 'interactive-only 't)
9797(autoload 'epa-mail-verify "epa-mail" "\ 9804(autoload 'epa-mail-verify "epa-mail" "\
9798Verify OpenPGP cleartext signed messages in the current buffer. 9805Verify OpenPGP cleartext signed messages in the current buffer.
9799The buffer is expected to contain a mail message." t nil) 9806The buffer is expected to contain a mail message." t)
9800(function-put 'epa-mail-verify 'interactive-only 't) 9807(function-put 'epa-mail-verify 'interactive-only 't)
9801(autoload 'epa-mail-sign "epa-mail" "\ 9808(autoload 'epa-mail-sign "epa-mail" "\
9802Sign the current buffer. 9809Sign the current buffer.
@@ -9805,7 +9812,7 @@ performed with your default key.
9805With prefix argument, asks you to select interactively the key to 9812With prefix argument, asks you to select interactively the key to
9806use from your key ring. 9813use from your key ring.
9807 9814
9808(fn START END SIGNERS MODE)" t nil) 9815(fn START END SIGNERS MODE)" t)
9809(function-put 'epa-mail-sign 'interactive-only 't) 9816(function-put 'epa-mail-sign 'interactive-only 't)
9810(autoload 'epa-mail-encrypt "epa-mail" "\ 9817(autoload 'epa-mail-encrypt "epa-mail" "\
9811Encrypt the outgoing mail message in the current buffer. 9818Encrypt the outgoing mail message in the current buffer.
@@ -9820,10 +9827,10 @@ or nil meaning use the defaults.
9820 9827
9821SIGNERS is a list of keys to sign the message with. 9828SIGNERS is a list of keys to sign the message with.
9822 9829
9823(fn &optional RECIPIENTS SIGNERS)" t nil) 9830(fn &optional RECIPIENTS SIGNERS)" t)
9824(autoload 'epa-mail-import-keys "epa-mail" "\ 9831(autoload 'epa-mail-import-keys "epa-mail" "\
9825Import keys in the OpenPGP armor format in the current buffer. 9832Import keys in the OpenPGP armor format in the current buffer.
9826The buffer is expected to contain a mail message." t nil) 9833The buffer is expected to contain a mail message." t)
9827(function-put 'epa-mail-import-keys 'interactive-only 't) 9834(function-put 'epa-mail-import-keys 'interactive-only 't)
9828(defvar epa-global-mail-mode nil "\ 9835(defvar epa-global-mail-mode nil "\
9829Non-nil if Epa-Global-Mail mode is enabled. 9836Non-nil if Epa-Global-Mail mode is enabled.
@@ -9850,7 +9857,7 @@ evaluate `(default-value \\='epa-global-mail-mode)'.
9850The mode's hook is called both when the mode is enabled and when 9857The mode's hook is called both when the mode is enabled and when
9851it is disabled. 9858it is disabled.
9852 9859
9853(fn &optional ARG)" t nil) 9860(fn &optional ARG)" t)
9854(register-definition-prefixes "epa-mail" '("epa-mail-")) 9861(register-definition-prefixes "epa-mail" '("epa-mail-"))
9855 9862
9856 9863
@@ -9860,7 +9867,7 @@ it is disabled.
9860(autoload 'epg-make-context "epg" "\ 9867(autoload 'epg-make-context "epg" "\
9861Return a context object. 9868Return a context object.
9862 9869
9863(fn &optional PROTOCOL ARMOR TEXTMODE INCLUDE-CERTS CIPHER-ALGORITHM DIGEST-ALGORITHM COMPRESS-ALGORITHM)" nil nil) 9870(fn &optional PROTOCOL ARMOR TEXTMODE INCLUDE-CERTS CIPHER-ALGORITHM DIGEST-ALGORITHM COMPRESS-ALGORITHM)")
9864(register-definition-prefixes "epg" '("epg-")) 9871(register-definition-prefixes "epg" '("epg-"))
9865 9872
9866 9873
@@ -9877,9 +9884,9 @@ Then it walks through PROGRAM-ALIST or
9877Otherwise, it tries the programs listed in the entry until the 9884Otherwise, it tries the programs listed in the entry until the
9878version requirement is met. 9885version requirement is met.
9879 9886
9880(fn PROTOCOL &optional NO-CACHE PROGRAM-ALIST)" nil nil) 9887(fn PROTOCOL &optional NO-CACHE PROGRAM-ALIST)")
9881(autoload 'epg-configuration "epg-config" "\ 9888(autoload 'epg-configuration "epg-config" "\
9882Return a list of internal configuration parameters of `epg-gpg-program'." nil nil) 9889Return a list of internal configuration parameters of `epg-gpg-program'.")
9883(make-obsolete 'epg-configuration 'epg-find-configuration "25.1") 9890(make-obsolete 'epg-configuration 'epg-find-configuration "25.1")
9884(autoload 'epg-check-configuration "epg-config" "\ 9891(autoload 'epg-check-configuration "epg-config" "\
9885Verify that a sufficient version of GnuPG is installed. 9892Verify that a sufficient version of GnuPG is installed.
@@ -9889,11 +9896,11 @@ REQ-VERSIONS should be a list with elements of the form (MIN
9889semi-open range of acceptable versions. REQ-VERSIONS may also be 9896semi-open range of acceptable versions. REQ-VERSIONS may also be
9890a single minimum version string. 9897a single minimum version string.
9891 9898
9892(fn CONFIG &optional REQ-VERSIONS)" nil nil) 9899(fn CONFIG &optional REQ-VERSIONS)")
9893(autoload 'epg-expand-group "epg-config" "\ 9900(autoload 'epg-expand-group "epg-config" "\
9894Look at CONFIG and try to expand GROUP. 9901Look at CONFIG and try to expand GROUP.
9895 9902
9896(fn CONFIG GROUP)" nil nil) 9903(fn CONFIG GROUP)")
9897(register-definition-prefixes "epg-config" '("epg-")) 9904(register-definition-prefixes "epg-config" '("epg-"))
9898 9905
9899 9906
@@ -9901,7 +9908,7 @@ Look at CONFIG and try to expand GROUP.
9901 9908
9902(push (purecopy '(erc 5 4 1)) package--builtin-versions) 9909(push (purecopy '(erc 5 4 1)) package--builtin-versions)
9903(autoload 'erc-select-read-args "erc" "\ 9910(autoload 'erc-select-read-args "erc" "\
9904Prompt the user for values of nick, server, port, and password." nil nil) 9911Prompt the user for values of nick, server, port, and password.")
9905(autoload 'erc "erc" "\ 9912(autoload 'erc "erc" "\
9906ERC is a powerful, modular, and extensible IRC client. 9913ERC is a powerful, modular, and extensible IRC client.
9907This function is the main entry point for ERC. 9914This function is the main entry point for ERC.
@@ -9929,7 +9936,7 @@ When present, ID should be an opaque object used to identify the
9929connection unequivocally. This is rarely needed and not available 9936connection unequivocally. This is rarely needed and not available
9930interactively. 9937interactively.
9931 9938
9932(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) ID)" t nil) 9939(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) ID)" '((erc-select-read-args)))
9933(defalias 'erc-select #'erc) 9940(defalias 'erc-select #'erc)
9934(autoload 'erc-tls "erc" "\ 9941(autoload 'erc-tls "erc" "\
9935ERC is a powerful, modular, and extensible IRC client. 9942ERC is a powerful, modular, and extensible IRC client.
@@ -9976,13 +9983,13 @@ symbol composed of letters from the Latin alphabet.) This option is
9976generally unneeded, however. See info node `(erc) Connecting' for use 9983generally unneeded, however. See info node `(erc) Connecting' for use
9977cases. Not available interactively. 9984cases. Not available interactively.
9978 9985
9979(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) CLIENT-CERTIFICATE ID)" t nil) 9986(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) CLIENT-CERTIFICATE ID)" '((let ((erc-default-port erc-default-port-tls)) (erc-select-read-args))))
9980(autoload 'erc-handle-irc-url "erc" "\ 9987(autoload 'erc-handle-irc-url "erc" "\
9981Use ERC to IRC on HOST:PORT in CHANNEL as USER with PASSWORD. 9988Use ERC to IRC on HOST:PORT in CHANNEL as USER with PASSWORD.
9982If ERC is already connected to HOST:PORT, simply /join CHANNEL. 9989If ERC is already connected to HOST:PORT, simply /join CHANNEL.
9983Otherwise, connect to HOST:PORT as USER and /join CHANNEL. 9990Otherwise, connect to HOST:PORT as USER and /join CHANNEL.
9984 9991
9985(fn HOST PORT CHANNEL USER PASSWORD)" nil nil) 9992(fn HOST PORT CHANNEL USER PASSWORD)")
9986(register-definition-prefixes "erc" '("define-erc-module" "erc-")) 9993(register-definition-prefixes "erc" '("define-erc-module" "erc-"))
9987 9994
9988 9995
@@ -10091,10 +10098,10 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL.
10091(autoload 'erc-determine-network "erc-networks" "\ 10098(autoload 'erc-determine-network "erc-networks" "\
10092Return the name of the network or \"Unknown\" as a symbol. 10099Return the name of the network or \"Unknown\" as a symbol.
10093Use the server parameter NETWORK if provided, otherwise parse the 10100Use the server parameter NETWORK if provided, otherwise parse the
10094server name and search for a match in `erc-networks-alist'." nil nil) 10101server name and search for a match in `erc-networks-alist'.")
10095(make-obsolete 'erc-determine-network '"maybe see `erc-networks--determine'" "29.1") 10102(make-obsolete 'erc-determine-network '"maybe see `erc-networks--determine'" "29.1")
10096(autoload 'erc-server-select "erc-networks" "\ 10103(autoload 'erc-server-select "erc-networks" "\
10097Interactively select a server to connect to using `erc-server-alist'." t nil) 10104Interactively select a server to connect to using `erc-server-alist'." t)
10098(register-definition-prefixes "erc-networks" '("erc-")) 10105(register-definition-prefixes "erc-networks" '("erc-"))
10099 10106
10100 10107
@@ -10192,9 +10199,7 @@ it has to be wrapped in `(eval (quote ...))'.
10192If NAME is already defined as a test and Emacs is running 10199If NAME is already defined as a test and Emacs is running
10193in batch mode, an error is signalled. 10200in batch mode, an error is signalled.
10194 10201
10195(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] BODY...)" nil t) 10202(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] BODY...)" nil 'macro)
10196(function-put 'ert-deftest 'doc-string-elt 3)
10197(function-put 'ert-deftest 'lisp-indent-function 2)
10198(autoload 'ert-run-tests-batch "ert" "\ 10203(autoload 'ert-run-tests-batch "ert" "\
10199Run the tests specified by SELECTOR, printing results to the terminal. 10204Run the tests specified by SELECTOR, printing results to the terminal.
10200 10205
@@ -10205,7 +10210,7 @@ ert-run-tests-batch-and-exit\" useful.
10205 10210
10206Returns the stats object. 10211Returns the stats object.
10207 10212
10208(fn &optional SELECTOR)" nil nil) 10213(fn &optional SELECTOR)")
10209(autoload 'ert-run-tests-batch-and-exit "ert" "\ 10214(autoload 'ert-run-tests-batch-and-exit "ert" "\
10210Like `ert-run-tests-batch', but exits Emacs when done. 10215Like `ert-run-tests-batch', but exits Emacs when done.
10211 10216
@@ -10214,25 +10219,25 @@ on unexpected results, or 2 if the tool detected an error outside
10214of the tests (e.g. invalid SELECTOR or bug in the code that runs 10219of the tests (e.g. invalid SELECTOR or bug in the code that runs
10215the tests). 10220the tests).
10216 10221
10217(fn &optional SELECTOR)" nil nil) 10222(fn &optional SELECTOR)")
10218(autoload 'ert-run-tests-interactively "ert" "\ 10223(autoload 'ert-run-tests-interactively "ert" "\
10219Run the tests specified by SELECTOR and display the results in a buffer. 10224Run the tests specified by SELECTOR and display the results in a buffer.
10220 10225
10221SELECTOR works as described in `ert-select-tests'. 10226SELECTOR works as described in `ert-select-tests'.
10222 10227
10223(fn SELECTOR)" t nil) 10228(fn SELECTOR)" t)
10224(defalias 'ert #'ert-run-tests-interactively) 10229(defalias 'ert #'ert-run-tests-interactively)
10225(autoload 'ert-describe-test "ert" "\ 10230(autoload 'ert-describe-test "ert" "\
10226Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). 10231Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test).
10227 10232
10228(fn TEST-OR-TEST-NAME)" t nil) 10233(fn TEST-OR-TEST-NAME)" t)
10229(register-definition-prefixes "ert" '("ert-")) 10234(register-definition-prefixes "ert" '("ert-"))
10230 10235
10231 10236
10232;;; Generated autoloads from emacs-lisp/ert-x.el 10237;;; Generated autoloads from emacs-lisp/ert-x.el
10233 10238
10234(autoload 'ert-kill-all-test-buffers "ert-x" "\ 10239(autoload 'ert-kill-all-test-buffers "ert-x" "\
10235Kill all test buffers that are still live." t nil) 10240Kill all test buffers that are still live." t)
10236(register-definition-prefixes "ert-x" '("ert-")) 10241(register-definition-prefixes "ert-x" '("ert-"))
10237 10242
10238 10243
@@ -10244,7 +10249,7 @@ This mode mainly provides some font locking.
10244 10249
10245\\{erts-mode-map} 10250\\{erts-mode-map}
10246 10251
10247(fn)" t nil) 10252(fn)" t)
10248(register-definition-prefixes "erts-mode" '("erts-")) 10253(register-definition-prefixes "erts-mode" '("erts-"))
10249 10254
10250 10255
@@ -10273,11 +10278,11 @@ This mode mainly provides some font locking.
10273(autoload 'eshell-mode "esh-mode" "\ 10278(autoload 'eshell-mode "esh-mode" "\
10274Emacs shell interactive mode. 10279Emacs shell interactive mode.
10275 10280
10276(fn)" t nil) 10281(fn)" t)
10277(autoload 'eshell-bookmark-jump "esh-mode" "\ 10282(autoload 'eshell-bookmark-jump "esh-mode" "\
10278Default bookmark handler for Eshell buffers. 10283Default bookmark handler for Eshell buffers.
10279 10284
10280(fn BOOKMARK)" nil nil) 10285(fn BOOKMARK)")
10281(register-definition-prefixes "esh-mode" '("eshell")) 10286(register-definition-prefixes "esh-mode" '("eshell"))
10282 10287
10283 10288
@@ -10326,12 +10331,12 @@ value of `eshell-buffer-name', which see.
10326Eshell is a shell-like command interpreter. For more 10331Eshell is a shell-like command interpreter. For more
10327information on Eshell, see Info node `(eshell)Top'. 10332information on Eshell, see Info node `(eshell)Top'.
10328 10333
10329(fn &optional ARG)" t nil) 10334(fn &optional ARG)" t)
10330(autoload 'eshell-command "eshell" "\ 10335(autoload 'eshell-command "eshell" "\
10331Execute the Eshell command string COMMAND. 10336Execute the Eshell command string COMMAND.
10332With prefix ARG, insert output into the current buffer at point. 10337With prefix ARG, insert output into the current buffer at point.
10333 10338
10334(fn &optional COMMAND ARG)" t nil) 10339(fn &optional COMMAND ARG)" t)
10335(autoload 'eshell-command-result "eshell" "\ 10340(autoload 'eshell-command-result "eshell" "\
10336Execute the given Eshell COMMAND, and return the result. 10341Execute the given Eshell COMMAND, and return the result.
10337The result might be any Lisp object. 10342The result might be any Lisp object.
@@ -10339,7 +10344,7 @@ If STATUS-VAR is a symbol, it will be set to the exit status of the
10339command. This is the only way to determine whether the value returned 10344command. This is the only way to determine whether the value returned
10340corresponding to a successful execution. 10345corresponding to a successful execution.
10341 10346
10342(fn COMMAND &optional STATUS-VAR)" nil nil) 10347(fn COMMAND &optional STATUS-VAR)")
10343(register-definition-prefixes "eshell" '("eshell-")) 10348(register-definition-prefixes "eshell" '("eshell-"))
10344 10349
10345 10350
@@ -10390,7 +10395,7 @@ Otherwise, `find-tag-default' is used.")
10390(autoload 'tags-table-mode "etags" "\ 10395(autoload 'tags-table-mode "etags" "\
10391Major mode for tags table file buffers. 10396Major mode for tags table file buffers.
10392 10397
10393(fn)" t nil) 10398(fn)" t)
10394(autoload 'visit-tags-table "etags" "\ 10399(autoload 'visit-tags-table "etags" "\
10395Tell tags commands to use tags table file FILE. 10400Tell tags commands to use tags table file FILE.
10396FILE should be the name of a file created with the `etags' program. 10401FILE should be the name of a file created with the `etags' program.
@@ -10403,7 +10408,7 @@ When you find a tag with \\[find-tag], the buffer it finds the tag
10403in is given a local value of this variable which is the name of the tags 10408in is given a local value of this variable which is the name of the tags
10404file the tag was in. 10409file the tag was in.
10405 10410
10406(fn FILE &optional LOCAL)" t nil) 10411(fn FILE &optional LOCAL)" t)
10407(autoload 'visit-tags-table-buffer "etags" "\ 10412(autoload 'visit-tags-table-buffer "etags" "\
10408Select the buffer containing the current tags table. 10413Select the buffer containing the current tags table.
10409Optional arg CONT specifies which tags table to visit. 10414Optional arg CONT specifies which tags table to visit.
@@ -10417,13 +10422,13 @@ Optional second arg CBUF, if non-nil, specifies the initial buffer,
10417which is important if that buffer has a local value of `tags-file-name'. 10422which is important if that buffer has a local value of `tags-file-name'.
10418Returns t if it visits a tags table, or nil if there are no more in the list. 10423Returns t if it visits a tags table, or nil if there are no more in the list.
10419 10424
10420(fn &optional CONT CBUF)" nil nil) 10425(fn &optional CONT CBUF)")
10421(autoload 'tags-table-files "etags" "\ 10426(autoload 'tags-table-files "etags" "\
10422Return a list of files in the current tags table. 10427Return a list of files in the current tags table.
10423Assumes the tags table is the current buffer. The file names are returned 10428Assumes the tags table is the current buffer. The file names are returned
10424as they appeared in the `etags' command that created the table, usually 10429as they appeared in the `etags' command that created the table, usually
10425without directory names." nil nil) 10430without directory names.")
10426(autoload 'tags-lazy-completion-table "etags" nil nil nil) 10431(autoload 'tags-lazy-completion-table "etags")
10427 (defun tags-completion-at-point-function () 10432 (defun tags-completion-at-point-function ()
10428 (if (or tags-table-list tags-file-name) 10433 (if (or tags-table-list tags-file-name)
10429 (progn 10434 (progn
@@ -10449,7 +10454,7 @@ Contrast this with the ring of marks gone to by the command.
10449 10454
10450See documentation of variable `tags-file-name'. 10455See documentation of variable `tags-file-name'.
10451 10456
10452(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) 10457(fn TAGNAME &optional NEXT-P REGEXP-P)" t)
10453(autoload 'find-tag "etags" "\ 10458(autoload 'find-tag "etags" "\
10454Find tag (in current tags table) whose name contains TAGNAME. 10459Find tag (in current tags table) whose name contains TAGNAME.
10455Select the buffer containing the tag's definition, and move point there. 10460Select the buffer containing the tag's definition, and move point there.
@@ -10469,7 +10474,7 @@ Contrast this with the ring of marks gone to by the command.
10469 10474
10470See documentation of variable `tags-file-name'. 10475See documentation of variable `tags-file-name'.
10471 10476
10472(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) 10477(fn TAGNAME &optional NEXT-P REGEXP-P)" t)
10473(make-obsolete 'find-tag 'xref-find-definitions "25.1") 10478(make-obsolete 'find-tag 'xref-find-definitions "25.1")
10474(autoload 'find-tag-other-window "etags" "\ 10479(autoload 'find-tag-other-window "etags" "\
10475Find tag (in current tags table) whose name contains TAGNAME. 10480Find tag (in current tags table) whose name contains TAGNAME.
@@ -10491,7 +10496,7 @@ Contrast this with the ring of marks gone to by the command.
10491 10496
10492See documentation of variable `tags-file-name'. 10497See documentation of variable `tags-file-name'.
10493 10498
10494(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) 10499(fn TAGNAME &optional NEXT-P REGEXP-P)" t)
10495(make-obsolete 'find-tag-other-window 'xref-find-definitions-other-window "25.1") 10500(make-obsolete 'find-tag-other-window 'xref-find-definitions-other-window "25.1")
10496(autoload 'find-tag-other-frame "etags" "\ 10501(autoload 'find-tag-other-frame "etags" "\
10497Find tag (in current tags table) whose name contains TAGNAME. 10502Find tag (in current tags table) whose name contains TAGNAME.
@@ -10513,7 +10518,7 @@ Contrast this with the ring of marks gone to by the command.
10513 10518
10514See documentation of variable `tags-file-name'. 10519See documentation of variable `tags-file-name'.
10515 10520
10516(fn TAGNAME &optional NEXT-P)" t nil) 10521(fn TAGNAME &optional NEXT-P)" t)
10517(make-obsolete 'find-tag-other-frame 'xref-find-definitions-other-frame "25.1") 10522(make-obsolete 'find-tag-other-frame 'xref-find-definitions-other-frame "25.1")
10518(autoload 'find-tag-regexp "etags" "\ 10523(autoload 'find-tag-regexp "etags" "\
10519Find tag (in current tags table) whose name matches REGEXP. 10524Find tag (in current tags table) whose name matches REGEXP.
@@ -10533,7 +10538,7 @@ Contrast this with the ring of marks gone to by the command.
10533 10538
10534See documentation of variable `tags-file-name'. 10539See documentation of variable `tags-file-name'.
10535 10540
10536(fn REGEXP &optional NEXT-P OTHER-WINDOW)" t nil) 10541(fn REGEXP &optional NEXT-P OTHER-WINDOW)" t)
10537(make-obsolete 'find-tag-regexp 'xref-find-apropos "25.1") 10542(make-obsolete 'find-tag-regexp 'xref-find-apropos "25.1")
10538(defalias 'pop-tag-mark 'xref-go-back) 10543(defalias 'pop-tag-mark 'xref-go-back)
10539(defalias 'next-file 'tags-next-file) 10544(defalias 'next-file 'tags-next-file)
@@ -10550,13 +10555,13 @@ Non-nil second argument NOVISIT means use a temporary buffer
10550Value is nil if the file was already visited; 10555Value is nil if the file was already visited;
10551if the file was newly read in, the value is the filename. 10556if the file was newly read in, the value is the filename.
10552 10557
10553(fn &optional INITIALIZE NOVISIT)" t nil) 10558(fn &optional INITIALIZE NOVISIT)" t)
10554(autoload 'tags-loop-continue "etags" "\ 10559(autoload 'tags-loop-continue "etags" "\
10555Continue last \\[tags-search] or \\[tags-query-replace] command. 10560Continue last \\[tags-search] or \\[tags-query-replace] command.
10556Used noninteractively with non-nil argument to begin such a command (the 10561Used noninteractively with non-nil argument to begin such a command (the
10557argument is passed to `next-file', which see). 10562argument is passed to `next-file', which see).
10558 10563
10559(fn &optional FIRST-TIME)" t nil) 10564(fn &optional FIRST-TIME)" t)
10560(make-obsolete 'tags-loop-continue 'fileloop-continue "27.1") 10565(make-obsolete 'tags-loop-continue 'fileloop-continue "27.1")
10561(autoload 'tags-search "etags" "\ 10566(autoload 'tags-search "etags" "\
10562Search through all files listed in tags table for match for REGEXP. 10567Search through all files listed in tags table for match for REGEXP.
@@ -10568,7 +10573,7 @@ files to search. The search will be restricted to these files.
10568 10573
10569Also see the documentation of the `tags-file-name' variable. 10574Also see the documentation of the `tags-file-name' variable.
10570 10575
10571(fn REGEXP &optional FILES)" t nil) 10576(fn REGEXP &optional FILES)" t)
10572(autoload 'tags-query-replace "etags" "\ 10577(autoload 'tags-query-replace "etags" "\
10573Do `query-replace-regexp' of FROM with TO on all files listed in tags table. 10578Do `query-replace-regexp' of FROM with TO on all files listed in tags table.
10574Third arg DELIMITED (prefix arg) means replace only word-delimited matches. 10579Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
@@ -10582,7 +10587,7 @@ type \\[help-command] at that time.
10582 10587
10583For non-interactive use, this is superseded by `fileloop-initialize-replace'. 10588For non-interactive use, this is superseded by `fileloop-initialize-replace'.
10584 10589
10585(fn FROM TO &optional DELIMITED FILES)" t nil) 10590(fn FROM TO &optional DELIMITED FILES)" t)
10586(set-advertised-calling-convention 'tags-query-replace '(from to &optional delimited) '"27.1") 10591(set-advertised-calling-convention 'tags-query-replace '(from to &optional delimited) '"27.1")
10587(autoload 'list-tags "etags" "\ 10592(autoload 'list-tags "etags" "\
10588Display list of tags in file FILE. 10593Display list of tags in file FILE.
@@ -10592,38 +10597,28 @@ usually without a directory specification. If called
10592interactively, FILE defaults to the file name of the current 10597interactively, FILE defaults to the file name of the current
10593buffer. 10598buffer.
10594 10599
10595(fn FILE &optional NEXT-MATCH)" t nil) 10600(fn FILE &optional NEXT-MATCH)" t)
10596(autoload 'tags-apropos "etags" "\ 10601(autoload 'tags-apropos "etags" "\
10597Display list of all tags in tags table REGEXP matches. 10602Display list of all tags in tags table REGEXP matches.
10598 10603
10599(fn REGEXP)" t nil) 10604(fn REGEXP)" t)
10600(make-obsolete 'tags-apropos 'xref-find-apropos "25.1") 10605(make-obsolete 'tags-apropos 'xref-find-apropos "25.1")
10601(autoload 'select-tags-table "etags" "\ 10606(autoload 'select-tags-table "etags" "\
10602Select a tags table file from a menu of those you have already used. 10607Select a tags table file from a menu of those you have already used.
10603The list of tags tables to select from is stored in `tags-table-set-list'; 10608The list of tags tables to select from is stored in `tags-table-set-list';
10604see the doc of that variable if you want to add names to the list." t nil) 10609see the doc of that variable if you want to add names to the list." t)
10605(autoload 'complete-tag "etags" "\ 10610(autoload 'complete-tag "etags" "\
10606Perform tags completion on the text around point. 10611Perform tags completion on the text around point.
10607Completes to the set of names listed in the current tags table. 10612Completes to the set of names listed in the current tags table.
10608The string to complete is chosen in the same way as the default 10613The string to complete is chosen in the same way as the default
10609for \\[find-tag] (which see)." t nil) 10614for \\[find-tag] (which see)." t)
10610(autoload 'etags--xref-backend "etags" nil nil nil) 10615(autoload 'etags--xref-backend "etags")
10611(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")) 10616(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"))
10612 10617
10613 10618
10614;;; Generated autoloads from textmodes/etc-authors-mode.el
10615
10616(autoload 'etc-authors-mode "etc-authors-mode" "\
10617Major mode for viewing \"etc/AUTHORS\" from the Emacs distribution.
10618Provides some basic font locking and not much else.
10619
10620(fn)" t nil)
10621(register-definition-prefixes "etc-authors-mode" '("etc-authors-"))
10622
10623
10624;;; Generated autoloads from language/ethio-util.el 10619;;; Generated autoloads from language/ethio-util.el
10625 10620
10626(autoload 'setup-ethiopic-environment-internal "ethio-util" nil nil nil) 10621(autoload 'setup-ethiopic-environment-internal "ethio-util")
10627(autoload 'ethio-sera-to-fidel-buffer "ethio-util" "\ 10622(autoload 'ethio-sera-to-fidel-buffer "ethio-util" "\
10628Convert the current buffer from SERA to FIDEL. 10623Convert the current buffer from SERA to FIDEL.
10629 10624
@@ -10640,7 +10635,7 @@ even if the buffer is read-only.
10640See also the descriptions of the variables 10635See also the descriptions of the variables
10641`ethio-use-colon-for-colon' and `ethio-use-three-dot-question'. 10636`ethio-use-colon-for-colon' and `ethio-use-three-dot-question'.
10642 10637
10643(fn &optional SECONDARY FORCE)" t nil) 10638(fn &optional SECONDARY FORCE)" t)
10644(autoload 'ethio-sera-to-fidel-region "ethio-util" "\ 10639(autoload 'ethio-sera-to-fidel-region "ethio-util" "\
10645Convert the characters in region from SERA to FIDEL. 10640Convert the characters in region from SERA to FIDEL.
10646 10641
@@ -10657,13 +10652,13 @@ conversion even if the buffer is read-only.
10657See also the descriptions of the variables 10652See also the descriptions of the variables
10658`ethio-use-colon-for-colon' and `ethio-use-three-dot-question'. 10653`ethio-use-colon-for-colon' and `ethio-use-three-dot-question'.
10659 10654
10660(fn BEGIN END &optional SECONDARY FORCE)" t nil) 10655(fn BEGIN END &optional SECONDARY FORCE)" t)
10661(autoload 'ethio-sera-to-fidel-marker "ethio-util" "\ 10656(autoload 'ethio-sera-to-fidel-marker "ethio-util" "\
10662Convert the regions surrounded by \"<sera>\" and \"</sera>\" from SERA to FIDEL. 10657Convert the regions surrounded by \"<sera>\" and \"</sera>\" from SERA to FIDEL.
10663Assume that each region begins with `ethio-primary-language'. 10658Assume that each region begins with `ethio-primary-language'.
10664The markers \"<sera>\" and \"</sera>\" themselves are not deleted. 10659The markers \"<sera>\" and \"</sera>\" themselves are not deleted.
10665 10660
10666(fn &optional FORCE)" t nil) 10661(fn &optional FORCE)" t)
10667(autoload 'ethio-fidel-to-sera-buffer "ethio-util" "\ 10662(autoload 'ethio-fidel-to-sera-buffer "ethio-util" "\
10668Replace all the FIDEL characters in the current buffer to the SERA format. 10663Replace all the FIDEL characters in the current buffer to the SERA format.
10669The variable `ethio-primary-language' specifies the primary 10664The variable `ethio-primary-language' specifies the primary
@@ -10680,7 +10675,7 @@ See also the descriptions of the variables
10680`ethio-use-colon-for-colon', `ethio-use-three-dot-question', 10675`ethio-use-colon-for-colon', `ethio-use-three-dot-question',
10681`ethio-quote-vowel-always' and `ethio-numeric-reduction'. 10676`ethio-quote-vowel-always' and `ethio-numeric-reduction'.
10682 10677
10683(fn &optional SECONDARY FORCE)" t nil) 10678(fn &optional SECONDARY FORCE)" t)
10684(autoload 'ethio-fidel-to-sera-region "ethio-util" "\ 10679(autoload 'ethio-fidel-to-sera-region "ethio-util" "\
10685Replace all the FIDEL characters in the region to the SERA format. 10680Replace all the FIDEL characters in the region to the SERA format.
10686 10681
@@ -10698,14 +10693,14 @@ See also the descriptions of the variables
10698`ethio-use-colon-for-colon', `ethio-use-three-dot-question', 10693`ethio-use-colon-for-colon', `ethio-use-three-dot-question',
10699`ethio-quote-vowel-always' and `ethio-numeric-reduction'. 10694`ethio-quote-vowel-always' and `ethio-numeric-reduction'.
10700 10695
10701(fn BEGIN END &optional SECONDARY FORCE)" t nil) 10696(fn BEGIN END &optional SECONDARY FORCE)" t)
10702(autoload 'ethio-fidel-to-sera-marker "ethio-util" "\ 10697(autoload 'ethio-fidel-to-sera-marker "ethio-util" "\
10703Convert the regions surrounded by \"<sera>\" and \"</sera>\" from FIDEL to SERA. 10698Convert the regions surrounded by \"<sera>\" and \"</sera>\" from FIDEL to SERA.
10704The markers \"<sera>\" and \"</sera>\" themselves are not deleted. 10699The markers \"<sera>\" and \"</sera>\" themselves are not deleted.
10705 10700
10706(fn &optional FORCE)" t nil) 10701(fn &optional FORCE)" t)
10707(autoload 'ethio-modify-vowel "ethio-util" "\ 10702(autoload 'ethio-modify-vowel "ethio-util" "\
10708Modify the vowel of the FIDEL that is under the cursor." t nil) 10703Modify the vowel of the FIDEL that is under the cursor." t)
10709(autoload 'ethio-replace-space "ethio-util" "\ 10704(autoload 'ethio-replace-space "ethio-util" "\
10710Replace ASCII spaces with Ethiopic word separators in the region. 10705Replace ASCII spaces with Ethiopic word separators in the region.
10711 10706
@@ -10719,15 +10714,15 @@ If CH = 3, with the Ethiopic colon-like word separator.
10719 10714
10720The 2nd and 3rd arguments BEGIN and END specify the region. 10715The 2nd and 3rd arguments BEGIN and END specify the region.
10721 10716
10722(fn CH BEGIN END)" t nil) 10717(fn CH BEGIN END)" t)
10723(autoload 'ethio-input-special-character "ethio-util" "\ 10718(autoload 'ethio-input-special-character "ethio-util" "\
10724This function is deprecated. 10719This function is deprecated.
10725 10720
10726(fn ARG)" t nil) 10721(fn ARG)" t)
10727(autoload 'ethio-fidel-to-tex-buffer "ethio-util" "\ 10722(autoload 'ethio-fidel-to-tex-buffer "ethio-util" "\
10728Convert each fidel characters in the current buffer into a fidel-tex command." t nil) 10723Convert each fidel characters in the current buffer into a fidel-tex command." t)
10729(autoload 'ethio-tex-to-fidel-buffer "ethio-util" "\ 10724(autoload 'ethio-tex-to-fidel-buffer "ethio-util" "\
10730Convert fidel-tex commands in the current buffer into fidel chars." t nil) 10725Convert fidel-tex commands in the current buffer into fidel chars." t)
10731(autoload 'ethio-fidel-to-java-buffer "ethio-util" "\ 10726(autoload 'ethio-fidel-to-java-buffer "ethio-util" "\
10732Convert Ethiopic characters into the Java escape sequences. 10727Convert Ethiopic characters into the Java escape sequences.
10733 10728
@@ -10735,22 +10730,22 @@ Each escape sequence is of the form \\uXXXX, where XXXX is the
10735character's codepoint (in hex) in Unicode. 10730character's codepoint (in hex) in Unicode.
10736 10731
10737If `ethio-java-save-lowercase' is non-nil, use [0-9a-f]. 10732If `ethio-java-save-lowercase' is non-nil, use [0-9a-f].
10738Otherwise, [0-9A-F]." nil nil) 10733Otherwise, [0-9A-F].")
10739(autoload 'ethio-java-to-fidel-buffer "ethio-util" "\ 10734(autoload 'ethio-java-to-fidel-buffer "ethio-util" "\
10740Convert the Java escape sequences into corresponding Ethiopic characters." nil nil) 10735Convert the Java escape sequences into corresponding Ethiopic characters.")
10741(autoload 'ethio-find-file "ethio-util" "\ 10736(autoload 'ethio-find-file "ethio-util" "\
10742Transliterate file content into Ethiopic depending on filename suffix." nil nil) 10737Transliterate file content into Ethiopic depending on filename suffix.")
10743(autoload 'ethio-write-file "ethio-util" "\ 10738(autoload 'ethio-write-file "ethio-util" "\
10744Transliterate Ethiopic characters in ASCII depending on the file extension." nil nil) 10739Transliterate Ethiopic characters in ASCII depending on the file extension.")
10745(autoload 'ethio-insert-ethio-space "ethio-util" "\ 10740(autoload 'ethio-insert-ethio-space "ethio-util" "\
10746Insert the Ethiopic word delimiter (the colon-like character). 10741Insert the Ethiopic word delimiter (the colon-like character).
10747With ARG, insert that many delimiters. 10742With ARG, insert that many delimiters.
10748 10743
10749(fn ARG)" t nil) 10744(fn ARG)" t)
10750(autoload 'ethio-composition-function "ethio-util" "\ 10745(autoload 'ethio-composition-function "ethio-util" "\
10751 10746
10752 10747
10753(fn POS TO FONT-OBJECT STRING DIRECTION)" nil nil) 10748(fn POS TO FONT-OBJECT STRING DIRECTION)")
10754(register-definition-prefixes "ethio-util" '("ethio-" "exit-ethiopic-environment")) 10749(register-definition-prefixes "ethio-util" '("ethio-" "exit-ethiopic-environment"))
10755 10750
10756 10751
@@ -10766,17 +10761,17 @@ Set the directory server to SERVER using PROTOCOL.
10766Unless NO-SAVE is non-nil, the server is saved as the default 10761Unless NO-SAVE is non-nil, the server is saved as the default
10767server for future sessions. 10762server for future sessions.
10768 10763
10769(fn SERVER PROTOCOL &optional NO-SAVE)" t nil) 10764(fn SERVER PROTOCOL &optional NO-SAVE)" t)
10770(autoload 'eudc-get-email "eudc" "\ 10765(autoload 'eudc-get-email "eudc" "\
10771Get the email field of NAME from the directory server. 10766Get the email field of NAME from the directory server.
10772If ERROR is non-nil, report an error if there is none. 10767If ERROR is non-nil, report an error if there is none.
10773 10768
10774(fn NAME &optional ERROR)" t nil) 10769(fn NAME &optional ERROR)" t)
10775(autoload 'eudc-get-phone "eudc" "\ 10770(autoload 'eudc-get-phone "eudc" "\
10776Get the phone field of NAME from the directory server. 10771Get the phone field of NAME from the directory server.
10777If ERROR is non-nil, report an error if there is none. 10772If ERROR is non-nil, report an error if there is none.
10778 10773
10779(fn NAME &optional ERROR)" t nil) 10774(fn NAME &optional ERROR)" t)
10780(autoload 'eudc-expand-try-all "eudc" "\ 10775(autoload 'eudc-expand-try-all "eudc" "\
10781Wrap `eudc-expand-inline' with a prefix argument. 10776Wrap `eudc-expand-inline' with a prefix argument.
10782If TRY-ALL-SERVERS -- the prefix argument when called 10777If TRY-ALL-SERVERS -- the prefix argument when called
@@ -10784,7 +10779,7 @@ interactively -- is non-nil, collect results from all servers.
10784If TRY-ALL-SERVERS is nil, do not try subsequent servers after 10779If TRY-ALL-SERVERS is nil, do not try subsequent servers after
10785one server returns any match. 10780one server returns any match.
10786 10781
10787(fn &optional TRY-ALL-SERVERS)" t nil) 10782(fn &optional TRY-ALL-SERVERS)" t)
10788(autoload 'eudc-expand-inline "eudc" "\ 10783(autoload 'eudc-expand-inline "eudc" "\
10789Query the directory server, and expand the query string before point. 10784Query the directory server, and expand the query string before point.
10790The query string consists of the buffer substring from the point back to 10785The query string consists of the buffer substring from the point back to
@@ -10800,11 +10795,11 @@ Multiple servers can be tried with the same query until one finds a match,
10800see `eudc-inline-expansion-servers'. If TRY-ALL-SERVERS is 10795see `eudc-inline-expansion-servers'. If TRY-ALL-SERVERS is
10801non-nil, collect results from all servers. 10796non-nil, collect results from all servers.
10802 10797
10803(fn &optional SAVE-QUERY-AS-KILL TRY-ALL-SERVERS)" t nil) 10798(fn &optional SAVE-QUERY-AS-KILL TRY-ALL-SERVERS)" t)
10804(autoload 'eudc-format-inline-expansion-result "eudc" "\ 10799(autoload 'eudc-format-inline-expansion-result "eudc" "\
10805Format a query result according to `eudc-inline-expansion-format'. 10800Format a query result according to `eudc-inline-expansion-format'.
10806 10801
10807(fn RES QUERY-ATTRS)" nil nil) 10802(fn RES QUERY-ATTRS)")
10808(autoload 'eudc-query-with-words "eudc" "\ 10803(autoload 'eudc-query-with-words "eudc" "\
10809Query the directory server, and return the matching responses. 10804Query the directory server, and return the matching responses.
10810The variable `eudc-inline-query-format' controls how to associate the 10805The variable `eudc-inline-query-format' controls how to associate the
@@ -10816,16 +10811,16 @@ Multiple servers can be tried with the same query until one finds a match,
10816see `eudc-inline-expansion-servers'. When TRY-ALL-SERVERS is non-nil, 10811see `eudc-inline-expansion-servers'. When TRY-ALL-SERVERS is non-nil,
10817keep collecting results from subsequent servers after the first match. 10812keep collecting results from subsequent servers after the first match.
10818 10813
10819(fn QUERY-WORDS &optional TRY-ALL-SERVERS)" nil nil) 10814(fn QUERY-WORDS &optional TRY-ALL-SERVERS)")
10820(autoload 'eudc-query-form "eudc" "\ 10815(autoload 'eudc-query-form "eudc" "\
10821Display a form to query the directory server. 10816Display a form to query the directory server.
10822If given a non-nil argument GET-FIELDS-FROM-SERVER, the function first 10817If given a non-nil argument GET-FIELDS-FROM-SERVER, the function first
10823queries the server for the existing fields and displays a corresponding form. 10818queries the server for the existing fields and displays a corresponding form.
10824 10819
10825(fn &optional GET-FIELDS-FROM-SERVER)" t nil) 10820(fn &optional GET-FIELDS-FROM-SERVER)" t)
10826(autoload 'eudc-load-eudc "eudc" "\ 10821(autoload 'eudc-load-eudc "eudc" "\
10827Load the Emacs Unified Directory Client. 10822Load the Emacs Unified Directory Client.
10828This does nothing except loading eudc by autoload side-effect." t nil) 10823This does nothing except loading eudc by autoload side-effect." t)
10829(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)) 10824(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))
10830(fset 'eudc-tools-menu (symbol-value 'eudc-tools-menu)) 10825(fset 'eudc-tools-menu (symbol-value 'eudc-tools-menu))
10831(register-definition-prefixes "eudc" '("eudc-")) 10826(register-definition-prefixes "eudc" '("eudc-"))
@@ -10836,27 +10831,27 @@ This does nothing except loading eudc by autoload side-effect." t nil)
10836(autoload 'eudc-display-generic-binary "eudc-bob" "\ 10831(autoload 'eudc-display-generic-binary "eudc-bob" "\
10837Display a button for unidentified binary DATA. 10832Display a button for unidentified binary DATA.
10838 10833
10839(fn DATA)" nil nil) 10834(fn DATA)")
10840(autoload 'eudc-display-url "eudc-bob" "\ 10835(autoload 'eudc-display-url "eudc-bob" "\
10841Display URL and make it clickable. 10836Display URL and make it clickable.
10842 10837
10843(fn URL)" nil nil) 10838(fn URL)")
10844(autoload 'eudc-display-mail "eudc-bob" "\ 10839(autoload 'eudc-display-mail "eudc-bob" "\
10845Display e-mail address and make it clickable. 10840Display e-mail address and make it clickable.
10846 10841
10847(fn MAIL)" nil nil) 10842(fn MAIL)")
10848(autoload 'eudc-display-sound "eudc-bob" "\ 10843(autoload 'eudc-display-sound "eudc-bob" "\
10849Display a button to play the sound DATA. 10844Display a button to play the sound DATA.
10850 10845
10851(fn DATA)" nil nil) 10846(fn DATA)")
10852(autoload 'eudc-display-jpeg-inline "eudc-bob" "\ 10847(autoload 'eudc-display-jpeg-inline "eudc-bob" "\
10853Display the JPEG DATA inline at point if possible. 10848Display the JPEG DATA inline at point if possible.
10854 10849
10855(fn DATA)" nil nil) 10850(fn DATA)")
10856(autoload 'eudc-display-jpeg-as-button "eudc-bob" "\ 10851(autoload 'eudc-display-jpeg-as-button "eudc-bob" "\
10857Display a button for the JPEG DATA. 10852Display a button for the JPEG DATA.
10858 10853
10859(fn DATA)" nil nil) 10854(fn DATA)")
10860(register-definition-prefixes "eudc-bob" '("eudc-bob-")) 10855(register-definition-prefixes "eudc-bob" '("eudc-bob-"))
10861 10856
10862 10857
@@ -10874,7 +10869,7 @@ words before point.
10874 10869
10875The return value is either nil when no match is found, or a 10870The return value is either nil when no match is found, or a
10876completion table as required for functions listed in 10871completion table as required for functions listed in
10877`completion-at-point-functions'." nil nil) 10872`completion-at-point-functions'.")
10878(autoload 'eudc-capf-message-expand-name "eudc-capf" "\ 10873(autoload 'eudc-capf-message-expand-name "eudc-capf" "\
10879Email address completion function for `message-completion-alist'. 10874Email address completion function for `message-completion-alist'.
10880 10875
@@ -10883,7 +10878,7 @@ replacing any existing entry for `message-expand-name' there,
10883with an appropriate regular expression such as for example 10878with an appropriate regular expression such as for example
10884`message-email-recipient-header-regexp', then EUDC will be 10879`message-email-recipient-header-regexp', then EUDC will be
10885queried for email addresses, and the results delivered to 10880queried for email addresses, and the results delivered to
10886`completion-at-point'." nil nil) 10881`completion-at-point'.")
10887(register-definition-prefixes "eudc-capf" '("eudc-capf-modes")) 10882(register-definition-prefixes "eudc-capf" '("eudc-capf-modes"))
10888 10883
10889 10884
@@ -10891,16 +10886,16 @@ queried for email addresses, and the results delivered to
10891 10886
10892(autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ 10887(autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\
10893Insert record at point into the BBDB database. 10888Insert record at point into the BBDB database.
10894This function can only be called from a directory query result buffer." t nil) 10889This function can only be called from a directory query result buffer." t)
10895(autoload 'eudc-try-bbdb-insert "eudc-export" "\ 10890(autoload 'eudc-try-bbdb-insert "eudc-export" "\
10896Call `eudc-insert-record-at-point-into-bbdb' if on a record." t nil) 10891Call `eudc-insert-record-at-point-into-bbdb' if on a record." t)
10897(register-definition-prefixes "eudc-export" '("eudc-")) 10892(register-definition-prefixes "eudc-export" '("eudc-"))
10898 10893
10899 10894
10900;;; Generated autoloads from net/eudc-hotlist.el 10895;;; Generated autoloads from net/eudc-hotlist.el
10901 10896
10902(autoload 'eudc-edit-hotlist "eudc-hotlist" "\ 10897(autoload 'eudc-edit-hotlist "eudc-hotlist" "\
10903Edit the hotlist of directory servers in a specialized buffer." t nil) 10898Edit the hotlist of directory servers in a specialized buffer." t)
10904(register-definition-prefixes "eudc-hotlist" '("eudc-hotlist-")) 10899(register-definition-prefixes "eudc-hotlist" '("eudc-hotlist-"))
10905 10900
10906 10901
@@ -10950,7 +10945,7 @@ Normally, a newline is automatically inserted after the header,
10950the footer and every node's printed representation. Optional 10945the footer and every node's printed representation. Optional
10951fourth arg NOSEP non-nil inhibits this. 10946fourth arg NOSEP non-nil inhibits this.
10952 10947
10953(fn PRETTY-PRINTER &optional HEADER FOOTER NOSEP)" nil nil) 10948(fn PRETTY-PRINTER &optional HEADER FOOTER NOSEP)")
10954(register-definition-prefixes "ewoc" '("ewoc-")) 10949(register-definition-prefixes "ewoc" '("ewoc-"))
10955 10950
10956 10951
@@ -10974,7 +10969,7 @@ This can also be used on the command line directly:
10974 10969
10975 emacs -f eww-browse https://gnu.org 10970 emacs -f eww-browse https://gnu.org
10976 10971
10977will start Emacs and browse the GNU web site." t nil) 10972will start Emacs and browse the GNU web site." t)
10978(autoload 'eww "eww" "\ 10973(autoload 'eww "eww" "\
10979Fetch URL and render the page. 10974Fetch URL and render the page.
10980If the input doesn't look like an URL or a domain name, the 10975If the input doesn't look like an URL or a domain name, the
@@ -10989,24 +10984,24 @@ killed after rendering.
10989 10984
10990For more information, see Info node `(eww) Top'. 10985For more information, see Info node `(eww) Top'.
10991 10986
10992(fn URL &optional NEW-BUFFER BUFFER)" t nil) 10987(fn URL &optional NEW-BUFFER BUFFER)" t)
10993 (defalias 'browse-web 'eww) 10988 (defalias 'browse-web 'eww)
10994(autoload 'eww-open-file "eww" "\ 10989(autoload 'eww-open-file "eww" "\
10995Render FILE using EWW. 10990Render FILE using EWW.
10996 10991
10997(fn FILE)" t nil) 10992(fn FILE)" t)
10998(autoload 'eww-search-words "eww" "\ 10993(autoload 'eww-search-words "eww" "\
10999Search the web for the text in the region. 10994Search the web for the text in the region.
11000If region is active (and not whitespace), search the web for 10995If region is active (and not whitespace), search the web for
11001the text between region beginning and end. Else, prompt the 10996the text between region beginning and end. Else, prompt the
11002user for a search string. See the variable `eww-search-prefix' 10997user for a search string. See the variable `eww-search-prefix'
11003for the search engine used." t nil) 10998for the search engine used." t)
11004(autoload 'eww-mode "eww" "\ 10999(autoload 'eww-mode "eww" "\
11005Mode for browsing the web. 11000Mode for browsing the web.
11006 11001
11007\\{eww-mode-map} 11002\\{eww-mode-map}
11008 11003
11009(fn)" t nil) 11004(fn)" t)
11010(autoload 'eww-browse-url "eww" "\ 11005(autoload 'eww-browse-url "eww" "\
11011Ask the EWW browser to load URL. 11006Ask the EWW browser to load URL.
11012 11007
@@ -11022,13 +11017,13 @@ in the tab-bar on an existing frame. See more options in
11022Non-interactively, this uses the optional second argument NEW-WINDOW 11017Non-interactively, this uses the optional second argument NEW-WINDOW
11023instead of `browse-url-new-window-flag'. 11018instead of `browse-url-new-window-flag'.
11024 11019
11025(fn URL &optional NEW-WINDOW)" nil nil) 11020(fn URL &optional NEW-WINDOW)")
11026(autoload 'eww-list-bookmarks "eww" "\ 11021(autoload 'eww-list-bookmarks "eww" "\
11027Display the bookmarks." t nil) 11022Display the bookmarks." t)
11028(autoload 'eww-bookmark-jump "eww" "\ 11023(autoload 'eww-bookmark-jump "eww" "\
11029Default bookmark handler for EWW buffers. 11024Default bookmark handler for EWW buffers.
11030 11025
11031(fn BOOKMARK)" nil nil) 11026(fn BOOKMARK)")
11032(register-definition-prefixes "eww" '("eww-")) 11027(register-definition-prefixes "eww" '("eww-"))
11033 11028
11034 11029
@@ -11038,14 +11033,14 @@ Default bookmark handler for EWW buffers.
11038Check if PROGRAM handles arguments Posix-style. 11033Check if PROGRAM handles arguments Posix-style.
11039If PROGRAM is non-nil, use that instead of \"find\". 11034If PROGRAM is non-nil, use that instead of \"find\".
11040 11035
11041(fn &optional PROGRAM)" nil nil) 11036(fn &optional PROGRAM)")
11042(autoload 'executable-interpret "executable" "\ 11037(autoload 'executable-interpret "executable" "\
11043Run script with user-specified args, and collect output in a buffer. 11038Run script with user-specified args, and collect output in a buffer.
11044While script runs asynchronously, you can use the \\[next-error] 11039While script runs asynchronously, you can use the \\[next-error]
11045command to find the next error. The buffer is also in `comint-mode' and 11040command to find the next error. The buffer is also in `comint-mode' and
11046`compilation-shell-minor-mode', so that you can answer any prompts. 11041`compilation-shell-minor-mode', so that you can answer any prompts.
11047 11042
11048(fn COMMAND)" t nil) 11043(fn COMMAND)" t)
11049(autoload 'executable-set-magic "executable" "\ 11044(autoload 'executable-set-magic "executable" "\
11050Set this buffer's interpreter to INTERPRETER with optional ARGUMENT. 11045Set this buffer's interpreter to INTERPRETER with optional ARGUMENT.
11051The variables `executable-magicless-file-regexp', `executable-prefix-env', 11046The variables `executable-magicless-file-regexp', `executable-prefix-env',
@@ -11053,11 +11048,11 @@ The variables `executable-magicless-file-regexp', `executable-prefix-env',
11053when and how magic numbers are inserted or replaced and scripts made 11048when and how magic numbers are inserted or replaced and scripts made
11054executable. 11049executable.
11055 11050
11056(fn INTERPRETER &optional ARGUMENT NO-QUERY-FLAG INSERT-FLAG)" t nil) 11051(fn INTERPRETER &optional ARGUMENT NO-QUERY-FLAG INSERT-FLAG)" t)
11057(autoload 'executable-make-buffer-file-executable-if-script-p "executable" "\ 11052(autoload 'executable-make-buffer-file-executable-if-script-p "executable" "\
11058Make file executable according to umask if not already executable. 11053Make file executable according to umask if not already executable.
11059If file already has any execute bits set at all, do not change existing 11054If file already has any execute bits set at all, do not change existing
11060file modes." nil nil) 11055file modes.")
11061(register-definition-prefixes "executable" '("executable-")) 11056(register-definition-prefixes "executable" '("executable-"))
11062 11057
11063 11058
@@ -11090,16 +11085,16 @@ cyclically with the functions `expand-jump-to-previous-slot' and
11090 11085
11091If ARG is omitted, point is placed at the end of the expanded text. 11086If ARG is omitted, point is placed at the end of the expanded text.
11092 11087
11093(fn TABLE ABBREVS)" nil nil) 11088(fn TABLE ABBREVS)")
11094(autoload 'expand-abbrev-hook "expand" "\ 11089(autoload 'expand-abbrev-hook "expand" "\
11095Abbrev hook used to do the expansion job of expand abbrevs. 11090Abbrev hook used to do the expansion job of expand abbrevs.
11096See `expand-add-abbrevs'. Value is non-nil if expansion was done." nil nil) 11091See `expand-add-abbrevs'. Value is non-nil if expansion was done.")
11097(autoload 'expand-jump-to-previous-slot "expand" "\ 11092(autoload 'expand-jump-to-previous-slot "expand" "\
11098Move the cursor to the previous slot in the last abbrev expansion. 11093Move the cursor to the previous slot in the last abbrev expansion.
11099This is used only in conjunction with `expand-add-abbrevs'." t nil) 11094This is used only in conjunction with `expand-add-abbrevs'." t)
11100(autoload 'expand-jump-to-next-slot "expand" "\ 11095(autoload 'expand-jump-to-next-slot "expand" "\
11101Move the cursor to the next slot in the last abbrev expansion. 11096Move the cursor to the next slot in the last abbrev expansion.
11102This is used only in conjunction with `expand-add-abbrevs'." t nil) 11097This is used only in conjunction with `expand-add-abbrevs'." t)
11103 (define-key abbrev-map "p" 'expand-jump-to-previous-slot) 11098 (define-key abbrev-map "p" 'expand-jump-to-previous-slot)
11104 (define-key abbrev-map "n" 'expand-jump-to-next-slot) 11099 (define-key abbrev-map "n" 'expand-jump-to-next-slot)
11105(register-definition-prefixes "expand" '("expand-")) 11100(register-definition-prefixes "expand" '("expand-"))
@@ -11182,7 +11177,7 @@ Variables controlling indentation style and extra features:
11182Turning on F90 mode calls the value of the variable `f90-mode-hook' 11177Turning on F90 mode calls the value of the variable `f90-mode-hook'
11183with no args, if that value is non-nil. 11178with no args, if that value is non-nil.
11184 11179
11185(fn)" t nil) 11180(fn)" t)
11186(register-definition-prefixes "f90" '("f90-")) 11181(register-definition-prefixes "f90" '("f90-"))
11187 11182
11188 11183
@@ -11210,13 +11205,13 @@ attributes.
11210The base (lowest priority) remapping may be set to something 11205The base (lowest priority) remapping may be set to something
11211other than the normal definition of FACE via `face-remap-set-base'. 11206other than the normal definition of FACE via `face-remap-set-base'.
11212 11207
11213(fn FACE &rest SPECS)" nil nil) 11208(fn FACE &rest SPECS)")
11214(autoload 'face-remap-reset-base "face-remap" "\ 11209(autoload 'face-remap-reset-base "face-remap" "\
11215Set the base remapping of FACE to the normal definition of FACE. 11210Set the base remapping of FACE to the normal definition of FACE.
11216This causes the remappings specified by `face-remap-add-relative' 11211This causes the remappings specified by `face-remap-add-relative'
11217to apply on top of the normal definition of FACE. 11212to apply on top of the normal definition of FACE.
11218 11213
11219(fn FACE)" nil nil) 11214(fn FACE)")
11220(autoload 'face-remap-set-base "face-remap" "\ 11215(autoload 'face-remap-set-base "face-remap" "\
11221Set the base remapping of FACE in the current buffer to SPECS. 11216Set the base remapping of FACE in the current buffer to SPECS.
11222This causes the remappings specified by `face-remap-add-relative' 11217This causes the remappings specified by `face-remap-add-relative'
@@ -11231,7 +11226,7 @@ to use the normal definition of FACE as the base remapping; note that
11231this is different from SPECS containing a single value nil, which means 11226this is different from SPECS containing a single value nil, which means
11232not to inherit from the global definition of FACE at all. 11227not to inherit from the global definition of FACE at all.
11233 11228
11234(fn FACE &rest SPECS)" nil nil) 11229(fn FACE &rest SPECS)")
11235(autoload 'text-scale-set "face-remap" "\ 11230(autoload 'text-scale-set "face-remap" "\
11236Set the scale factor of the default face in the current buffer to LEVEL. 11231Set the scale factor of the default face in the current buffer to LEVEL.
11237If LEVEL is non-zero, `text-scale-mode' is enabled, otherwise it is disabled. 11232If LEVEL is non-zero, `text-scale-mode' is enabled, otherwise it is disabled.
@@ -11241,7 +11236,7 @@ Each step scales the height of the default face by the variable
11241`text-scale-mode-step' (a negative number decreases the height by 11236`text-scale-mode-step' (a negative number decreases the height by
11242the same amount). 11237the same amount).
11243 11238
11244(fn LEVEL)" t nil) 11239(fn LEVEL)" t)
11245(autoload 'text-scale-increase "face-remap" "\ 11240(autoload 'text-scale-increase "face-remap" "\
11246Increase the font size of the default face in current buffer by INC steps. 11241Increase the font size of the default face in current buffer by INC steps.
11247If the new height is other than the default, `text-scale-mode' is enabled. 11242If the new height is other than the default, `text-scale-mode' is enabled.
@@ -11251,12 +11246,12 @@ Each step scales the height of the default face by the variable
11251height by the same amount). As a special case, an argument of 0 11246height by the same amount). As a special case, an argument of 0
11252will remove any scaling currently active. 11247will remove any scaling currently active.
11253 11248
11254(fn INC)" t nil) 11249(fn INC)" t)
11255(autoload 'text-scale-decrease "face-remap" "\ 11250(autoload 'text-scale-decrease "face-remap" "\
11256Decrease the font size of the default face in the current buffer by DEC steps. 11251Decrease the font size of the default face in the current buffer by DEC steps.
11257See `text-scale-increase' for more details. 11252See `text-scale-increase' for more details.
11258 11253
11259(fn DEC)" t nil) 11254(fn DEC)" t)
11260 (define-key ctl-x-map [(control ?+)] 'text-scale-adjust) 11255 (define-key ctl-x-map [(control ?+)] 'text-scale-adjust)
11261 (define-key ctl-x-map [(control ?-)] 'text-scale-adjust) 11256 (define-key ctl-x-map [(control ?-)] 'text-scale-adjust)
11262 (define-key ctl-x-map [(control ?=)] 'text-scale-adjust) 11257 (define-key ctl-x-map [(control ?=)] 'text-scale-adjust)
@@ -11294,12 +11289,12 @@ scaled even if they have an explicit `:height' setting.
11294 11289
11295See also the related command `global-text-scale-adjust'. 11290See also the related command `global-text-scale-adjust'.
11296 11291
11297(fn INC)" t nil) 11292(fn INC)" t)
11298 (define-key global-map [pinch] 'text-scale-pinch) 11293 (define-key global-map [pinch] 'text-scale-pinch)
11299(autoload 'text-scale-pinch "face-remap" "\ 11294(autoload 'text-scale-pinch "face-remap" "\
11300Adjust the height of the default face by the scale in the pinch event EVENT. 11295Adjust the height of the default face by the scale in the pinch event EVENT.
11301 11296
11302(fn EVENT)" t nil) 11297(fn EVENT)" t)
11303 (define-key ctl-x-map [(control meta ?+)] 'global-text-scale-adjust) 11298 (define-key ctl-x-map [(control meta ?+)] 'global-text-scale-adjust)
11304 (define-key ctl-x-map [(control meta ?=)] 'global-text-scale-adjust) 11299 (define-key ctl-x-map [(control meta ?=)] 'global-text-scale-adjust)
11305 (define-key ctl-x-map [(control meta ?-)] 'global-text-scale-adjust) 11300 (define-key ctl-x-map [(control meta ?-)] 'global-text-scale-adjust)
@@ -11328,7 +11323,7 @@ and characters per line when the font size is adjusted.
11328 11323
11329See also the related command `text-scale-adjust'. 11324See also the related command `text-scale-adjust'.
11330 11325
11331(fn INCREMENT)" t nil) 11326(fn INCREMENT)" t)
11332(autoload 'buffer-face-mode "face-remap" "\ 11327(autoload 'buffer-face-mode "face-remap" "\
11333Minor mode for a buffer-specific default face. 11328Minor mode for a buffer-specific default face.
11334 11329
@@ -11349,7 +11344,7 @@ evaluate `buffer-face-mode'.
11349The mode's hook is called both when the mode is enabled and when 11344The mode's hook is called both when the mode is enabled and when
11350it is disabled. 11345it is disabled.
11351 11346
11352(fn &optional ARG)" t nil) 11347(fn &optional ARG)" t)
11353(autoload 'buffer-face-set "face-remap" "\ 11348(autoload 'buffer-face-set "face-remap" "\
11354Enable `buffer-face-mode', using face specs SPECS. 11349Enable `buffer-face-mode', using face specs SPECS.
11355Each argument in SPECS should be a face, i.e. either a face name 11350Each argument in SPECS should be a face, i.e. either a face name
@@ -11361,7 +11356,7 @@ one face is listed, that specifies an aggregate face, like in a
11361This function makes the variable `buffer-face-mode-face' buffer 11356This function makes the variable `buffer-face-mode-face' buffer
11362local, and sets it to FACE. 11357local, and sets it to FACE.
11363 11358
11364(fn &rest SPECS)" t nil) 11359(fn &rest SPECS)" t)
11365(autoload 'buffer-face-toggle "face-remap" "\ 11360(autoload 'buffer-face-toggle "face-remap" "\
11366Toggle `buffer-face-mode', using face specs SPECS. 11361Toggle `buffer-face-mode', using face specs SPECS.
11367Each argument in SPECS should be a face, i.e. either a face name 11362Each argument in SPECS should be a face, i.e. either a face name
@@ -11377,13 +11372,13 @@ face, then is left enabled, but the face changed to reflect SPECS.
11377This function will make the variable `buffer-face-mode-face' 11372This function will make the variable `buffer-face-mode-face'
11378buffer local, and set it to SPECS. 11373buffer local, and set it to SPECS.
11379 11374
11380(fn &rest SPECS)" t nil) 11375(fn &rest SPECS)" t)
11381(autoload 'variable-pitch-mode "face-remap" "\ 11376(autoload 'variable-pitch-mode "face-remap" "\
11382Variable-pitch default-face mode. 11377Variable-pitch default-face mode.
11383An interface to `buffer-face-mode' which uses the `variable-pitch' face. 11378An interface to `buffer-face-mode' which uses the `variable-pitch' face.
11384Besides the choice of face, it is the same as `buffer-face-mode'. 11379Besides the choice of face, it is the same as `buffer-face-mode'.
11385 11380
11386(fn &optional ARG)" t nil) 11381(fn &optional ARG)" t)
11387(register-definition-prefixes "face-remap" '("buffer-face-mode-" "face-" "global-text-scale-adjust-" "internal-lisp-face-attributes" "text-scale-")) 11382(register-definition-prefixes "face-remap" '("buffer-face-mode-" "face-" "global-text-scale-adjust-" "internal-lisp-face-attributes" "text-scale-"))
11388 11383
11389 11384
@@ -11406,7 +11401,7 @@ If the optional argument CALLBACK is non-nil, it should be a
11406function to call each time the user types RET or clicks on a 11401function to call each time the user types RET or clicks on a
11407color. The function should accept a single argument, the color name. 11402color. The function should accept a single argument, the color name.
11408 11403
11409(fn &optional LIST BUFFER-NAME CALLBACK)" t nil) 11404(fn &optional LIST BUFFER-NAME CALLBACK)" t)
11410(register-definition-prefixes "facemenu" '("facemenu-" "list-colors-")) 11405(register-definition-prefixes "facemenu" '("facemenu-" "list-colors-"))
11411 11406
11412 11407
@@ -11414,7 +11409,7 @@ color. The function should accept a single argument, the color name.
11414 11409
11415(push (purecopy '(faceup 0 0 6)) package--builtin-versions) 11410(push (purecopy '(faceup 0 0 6)) package--builtin-versions)
11416(autoload 'faceup-view-buffer "faceup" "\ 11411(autoload 'faceup-view-buffer "faceup" "\
11417Display the faceup representation of the current buffer." t nil) 11412Display the faceup representation of the current buffer." t)
11418(autoload 'faceup-write-file "faceup" "\ 11413(autoload 'faceup-write-file "faceup" "\
11419Save the faceup representation of the current buffer to the file FILE-NAME. 11414Save the faceup representation of the current buffer to the file FILE-NAME.
11420 11415
@@ -11425,13 +11420,13 @@ If optional second arg CONFIRM is non-nil, this function
11425asks for confirmation before overwriting an existing file. 11420asks for confirmation before overwriting an existing file.
11426Interactively, confirmation is required unless you supply a prefix argument. 11421Interactively, confirmation is required unless you supply a prefix argument.
11427 11422
11428(fn &optional FILE-NAME CONFIRM)" t nil) 11423(fn &optional FILE-NAME CONFIRM)" t)
11429(autoload 'faceup-render-view-buffer "faceup" "\ 11424(autoload 'faceup-render-view-buffer "faceup" "\
11430Convert BUFFER containing Faceup markup to a new buffer and display it. 11425Convert BUFFER containing Faceup markup to a new buffer and display it.
11431 11426
11432(fn &optional BUFFER)" t nil) 11427(fn &optional BUFFER)" t)
11433(autoload 'faceup-clean-buffer "faceup" "\ 11428(autoload 'faceup-clean-buffer "faceup" "\
11434Remove faceup markup from buffer." t nil) 11429Remove faceup markup from buffer." t)
11435(autoload 'faceup-defexplainer "faceup" "\ 11430(autoload 'faceup-defexplainer "faceup" "\
11436Define an Ert explainer function for FUNCTION. 11431Define an Ert explainer function for FUNCTION.
11437 11432
@@ -11453,24 +11448,24 @@ FUNCTION must return an explanation when the test fails and
11453(autoload 'feedmail-send-it "feedmail" "\ 11448(autoload 'feedmail-send-it "feedmail" "\
11454Send the current mail buffer using the Feedmail package. 11449Send the current mail buffer using the Feedmail package.
11455This is a suitable value for `send-mail-function'. It can be used 11450This is a suitable value for `send-mail-function'. It can be used
11456with various lower-level mechanisms to provide features such as queueing." nil nil) 11451with various lower-level mechanisms to provide features such as queueing.")
11457(autoload 'feedmail-run-the-queue-no-prompts "feedmail" "\ 11452(autoload 'feedmail-run-the-queue-no-prompts "feedmail" "\
11458Like `feedmail-run-the-queue', but suppress confirmation prompts. 11453Like `feedmail-run-the-queue', but suppress confirmation prompts.
11459 11454
11460(fn &optional ARG)" t nil) 11455(fn &optional ARG)" t)
11461(autoload 'feedmail-run-the-queue-global-prompt "feedmail" "\ 11456(autoload 'feedmail-run-the-queue-global-prompt "feedmail" "\
11462Like `feedmail-run-the-queue', but with a global confirmation prompt. 11457Like `feedmail-run-the-queue', but with a global confirmation prompt.
11463This is generally most useful if run non-interactively, since you can 11458This is generally most useful if run non-interactively, since you can
11464bail out with an appropriate answer to the global confirmation prompt. 11459bail out with an appropriate answer to the global confirmation prompt.
11465 11460
11466(fn &optional ARG)" t nil) 11461(fn &optional ARG)" t)
11467(autoload 'feedmail-run-the-queue "feedmail" "\ 11462(autoload 'feedmail-run-the-queue "feedmail" "\
11468Visit each message in the feedmail queue directory and send it out. 11463Visit each message in the feedmail queue directory and send it out.
11469Return value is a list of three things: number of messages sent, number of 11464Return value is a list of three things: number of messages sent, number of
11470messages skipped, and number of non-message things in the queue (commonly 11465messages skipped, and number of non-message things in the queue (commonly
11471backup file names and the like). 11466backup file names and the like).
11472 11467
11473(fn &optional ARG)" t nil) 11468(fn &optional ARG)" t)
11474(autoload 'feedmail-queue-reminder "feedmail" "\ 11469(autoload 'feedmail-queue-reminder "feedmail" "\
11475Perform some kind of reminder activity about queued and draft messages. 11470Perform some kind of reminder activity about queued and draft messages.
11476Called with an optional symbol argument which says what kind of event 11471Called with an optional symbol argument which says what kind of event
@@ -11490,7 +11485,7 @@ expected to perform the reminder activity. You can supply your own reminder
11490functions by redefining `feedmail-queue-reminder-alist'. If you don't want any 11485functions by redefining `feedmail-queue-reminder-alist'. If you don't want any
11491reminders, you can set `feedmail-queue-reminder-alist' to nil. 11486reminders, you can set `feedmail-queue-reminder-alist' to nil.
11492 11487
11493(fn &optional WHAT-EVENT)" t nil) 11488(fn &optional WHAT-EVENT)" t)
11494(register-definition-prefixes "feedmail" '("feedmail-")) 11489(register-definition-prefixes "feedmail" '("feedmail-"))
11495 11490
11496 11491
@@ -11507,13 +11502,13 @@ Interactively: use a single prefix \\[universal-argument] to search backwards,
11507double prefix to wrap forward, triple to wrap backwards. 11502double prefix to wrap forward, triple to wrap backwards.
11508Actual search is done by the function `ffap-next-guess'. 11503Actual search is done by the function `ffap-next-guess'.
11509 11504
11510(fn &optional BACK WRAP)" t nil) 11505(fn &optional BACK WRAP)" t)
11511(autoload 'ffap-machine-at-point "ffap" "\ 11506(autoload 'ffap-machine-at-point "ffap" "\
11512Return machine name at point if it exists, or nil." nil nil) 11507Return machine name at point if it exists, or nil.")
11513(autoload 'ffap-url-at-point "ffap" "\ 11508(autoload 'ffap-url-at-point "ffap" "\
11514Return URL from around point if it exists, or nil. 11509Return URL from around point if it exists, or nil.
11515 11510
11516Sets the variable `ffap-string-at-point-region' to the bounds of URL, if any." nil nil) 11511Sets the variable `ffap-string-at-point-region' to the bounds of URL, if any.")
11517(autoload 'find-file-at-point "ffap" "\ 11512(autoload 'find-file-at-point "ffap" "\
11518Find FILENAME, guessing a default from text around point. 11513Find FILENAME, guessing a default from text around point.
11519If `ffap-url-regexp' is not nil, the FILENAME may also be an URL. 11514If `ffap-url-regexp' is not nil, the FILENAME may also be an URL.
@@ -11524,7 +11519,7 @@ See also the variables `ffap-dired-wildcards',
11524`ffap-file-name-with-spaces', and the functions `ffap-file-at-point' 11519`ffap-file-name-with-spaces', and the functions `ffap-file-at-point'
11525and `ffap-url-at-point'. 11520and `ffap-url-at-point'.
11526 11521
11527(fn &optional FILENAME)" t nil) 11522(fn &optional FILENAME)" t)
11528(defalias 'ffap 'find-file-at-point) 11523(defalias 'ffap 'find-file-at-point)
11529(autoload 'ffap-menu "ffap" "\ 11524(autoload 'ffap-menu "ffap" "\
11530Put up a menu of files and URLs mentioned in this buffer. 11525Put up a menu of files and URLs mentioned in this buffer.
@@ -11533,7 +11528,7 @@ cached in `ffap-menu-alist', and rebuilt by `ffap-menu-rescan'.
11533The optional RESCAN argument (a prefix, interactively) forces 11528The optional RESCAN argument (a prefix, interactively) forces
11534a rebuild. Searches with `ffap-menu-regexp'. 11529a rebuild. Searches with `ffap-menu-regexp'.
11535 11530
11536(fn &optional RESCAN)" t nil) 11531(fn &optional RESCAN)" t)
11537(autoload 'ffap-at-mouse "ffap" "\ 11532(autoload 'ffap-at-mouse "ffap" "\
11538Find file or URL guessed from text around mouse click. 11533Find file or URL guessed from text around mouse click.
11539Interactively, calls `ffap-at-mouse-fallback' if no guess is found. 11534Interactively, calls `ffap-at-mouse-fallback' if no guess is found.
@@ -11542,17 +11537,17 @@ Return value:
11542 * if the fallback is called, return whatever it returns 11537 * if the fallback is called, return whatever it returns
11543 * otherwise, nil 11538 * otherwise, nil
11544 11539
11545(fn E)" t nil) 11540(fn E)" t)
11546(autoload 'dired-at-point "ffap" "\ 11541(autoload 'dired-at-point "ffap" "\
11547Start Dired, defaulting to file at point. See `ffap'. 11542Start Dired, defaulting to file at point. See `ffap'.
11548If `dired-at-point-require-prefix' is set, the prefix meaning is reversed. 11543If `dired-at-point-require-prefix' is set, the prefix meaning is reversed.
11549 11544
11550(fn &optional FILENAME)" t nil) 11545(fn &optional FILENAME)" t)
11551(autoload 'ffap-guess-file-name-at-point "ffap" "\ 11546(autoload 'ffap-guess-file-name-at-point "ffap" "\
11552Try to get a file name at point. 11547Try to get a file name at point.
11553This hook is intended to be put in `file-name-at-point-functions'." nil nil) 11548This hook is intended to be put in `file-name-at-point-functions'.")
11554(autoload 'ffap-bindings "ffap" "\ 11549(autoload 'ffap-bindings "ffap" "\
11555Evaluate the forms in variable `ffap-bindings'." t nil) 11550Evaluate the forms in variable `ffap-bindings'." t)
11556(register-definition-prefixes "ffap" '("dired-at-point-" "ffap-" "find-file-literally-at-point")) 11551(register-definition-prefixes "ffap" '("dired-at-point-" "ffap-" "find-file-literally-at-point"))
11557 11552
11558 11553
@@ -11568,7 +11563,7 @@ Add all files in DIRECTORY to the file cache.
11568If called from Lisp with a non-nil REGEXP argument is non-nil, 11563If called from Lisp with a non-nil REGEXP argument is non-nil,
11569only add files whose names match REGEXP. 11564only add files whose names match REGEXP.
11570 11565
11571(fn DIRECTORY &optional REGEXP)" t nil) 11566(fn DIRECTORY &optional REGEXP)" t)
11572(autoload 'file-cache-add-directory-list "filecache" "\ 11567(autoload 'file-cache-add-directory-list "filecache" "\
11573Add DIRECTORIES (a list of directory names) to the file cache. 11568Add DIRECTORIES (a list of directory names) to the file cache.
11574If called interactively, read the directory names one by one. 11569If called interactively, read the directory names one by one.
@@ -11576,21 +11571,21 @@ If the optional REGEXP argument is non-nil, only files which match it
11576will be added to the cache. Note that the REGEXP is applied to the 11571will be added to the cache. Note that the REGEXP is applied to the
11577files in each directory, not to the directory list itself. 11572files in each directory, not to the directory list itself.
11578 11573
11579(fn DIRECTORIES &optional REGEXP)" t nil) 11574(fn DIRECTORIES &optional REGEXP)" t)
11580(autoload 'file-cache-add-file "filecache" "\ 11575(autoload 'file-cache-add-file "filecache" "\
11581Add FILE to the file cache. 11576Add FILE to the file cache.
11582 11577
11583(fn FILE)" t nil) 11578(fn FILE)" t)
11584(autoload 'file-cache-add-directory-using-find "filecache" "\ 11579(autoload 'file-cache-add-directory-using-find "filecache" "\
11585Use the `find' command to add files to the file cache. 11580Use the `find' command to add files to the file cache.
11586Find is run in DIRECTORY. 11581Find is run in DIRECTORY.
11587 11582
11588(fn DIRECTORY)" t nil) 11583(fn DIRECTORY)" t)
11589(autoload 'file-cache-add-directory-using-locate "filecache" "\ 11584(autoload 'file-cache-add-directory-using-locate "filecache" "\
11590Use the `locate' command to add files to the file cache. 11585Use the `locate' command to add files to the file cache.
11591STRING is passed as an argument to the locate command. 11586STRING is passed as an argument to the locate command.
11592 11587
11593(fn STRING)" t nil) 11588(fn STRING)" t)
11594(autoload 'file-cache-add-directory-recursively "filecache" "\ 11589(autoload 'file-cache-add-directory-recursively "filecache" "\
11595Add DIR and any subdirectories to the file-cache. 11590Add DIR and any subdirectories to the file-cache.
11596This function does not use any external programs. 11591This function does not use any external programs.
@@ -11598,7 +11593,7 @@ If the optional REGEXP argument is non-nil, only files which match it
11598will be added to the cache. Note that the REGEXP is applied to the 11593will be added to the cache. Note that the REGEXP is applied to the
11599files in each directory, not to the directory list itself. 11594files in each directory, not to the directory list itself.
11600 11595
11601(fn DIR &optional REGEXP)" t nil) 11596(fn DIR &optional REGEXP)" t)
11602(autoload 'file-cache-minibuffer-complete "filecache" "\ 11597(autoload 'file-cache-minibuffer-complete "filecache" "\
11603Complete a filename in the minibuffer using a preloaded cache. 11598Complete a filename in the minibuffer using a preloaded cache.
11604Filecache does two kinds of substitution: it completes on names in 11599Filecache does two kinds of substitution: it completes on names in
@@ -11607,7 +11602,7 @@ the directories that the name is available in. With a prefix argument,
11607the name is considered already unique; only the second substitution 11602the name is considered already unique; only the second substitution
11608(directories) is done. 11603(directories) is done.
11609 11604
11610(fn ARG)" t nil) 11605(fn ARG)" t)
11611(register-definition-prefixes "filecache" '("file-cache-")) 11606(register-definition-prefixes "filecache" '("file-cache-"))
11612 11607
11613 11608
@@ -11624,11 +11619,11 @@ to perform the operation on the current file buffer and when done
11624should return non-nil to mean that we should immediately continue 11619should return non-nil to mean that we should immediately continue
11625operating on the next file and nil otherwise. 11620operating on the next file and nil otherwise.
11626 11621
11627(fn FILES SCAN-FUNCTION OPERATE-FUNCTION)" nil nil) 11622(fn FILES SCAN-FUNCTION OPERATE-FUNCTION)")
11628(autoload 'fileloop-initialize-search "fileloop" "\ 11623(autoload 'fileloop-initialize-search "fileloop" "\
11629 11624
11630 11625
11631(fn REGEXP FILES CASE-FOLD)" nil nil) 11626(fn REGEXP FILES CASE-FOLD)")
11632(autoload 'fileloop-initialize-replace "fileloop" "\ 11627(autoload 'fileloop-initialize-replace "fileloop" "\
11633Initialize a new round of query&replace on several files. 11628Initialize a new round of query&replace on several files.
11634FROM is a regexp and TO is the replacement to use. 11629FROM is a regexp and TO is the replacement to use.
@@ -11642,7 +11637,7 @@ CASE-FOLD can be t, nil, or `default':
11642 `case-fold-search' instead. 11637 `case-fold-search' instead.
11643DELIMITED if non-nil means replace only word-delimited matches. 11638DELIMITED if non-nil means replace only word-delimited matches.
11644 11639
11645(fn FROM TO FILES CASE-FOLD &optional DELIMITED)" nil nil) 11640(fn FROM TO FILES CASE-FOLD &optional DELIMITED)")
11646(register-definition-prefixes "fileloop" '("fileloop-")) 11641(register-definition-prefixes "fileloop" '("fileloop-"))
11647 11642
11648 11643
@@ -11653,7 +11648,7 @@ Handle a file system monitoring event, coming from backends.
11653If OBJECT is a filewatch event, call its callback. 11648If OBJECT is a filewatch event, call its callback.
11654Otherwise, signal a `file-notify-error'. 11649Otherwise, signal a `file-notify-error'.
11655 11650
11656(fn OBJECT)" t nil) 11651(fn OBJECT)" t)
11657(function-put 'file-notify-handle-event 'completion-predicate #'ignore) 11652(function-put 'file-notify-handle-event 'completion-predicate #'ignore)
11658(register-definition-prefixes "filenotify" '("file-notify-")) 11653(register-definition-prefixes "filenotify" '("file-notify-"))
11659 11654
@@ -11676,11 +11671,11 @@ If there is no Local Variables list in the current file buffer
11676then this function adds the first line containing the string 11671then this function adds the first line containing the string
11677`Local Variables:' and the last line containing the string `End:'. 11672`Local Variables:' and the last line containing the string `End:'.
11678 11673
11679(fn VARIABLE VALUE &optional INTERACTIVE)" t nil) 11674(fn VARIABLE VALUE &optional INTERACTIVE)" t)
11680(autoload 'delete-file-local-variable "files-x" "\ 11675(autoload 'delete-file-local-variable "files-x" "\
11681Delete all settings of file-local VARIABLE from the Local Variables list. 11676Delete all settings of file-local VARIABLE from the Local Variables list.
11682 11677
11683(fn VARIABLE &optional INTERACTIVE)" t nil) 11678(fn VARIABLE &optional INTERACTIVE)" t)
11684(autoload 'add-file-local-variable-prop-line "files-x" "\ 11679(autoload 'add-file-local-variable-prop-line "files-x" "\
11685Add file-local VARIABLE with its VALUE to the -*- line. 11680Add file-local VARIABLE with its VALUE to the -*- line.
11686 11681
@@ -11691,25 +11686,25 @@ the -*- line.
11691If there is no -*- line at the beginning of the current file buffer 11686If there is no -*- line at the beginning of the current file buffer
11692then this function adds it. 11687then this function adds it.
11693 11688
11694(fn VARIABLE VALUE &optional INTERACTIVE)" t nil) 11689(fn VARIABLE VALUE &optional INTERACTIVE)" t)
11695(autoload 'delete-file-local-variable-prop-line "files-x" "\ 11690(autoload 'delete-file-local-variable-prop-line "files-x" "\
11696Delete all settings of file-local VARIABLE from the -*- line. 11691Delete all settings of file-local VARIABLE from the -*- line.
11697 11692
11698(fn VARIABLE &optional INTERACTIVE)" t nil) 11693(fn VARIABLE &optional INTERACTIVE)" t)
11699(autoload 'add-dir-local-variable "files-x" "\ 11694(autoload 'add-dir-local-variable "files-x" "\
11700Add directory-local VARIABLE with its VALUE and MODE to .dir-locals.el. 11695Add directory-local VARIABLE with its VALUE and MODE to .dir-locals.el.
11701 11696
11702(fn MODE VARIABLE VALUE)" t nil) 11697(fn MODE VARIABLE VALUE)" t)
11703(autoload 'delete-dir-local-variable "files-x" "\ 11698(autoload 'delete-dir-local-variable "files-x" "\
11704Delete all MODE settings of file-local VARIABLE from .dir-locals.el. 11699Delete all MODE settings of file-local VARIABLE from .dir-locals.el.
11705 11700
11706(fn MODE VARIABLE)" t nil) 11701(fn MODE VARIABLE)" t)
11707(autoload 'copy-file-locals-to-dir-locals "files-x" "\ 11702(autoload 'copy-file-locals-to-dir-locals "files-x" "\
11708Copy file-local variables to .dir-locals.el." t nil) 11703Copy file-local variables to .dir-locals.el." t)
11709(autoload 'copy-dir-locals-to-file-locals "files-x" "\ 11704(autoload 'copy-dir-locals-to-file-locals "files-x" "\
11710Copy directory-local variables to the Local Variables list." t nil) 11705Copy directory-local variables to the Local Variables list." t)
11711(autoload 'copy-dir-locals-to-file-locals-prop-line "files-x" "\ 11706(autoload 'copy-dir-locals-to-file-locals-prop-line "files-x" "\
11712Copy directory-local variables to the -*- line." t nil) 11707Copy directory-local variables to the -*- line." t)
11713(defvar enable-connection-local-variables t "\ 11708(defvar enable-connection-local-variables t "\
11714Non-nil means enable use of connection-local variables.") 11709Non-nil means enable use of connection-local variables.")
11715(autoload 'connection-local-set-profiles "files-x" "\ 11710(autoload 'connection-local-set-profiles "files-x" "\
@@ -11724,7 +11719,7 @@ PROFILES are applied to the corresponding process buffer. The
11724variables for a connection profile are defined using 11719variables for a connection profile are defined using
11725`connection-local-set-profile-variables'. 11720`connection-local-set-profile-variables'.
11726 11721
11727(fn CRITERIA &rest PROFILES)" nil nil) 11722(fn CRITERIA &rest PROFILES)")
11728(autoload 'connection-local-set-profile-variables "files-x" "\ 11723(autoload 'connection-local-set-profile-variables "files-x" "\
11729Map the symbol PROFILE to a list of variable settings. 11724Map the symbol PROFILE to a list of variable settings.
11730VARIABLES is a list that declares connection-local variables for 11725VARIABLES is a list that declares connection-local variables for
@@ -11738,13 +11733,13 @@ variables are set in the server's process buffer according to the
11738VARIABLES list of the connection profile. The list is processed 11733VARIABLES list of the connection profile. The list is processed
11739in order. 11734in order.
11740 11735
11741(fn PROFILE VARIABLES)" nil nil) 11736(fn PROFILE VARIABLES)")
11742(autoload 'hack-connection-local-variables-apply "files-x" "\ 11737(autoload 'hack-connection-local-variables-apply "files-x" "\
11743Apply connection-local variables identified by CRITERIA. 11738Apply connection-local variables identified by CRITERIA.
11744Other local variables, like file-local and dir-local variables, 11739Other local variables, like file-local and dir-local variables,
11745will not be changed. 11740will not be changed.
11746 11741
11747(fn CRITERIA)" nil nil) 11742(fn CRITERIA)")
11748(autoload 'with-connection-local-variables "files-x" "\ 11743(autoload 'with-connection-local-variables "files-x" "\
11749Apply connection-local variables according to `default-directory'. 11744Apply connection-local variables according to `default-directory'.
11750Execute BODY, and unwind connection-local variables. 11745Execute BODY, and unwind connection-local variables.
@@ -11754,11 +11749,11 @@ Execute BODY, and unwind connection-local variables.
11754Apply connection-local variables according to `default-directory'. 11749Apply connection-local variables according to `default-directory'.
11755Call BODY-FUN with no args, and then unwind connection-local variables. 11750Call BODY-FUN with no args, and then unwind connection-local variables.
11756 11751
11757(fn BODY-FUN)" nil nil) 11752(fn BODY-FUN)")
11758(autoload 'path-separator "files-x" "\ 11753(autoload 'path-separator "files-x" "\
11759The connection-local value of `path-separator'." nil nil) 11754The connection-local value of `path-separator'.")
11760(autoload 'null-device "files-x" "\ 11755(autoload 'null-device "files-x" "\
11761The connection-local value of `null-device'." nil nil) 11756The connection-local value of `null-device'.")
11762(register-definition-prefixes "files-x" '("connection-local-" "dir-locals-to-string" "hack-connection-local-variables" "modify-" "read-file-local-variable")) 11757(register-definition-prefixes "files-x" '("connection-local-" "dir-locals-to-string" "hack-connection-local-variables" "modify-" "read-file-local-variable"))
11763 11758
11764 11759
@@ -11766,7 +11761,7 @@ The connection-local value of `null-device'." nil nil)
11766 11761
11767(autoload 'filesets-init "filesets" "\ 11762(autoload 'filesets-init "filesets" "\
11768Filesets initialization. 11763Filesets initialization.
11769Set up hooks, load the cache file -- if existing -- and build the menu." nil nil) 11764Set up hooks, load the cache file -- if existing -- and build the menu.")
11770(register-definition-prefixes "filesets" '("filesets-")) 11765(register-definition-prefixes "filesets" '("filesets-"))
11771 11766
11772 11767
@@ -11805,7 +11800,7 @@ For example:
11805`default-directory' is used as the initial search path. The 11800`default-directory' is used as the initial search path. The
11806result is a string that should be ready for the command line. 11801result is a string that should be ready for the command line.
11807 11802
11808(fn &rest SUBFINDS)" nil nil) 11803(fn &rest SUBFINDS)")
11809(register-definition-prefixes "find-cmd" '("find-")) 11804(register-definition-prefixes "find-cmd" '("find-"))
11810 11805
11811 11806
@@ -11828,7 +11823,7 @@ ARGS, see Info node `(find) Finding Files'. If you are not
11828using GNU findutils (on macOS and *BSD systems), see instead the 11823using GNU findutils (on macOS and *BSD systems), see instead the
11829man page for \"find\". 11824man page for \"find\".
11830 11825
11831(fn DIR ARGS)" t nil) 11826(fn DIR ARGS)" t)
11832(autoload 'find-dired-with-command "find-dired" "\ 11827(autoload 'find-dired-with-command "find-dired" "\
11833Run `find' and go into Dired mode on a buffer of the output. 11828Run `find' and go into Dired mode on a buffer of the output.
11834The user-supplied COMMAND is run after changing into DIR and should look like 11829The user-supplied COMMAND is run after changing into DIR and should look like
@@ -11841,7 +11836,7 @@ use in place of \"-ls\" as the starting input.
11841Collect output in the \"*Find*\" buffer. To kill the job before 11836Collect output in the \"*Find*\" buffer. To kill the job before
11842it finishes, type \\[kill-find]. 11837it finishes, type \\[kill-find].
11843 11838
11844(fn DIR COMMAND)" t nil) 11839(fn DIR COMMAND)" t)
11845(autoload 'find-name-dired "find-dired" "\ 11840(autoload 'find-name-dired "find-dired" "\
11846Search DIR recursively for files matching the globbing PATTERN, 11841Search DIR recursively for files matching the globbing PATTERN,
11847and run Dired on those files. 11842and run Dired on those files.
@@ -11852,7 +11847,7 @@ The default command run (after changing into DIR) is
11852 11847
11853See `find-name-arg' to customize the arguments. 11848See `find-name-arg' to customize the arguments.
11854 11849
11855(fn DIR PATTERN)" t nil) 11850(fn DIR PATTERN)" t)
11856(autoload 'find-grep-dired "find-dired" "\ 11851(autoload 'find-grep-dired "find-dired" "\
11857Find files in DIR that contain matches for REGEXP and start Dired on output. 11852Find files in DIR that contain matches for REGEXP and start Dired on output.
11858The command run (after changing into DIR) is 11853The command run (after changing into DIR) is
@@ -11863,7 +11858,7 @@ The command run (after changing into DIR) is
11863where the first string in the value of the variable `find-ls-option' 11858where the first string in the value of the variable `find-ls-option'
11864specifies what to use in place of \"-ls\" as the final argument. 11859specifies what to use in place of \"-ls\" as the final argument.
11865 11860
11866(fn DIR REGEXP)" t nil) 11861(fn DIR REGEXP)" t)
11867(register-definition-prefixes "find-dired" '("find-" "kill-find")) 11862(register-definition-prefixes "find-dired" '("find-" "kill-find"))
11868 11863
11869 11864
@@ -11883,7 +11878,7 @@ See also the documentation for `ff-find-other-file'.
11883 11878
11884If optional IN-OTHER-WINDOW is non-nil, find the file in another window. 11879If optional IN-OTHER-WINDOW is non-nil, find the file in another window.
11885 11880
11886(fn &optional IN-OTHER-WINDOW)" t nil) 11881(fn &optional IN-OTHER-WINDOW)" t)
11887(defalias 'ff-find-related-file #'ff-find-other-file) 11882(defalias 'ff-find-related-file #'ff-find-other-file)
11888(autoload 'ff-find-other-file "find-file" "\ 11883(autoload 'ff-find-other-file "find-file" "\
11889Find the header or source file corresponding to this file. 11884Find the header or source file corresponding to this file.
@@ -11942,13 +11937,13 @@ Variables of interest include:
11942 - `ff-file-created-hook' 11937 - `ff-file-created-hook'
11943 List of functions to be called if the other file has been created. 11938 List of functions to be called if the other file has been created.
11944 11939
11945(fn &optional IN-OTHER-WINDOW IGNORE-INCLUDE EVENT)" t nil) 11940(fn &optional IN-OTHER-WINDOW IGNORE-INCLUDE EVENT)" t)
11946(define-obsolete-function-alias 'ff-mouse-find-other-file #'ff-find-other-file "28.1") 11941(define-obsolete-function-alias 'ff-mouse-find-other-file #'ff-find-other-file "28.1")
11947(define-obsolete-function-alias 'ff-mouse-find-other-file-other-window #'ff-find-other-file-other-window "28.1") 11942(define-obsolete-function-alias 'ff-mouse-find-other-file-other-window #'ff-find-other-file-other-window "28.1")
11948(autoload 'ff-find-other-file-other-window "find-file" "\ 11943(autoload 'ff-find-other-file-other-window "find-file" "\
11949Visit the file you point at in another window. 11944Visit the file you point at in another window.
11950 11945
11951(fn EVENT)" t nil) 11946(fn EVENT)" t)
11952(register-definition-prefixes "find-file" '("cc-" "ff-" "modula2-other-file-alist")) 11947(register-definition-prefixes "find-file" '("cc-" "ff-" "modula2-other-file-alist"))
11953 11948
11954 11949
@@ -11965,25 +11960,25 @@ This function searches `find-library-source-path' if non-nil, and
11965See the `find-library-include-other-files' user option for 11960See the `find-library-include-other-files' user option for
11966customizing the candidate completions. 11961customizing the candidate completions.
11967 11962
11968(fn LIBRARY)" t nil) 11963(fn LIBRARY)" t)
11969(autoload 'read-library-name "find-func" "\ 11964(autoload 'read-library-name "find-func" "\
11970Read and return a library name, defaulting to the one near point. 11965Read and return a library name, defaulting to the one near point.
11971 11966
11972A library name is the filename of an Emacs Lisp library located 11967A library name is the filename of an Emacs Lisp library located
11973in a directory under `load-path' (or `find-library-source-path', 11968in a directory under `load-path' (or `find-library-source-path',
11974if non-nil)." nil nil) 11969if non-nil).")
11975(autoload 'find-library-other-window "find-func" "\ 11970(autoload 'find-library-other-window "find-func" "\
11976Find the Emacs Lisp source of LIBRARY in another window. 11971Find the Emacs Lisp source of LIBRARY in another window.
11977 11972
11978See `find-library' for more details. 11973See `find-library' for more details.
11979 11974
11980(fn LIBRARY)" t nil) 11975(fn LIBRARY)" t)
11981(autoload 'find-library-other-frame "find-func" "\ 11976(autoload 'find-library-other-frame "find-func" "\
11982Find the Emacs Lisp source of LIBRARY in another frame. 11977Find the Emacs Lisp source of LIBRARY in another frame.
11983 11978
11984See `find-library' for more details. 11979See `find-library' for more details.
11985 11980
11986(fn LIBRARY)" t nil) 11981(fn LIBRARY)" t)
11987(autoload 'find-function-search-for-symbol "find-func" "\ 11982(autoload 'find-function-search-for-symbol "find-func" "\
11988Search for SYMBOL's definition of type TYPE in LIBRARY. 11983Search for SYMBOL's definition of type TYPE in LIBRARY.
11989Visit the library in a buffer, and return a cons cell (BUFFER . POSITION), 11984Visit the library in a buffer, and return a cons cell (BUFFER . POSITION),
@@ -11994,7 +11989,7 @@ Otherwise, TYPE specifies the kind of definition,
11994and it is interpreted via `find-function-regexp-alist'. 11989and it is interpreted via `find-function-regexp-alist'.
11995The search is done in the source for library LIBRARY. 11990The search is done in the source for library LIBRARY.
11996 11991
11997(fn SYMBOL TYPE LIBRARY)" nil nil) 11992(fn SYMBOL TYPE LIBRARY)")
11998(autoload 'find-function-noselect "find-func" "\ 11993(autoload 'find-function-noselect "find-func" "\
11999Return a pair (BUFFER . POINT) pointing to the definition of FUNCTION. 11994Return a pair (BUFFER . POINT) pointing to the definition of FUNCTION.
12000 11995
@@ -12007,7 +12002,7 @@ If FUNCTION is a built-in function, this function normally
12007attempts to find it in the Emacs C sources; however, if LISP-ONLY 12002attempts to find it in the Emacs C sources; however, if LISP-ONLY
12008is non-nil, signal an error instead. 12003is non-nil, signal an error instead.
12009 12004
12010(fn FUNCTION &optional LISP-ONLY)" nil nil) 12005(fn FUNCTION &optional LISP-ONLY)")
12011(autoload 'find-function "find-func" "\ 12006(autoload 'find-function "find-func" "\
12012Find the definition of the FUNCTION near point. 12007Find the definition of the FUNCTION near point.
12013 12008
@@ -12018,19 +12013,19 @@ Set mark before moving, if the buffer already existed.
12018 12013
12019See also `find-function-recenter-line' and `find-function-after-hook'. 12014See also `find-function-recenter-line' and `find-function-after-hook'.
12020 12015
12021(fn FUNCTION)" t nil) 12016(fn FUNCTION)" t)
12022(autoload 'find-function-other-window "find-func" "\ 12017(autoload 'find-function-other-window "find-func" "\
12023Find, in another window, the definition of FUNCTION near point. 12018Find, in another window, the definition of FUNCTION near point.
12024 12019
12025See `find-function' for more details. 12020See `find-function' for more details.
12026 12021
12027(fn FUNCTION)" t nil) 12022(fn FUNCTION)" t)
12028(autoload 'find-function-other-frame "find-func" "\ 12023(autoload 'find-function-other-frame "find-func" "\
12029Find, in another frame, the definition of FUNCTION near point. 12024Find, in another frame, the definition of FUNCTION near point.
12030 12025
12031See `find-function' for more details. 12026See `find-function' for more details.
12032 12027
12033(fn FUNCTION)" t nil) 12028(fn FUNCTION)" t)
12034(autoload 'find-variable-noselect "find-func" "\ 12029(autoload 'find-variable-noselect "find-func" "\
12035Return a pair `(BUFFER . POINT)' pointing to the definition of VARIABLE. 12030Return a pair `(BUFFER . POINT)' pointing to the definition of VARIABLE.
12036 12031
@@ -12038,7 +12033,7 @@ Finds the library containing the definition of VARIABLE in a buffer and
12038the point of the definition. The buffer is not selected. 12033the point of the definition. The buffer is not selected.
12039If the variable's definition can't be found in the buffer, return (BUFFER). 12034If the variable's definition can't be found in the buffer, return (BUFFER).
12040 12035
12041(fn VARIABLE &optional FILE)" nil nil) 12036(fn VARIABLE &optional FILE)")
12042(autoload 'find-variable "find-func" "\ 12037(autoload 'find-variable "find-func" "\
12043Find the definition of the VARIABLE at or before point. 12038Find the definition of the VARIABLE at or before point.
12044 12039
@@ -12050,19 +12045,19 @@ Set mark before moving, if the buffer already existed.
12050 12045
12051See also `find-function-recenter-line' and `find-function-after-hook'. 12046See also `find-function-recenter-line' and `find-function-after-hook'.
12052 12047
12053(fn VARIABLE)" t nil) 12048(fn VARIABLE)" t)
12054(autoload 'find-variable-other-window "find-func" "\ 12049(autoload 'find-variable-other-window "find-func" "\
12055Find, in another window, the definition of VARIABLE near point. 12050Find, in another window, the definition of VARIABLE near point.
12056 12051
12057See `find-variable' for more details. 12052See `find-variable' for more details.
12058 12053
12059(fn VARIABLE)" t nil) 12054(fn VARIABLE)" t)
12060(autoload 'find-variable-other-frame "find-func" "\ 12055(autoload 'find-variable-other-frame "find-func" "\
12061Find, in another frame, the definition of VARIABLE near point. 12056Find, in another frame, the definition of VARIABLE near point.
12062 12057
12063See `find-variable' for more details. 12058See `find-variable' for more details.
12064 12059
12065(fn VARIABLE)" t nil) 12060(fn VARIABLE)" t)
12066(autoload 'find-definition-noselect "find-func" "\ 12061(autoload 'find-definition-noselect "find-func" "\
12067Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL. 12062Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL.
12068If the definition can't be found in the buffer, return (BUFFER). 12063If the definition can't be found in the buffer, return (BUFFER).
@@ -12070,7 +12065,7 @@ TYPE says what type of definition: nil for a function, `defvar' for a
12070variable, `defface' for a face. This function does not switch to the 12065variable, `defface' for a face. This function does not switch to the
12071buffer nor display it. 12066buffer nor display it.
12072 12067
12073(fn SYMBOL TYPE &optional FILE)" nil nil) 12068(fn SYMBOL TYPE &optional FILE)")
12074(autoload 'find-face-definition "find-func" "\ 12069(autoload 'find-face-definition "find-func" "\
12075Find the definition of FACE. FACE defaults to the name near point. 12070Find the definition of FACE. FACE defaults to the name near point.
12076 12071
@@ -12082,28 +12077,28 @@ Set mark before moving, if the buffer already existed.
12082 12077
12083See also `find-function-recenter-line' and `find-function-after-hook'. 12078See also `find-function-recenter-line' and `find-function-after-hook'.
12084 12079
12085(fn FACE)" t nil) 12080(fn FACE)" t)
12086(autoload 'find-function-on-key "find-func" "\ 12081(autoload 'find-function-on-key "find-func" "\
12087Find the function that KEY invokes. KEY is a string. 12082Find the function that KEY invokes. KEY is a string.
12088Set mark before moving, if the buffer already existed. 12083Set mark before moving, if the buffer already existed.
12089 12084
12090(fn KEY)" t nil) 12085(fn KEY)" t)
12091(autoload 'find-function-on-key-other-window "find-func" "\ 12086(autoload 'find-function-on-key-other-window "find-func" "\
12092Find, in the other window, the function that KEY invokes. 12087Find, in the other window, the function that KEY invokes.
12093See `find-function-on-key'. 12088See `find-function-on-key'.
12094 12089
12095(fn KEY)" t nil) 12090(fn KEY)" t)
12096(autoload 'find-function-on-key-other-frame "find-func" "\ 12091(autoload 'find-function-on-key-other-frame "find-func" "\
12097Find, in the other frame, the function that KEY invokes. 12092Find, in the other frame, the function that KEY invokes.
12098See `find-function-on-key'. 12093See `find-function-on-key'.
12099 12094
12100(fn KEY)" t nil) 12095(fn KEY)" t)
12101(autoload 'find-function-at-point "find-func" "\ 12096(autoload 'find-function-at-point "find-func" "\
12102Find directly the function at point in the other window." t nil) 12097Find directly the function at point in the other window." t)
12103(autoload 'find-variable-at-point "find-func" "\ 12098(autoload 'find-variable-at-point "find-func" "\
12104Find directly the variable at point in the other window." t nil) 12099Find directly the variable at point in the other window." t)
12105(autoload 'find-function-setup-keys "find-func" "\ 12100(autoload 'find-function-setup-keys "find-func" "\
12106Define some key bindings for the `find-function' family of functions." nil nil) 12101Define some key bindings for the `find-function' family of functions.")
12107(register-definition-prefixes "find-func" '("find-" "read-library-name--find-files")) 12102(register-definition-prefixes "find-func" '("find-" "read-library-name--find-files"))
12108 12103
12109 12104
@@ -12112,29 +12107,29 @@ Define some key bindings for the `find-function' family of functions." nil nil)
12112(autoload 'find-lisp-find-dired "find-lisp" "\ 12107(autoload 'find-lisp-find-dired "find-lisp" "\
12113Find files in DIR, matching REGEXP. 12108Find files in DIR, matching REGEXP.
12114 12109
12115(fn DIR REGEXP)" t nil) 12110(fn DIR REGEXP)" t)
12116(autoload 'find-lisp-find-dired-subdirectories "find-lisp" "\ 12111(autoload 'find-lisp-find-dired-subdirectories "find-lisp" "\
12117Find all subdirectories of DIR. 12112Find all subdirectories of DIR.
12118 12113
12119(fn DIR)" t nil) 12114(fn DIR)" t)
12120(autoload 'find-lisp-find-dired-filter "find-lisp" "\ 12115(autoload 'find-lisp-find-dired-filter "find-lisp" "\
12121Change the filter on a `find-lisp-find-dired' buffer to REGEXP. 12116Change the filter on a `find-lisp-find-dired' buffer to REGEXP.
12122 12117
12123(fn REGEXP)" t nil) 12118(fn REGEXP)" t)
12124(register-definition-prefixes "find-lisp" '("find-lisp-")) 12119(register-definition-prefixes "find-lisp" '("find-lisp-"))
12125 12120
12126 12121
12127;;; Generated autoloads from finder.el 12122;;; Generated autoloads from finder.el
12128 12123
12129(autoload 'finder-list-keywords "finder" "\ 12124(autoload 'finder-list-keywords "finder" "\
12130Display descriptions of the keywords in the Finder buffer." t nil) 12125Display descriptions of the keywords in the Finder buffer." t)
12131(autoload 'finder-commentary "finder" "\ 12126(autoload 'finder-commentary "finder" "\
12132Display FILE's commentary section. 12127Display FILE's commentary section.
12133FILE should be in a form suitable for passing to `locate-library'. 12128FILE should be in a form suitable for passing to `locate-library'.
12134 12129
12135(fn FILE)" t nil) 12130(fn FILE)" t)
12136(autoload 'finder-by-keyword "finder" "\ 12131(autoload 'finder-by-keyword "finder" "\
12137Find packages matching a given keyword." t nil) 12132Find packages matching a given keyword." t)
12138(register-definition-prefixes "finder" '("finder-" "generated-finder-keywords-file")) 12133(register-definition-prefixes "finder" '("finder-" "generated-finder-keywords-file"))
12139 12134
12140 12135
@@ -12145,7 +12140,7 @@ Toggle flow control handling.
12145When handling is enabled, user can type C-s as C-\\, and C-q as C-^. 12140When handling is enabled, user can type C-s as C-\\, and C-q as C-^.
12146With arg, enable flow control mode if arg is positive, otherwise disable. 12141With arg, enable flow control mode if arg is positive, otherwise disable.
12147 12142
12148(fn &optional ARGUMENT)" t nil) 12143(fn &optional ARGUMENT)" t)
12149(autoload 'enable-flow-control-on "flow-ctrl" "\ 12144(autoload 'enable-flow-control-on "flow-ctrl" "\
12150Enable flow control if using one of a specified set of terminal types. 12145Enable flow control if using one of a specified set of terminal types.
12151Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control 12146Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
@@ -12153,7 +12148,7 @@ on VT-100 and H19 terminals. When flow control is enabled,
12153you must type C-\\ to get the effect of a C-s, and type C-^ 12148you must type C-\\ to get the effect of a C-s, and type C-^
12154to get the effect of a C-q. 12149to get the effect of a C-q.
12155 12150
12156(fn &rest LOSING-TERMINAL-TYPES)" nil nil) 12151(fn &rest LOSING-TERMINAL-TYPES)")
12157(register-definition-prefixes "flow-ctrl" '("flow-control-c-")) 12152(register-definition-prefixes "flow-ctrl" '("flow-control-c-"))
12158 12153
12159 12154
@@ -12162,7 +12157,7 @@ to get the effect of a C-q.
12162(autoload 'fill-flowed-encode "flow-fill" "\ 12157(autoload 'fill-flowed-encode "flow-fill" "\
12163 12158
12164 12159
12165(fn &optional BUFFER)" nil nil) 12160(fn &optional BUFFER)")
12166(autoload 'fill-flowed "flow-fill" "\ 12161(autoload 'fill-flowed "flow-fill" "\
12167Apply RFC2646 decoding to BUFFER. 12162Apply RFC2646 decoding to BUFFER.
12168If BUFFER is nil, default to the current buffer. 12163If BUFFER is nil, default to the current buffer.
@@ -12170,7 +12165,7 @@ If BUFFER is nil, default to the current buffer.
12170If DELETE-SPACE, delete RFC2646 spaces padding at the end of 12165If DELETE-SPACE, delete RFC2646 spaces padding at the end of
12171lines. 12166lines.
12172 12167
12173(fn &optional BUFFER DELETE-SPACE)" nil nil) 12168(fn &optional BUFFER DELETE-SPACE)")
12174(register-definition-prefixes "flow-fill" '("fill-flowed-")) 12169(register-definition-prefixes "flow-fill" '("fill-flowed-"))
12175 12170
12176 12171
@@ -12206,7 +12201,7 @@ created diagnostic, overriding the default properties and any
12206properties listed in the `flymake-overlay-control' property of 12201properties listed in the `flymake-overlay-control' property of
12207the diagnostic's type symbol. 12202the diagnostic's type symbol.
12208 12203
12209(fn LOCUS BEG END TYPE TEXT &optional DATA OVERLAY-PROPERTIES)" nil nil) 12204(fn LOCUS BEG END TYPE TEXT &optional DATA OVERLAY-PROPERTIES)")
12210(autoload 'flymake-diagnostics "flymake" "\ 12205(autoload 'flymake-diagnostics "flymake" "\
12211Get Flymake diagnostics in region determined by BEG and END. 12206Get Flymake diagnostics in region determined by BEG and END.
12212 12207
@@ -12214,13 +12209,13 @@ If neither BEG or END is supplied, use whole accessible buffer,
12214otherwise if BEG is non-nil and END is nil, consider only 12209otherwise if BEG is non-nil and END is nil, consider only
12215diagnostics at BEG. 12210diagnostics at BEG.
12216 12211
12217(fn &optional BEG END)" nil nil) 12212(fn &optional BEG END)")
12218(autoload 'flymake-diag-region "flymake" "\ 12213(autoload 'flymake-diag-region "flymake" "\
12219Compute BUFFER's region (BEG . END) corresponding to LINE and COL. 12214Compute BUFFER's region (BEG . END) corresponding to LINE and COL.
12220If COL is nil, return a region just for LINE. Return nil if the 12215If COL is nil, return a region just for LINE. Return nil if the
12221region is invalid. This function saves match data. 12216region is invalid. This function saves match data.
12222 12217
12223(fn BUFFER LINE &optional COL)" nil nil) 12218(fn BUFFER LINE &optional COL)")
12224(autoload 'flymake-mode "flymake" "\ 12219(autoload 'flymake-mode "flymake" "\
12225Toggle Flymake mode on or off. 12220Toggle Flymake mode on or off.
12226 12221
@@ -12275,13 +12270,11 @@ evaluate `flymake-mode'.
12275The mode's hook is called both when the mode is enabled and when 12270The mode's hook is called both when the mode is enabled and when
12276it is disabled. 12271it is disabled.
12277 12272
12278\\{flymake-mode-map} 12273(fn &optional ARG)" t)
12279
12280(fn &optional ARG)" t nil)
12281(autoload 'flymake-mode-on "flymake" "\ 12274(autoload 'flymake-mode-on "flymake" "\
12282Turn Flymake mode on." nil nil) 12275Turn Flymake mode on.")
12283(autoload 'flymake-mode-off "flymake" "\ 12276(autoload 'flymake-mode-off "flymake" "\
12284Turn Flymake mode off." nil nil) 12277Turn Flymake mode off.")
12285(register-definition-prefixes "flymake" '("flymake-")) 12278(register-definition-prefixes "flymake" '("flymake-"))
12286 12279
12287 12280
@@ -12293,7 +12286,7 @@ This backend uses `flymake-cc-command' (which see) to launch a
12293process that is passed the current buffer's contents via stdin. 12286process that is passed the current buffer's contents via stdin.
12294REPORT-FN is Flymake's callback. 12287REPORT-FN is Flymake's callback.
12295 12288
12296(fn REPORT-FN &rest ARGS)" nil nil) 12289(fn REPORT-FN &rest ARGS)")
12297(register-definition-prefixes "flymake-cc" '("flymake-cc-")) 12290(register-definition-prefixes "flymake-cc" '("flymake-cc-"))
12298 12291
12299 12292
@@ -12306,7 +12299,7 @@ REPORT-FN is Flymake's callback.
12306;;; Generated autoloads from textmodes/flyspell.el 12299;;; Generated autoloads from textmodes/flyspell.el
12307 12300
12308(autoload 'flyspell-prog-mode "flyspell" "\ 12301(autoload 'flyspell-prog-mode "flyspell" "\
12309Turn on `flyspell-mode' for comments and strings." t nil) 12302Turn on `flyspell-mode' for comments and strings." t)
12310(defvar flyspell-mode nil "Non-nil if Flyspell mode is enabled.") 12303(defvar flyspell-mode nil "Non-nil if Flyspell mode is enabled.")
12311(autoload 'flyspell-mode "flyspell" "\ 12304(autoload 'flyspell-mode "flyspell" "\
12312Toggle on-the-fly spell checking (Flyspell mode). 12305Toggle on-the-fly spell checking (Flyspell mode).
@@ -12354,22 +12347,22 @@ evaluate `flyspell-mode'.
12354The mode's hook is called both when the mode is enabled and when 12347The mode's hook is called both when the mode is enabled and when
12355it is disabled. 12348it is disabled.
12356 12349
12357(fn &optional ARG)" t nil) 12350(fn &optional ARG)" t)
12358(autoload 'turn-on-flyspell "flyspell" "\ 12351(autoload 'turn-on-flyspell "flyspell" "\
12359Unconditionally turn on Flyspell mode." nil nil) 12352Unconditionally turn on Flyspell mode.")
12360(autoload 'turn-off-flyspell "flyspell" "\ 12353(autoload 'turn-off-flyspell "flyspell" "\
12361Unconditionally turn off Flyspell mode." nil nil) 12354Unconditionally turn off Flyspell mode.")
12362(autoload 'flyspell-mode-off "flyspell" "\ 12355(autoload 'flyspell-mode-off "flyspell" "\
12363Turn Flyspell mode off." nil nil) 12356Turn Flyspell mode off.")
12364(autoload 'flyspell-region "flyspell" "\ 12357(autoload 'flyspell-region "flyspell" "\
12365Flyspell text between BEG and END. 12358Flyspell text between BEG and END.
12366 12359
12367Make sure `flyspell-mode' is turned on if you want the highlight 12360Make sure `flyspell-mode' is turned on if you want the highlight
12368of a misspelled word removed when you've corrected it. 12361of a misspelled word removed when you've corrected it.
12369 12362
12370(fn BEG END)" t nil) 12363(fn BEG END)" t)
12371(autoload 'flyspell-buffer "flyspell" "\ 12364(autoload 'flyspell-buffer "flyspell" "\
12372Flyspell whole buffer." t nil) 12365Flyspell whole buffer." t)
12373(register-definition-prefixes "flyspell" '("flyspell-" "mail-mode-flyspell-verify" "make-flyspell-overlay" "sgml-mode-flyspell-verify" "tex")) 12366(register-definition-prefixes "flyspell" '("flyspell-" "mail-mode-flyspell-verify" "make-flyspell-overlay" "sgml-mode-flyspell-verify" "tex"))
12374 12367
12375 12368
@@ -12382,9 +12375,9 @@ Flyspell whole buffer." t nil)
12382;;; Generated autoloads from follow.el 12375;;; Generated autoloads from follow.el
12383 12376
12384(autoload 'turn-on-follow-mode "follow" "\ 12377(autoload 'turn-on-follow-mode "follow" "\
12385Turn on Follow mode. Please see the function `follow-mode'." nil nil) 12378Turn on Follow mode. Please see the function `follow-mode'.")
12386(autoload 'turn-off-follow-mode "follow" "\ 12379(autoload 'turn-off-follow-mode "follow" "\
12387Turn off Follow mode. Please see the function `follow-mode'." nil nil) 12380Turn off Follow mode. Please see the function `follow-mode'.")
12388(autoload 'follow-mode "follow" "\ 12381(autoload 'follow-mode "follow" "\
12389Toggle Follow mode. 12382Toggle Follow mode.
12390 12383
@@ -12431,7 +12424,7 @@ evaluate `follow-mode'.
12431The mode's hook is called both when the mode is enabled and when 12424The mode's hook is called both when the mode is enabled and when
12432it is disabled. 12425it is disabled.
12433 12426
12434(fn &optional ARG)" t nil) 12427(fn &optional ARG)" t)
12435(autoload 'follow-scroll-up-window "follow" "\ 12428(autoload 'follow-scroll-up-window "follow" "\
12436Scroll text in a Follow mode window up by that window's size. 12429Scroll text in a Follow mode window up by that window's size.
12437The other windows in the window chain will scroll synchronously. 12430The other windows in the window chain will scroll synchronously.
@@ -12444,7 +12437,7 @@ Negative ARG means scroll downward.
12444 12437
12445Works like `scroll-up' when not in Follow mode. 12438Works like `scroll-up' when not in Follow mode.
12446 12439
12447(fn &optional ARG)" t nil) 12440(fn &optional ARG)" t)
12448(autoload 'follow-scroll-down-window "follow" "\ 12441(autoload 'follow-scroll-down-window "follow" "\
12449Scroll text in a Follow mode window down by that window's size. 12442Scroll text in a Follow mode window down by that window's size.
12450The other windows in the window chain will scroll synchronously. 12443The other windows in the window chain will scroll synchronously.
@@ -12457,7 +12450,7 @@ Negative ARG means scroll upward.
12457 12450
12458Works like `scroll-down' when not in Follow mode. 12451Works like `scroll-down' when not in Follow mode.
12459 12452
12460(fn &optional ARG)" t nil) 12453(fn &optional ARG)" t)
12461(autoload 'follow-scroll-up "follow" "\ 12454(autoload 'follow-scroll-up "follow" "\
12462Scroll text in a Follow mode window chain up. 12455Scroll text in a Follow mode window chain up.
12463 12456
@@ -12469,7 +12462,7 @@ Negative ARG means scroll downward.
12469 12462
12470Works like `scroll-up' when not in Follow mode. 12463Works like `scroll-up' when not in Follow mode.
12471 12464
12472(fn &optional ARG)" t nil) 12465(fn &optional ARG)" t)
12473(autoload 'follow-scroll-down "follow" "\ 12466(autoload 'follow-scroll-down "follow" "\
12474Scroll text in a Follow mode window chain down. 12467Scroll text in a Follow mode window chain down.
12475 12468
@@ -12481,7 +12474,7 @@ Negative ARG means scroll upward.
12481 12474
12482Works like `scroll-down' when not in Follow mode. 12475Works like `scroll-down' when not in Follow mode.
12483 12476
12484(fn &optional ARG)" t nil) 12477(fn &optional ARG)" t)
12485(autoload 'follow-delete-other-windows-and-split "follow" "\ 12478(autoload 'follow-delete-other-windows-and-split "follow" "\
12486Create two side by side windows and enter Follow mode. 12479Create two side by side windows and enter Follow mode.
12487 12480
@@ -12496,7 +12489,7 @@ If ARG is positive, the leftmost window is selected. If negative,
12496the rightmost is selected. If ARG is nil, the leftmost window is 12489the rightmost is selected. If ARG is nil, the leftmost window is
12497selected if the original window is the first one in the frame. 12490selected if the original window is the first one in the frame.
12498 12491
12499(fn &optional ARG)" t nil) 12492(fn &optional ARG)" t)
12500(register-definition-prefixes "follow" '("follow-")) 12493(register-definition-prefixes "follow" '("follow-"))
12501 12494
12502 12495
@@ -12529,7 +12522,7 @@ evaluate `footnote-mode'.
12529The mode's hook is called both when the mode is enabled and when 12522The mode's hook is called both when the mode is enabled and when
12530it is disabled. 12523it is disabled.
12531 12524
12532(fn &optional ARG)" t nil) 12525(fn &optional ARG)" t)
12533(register-definition-prefixes "footnote" '("footnote-")) 12526(register-definition-prefixes "footnote" '("footnote-"))
12534 12527
12535 12528
@@ -12588,7 +12581,7 @@ any occurrences of \"%%\" in FORMAT verbatim in the result.
12588If SPLIT, instead of returning a single string, a list of strings 12581If SPLIT, instead of returning a single string, a list of strings
12589is returned, where each format spec is its own element. 12582is returned, where each format spec is its own element.
12590 12583
12591(fn FORMAT SPECIFICATION &optional IGNORE-MISSING SPLIT)" nil nil) 12584(fn FORMAT SPECIFICATION &optional IGNORE-MISSING SPLIT)")
12592(register-definition-prefixes "format-spec" '("format-spec-")) 12585(register-definition-prefixes "format-spec" '("format-spec-"))
12593 12586
12594 12587
@@ -12613,15 +12606,15 @@ Commands: Equivalent keys in read-only mode:
12613 C-c C-s forms-search-forward s 12606 C-c C-s forms-search-forward s
12614 C-c C-x forms-exit x 12607 C-c C-x forms-exit x
12615 12608
12616(fn &optional PRIMARY)" t nil) 12609(fn &optional PRIMARY)" t)
12617(autoload 'forms-find-file "forms" "\ 12610(autoload 'forms-find-file "forms" "\
12618Visit a file in Forms mode. 12611Visit a file in Forms mode.
12619 12612
12620(fn FN)" t nil) 12613(fn FN)" t)
12621(autoload 'forms-find-file-other-window "forms" "\ 12614(autoload 'forms-find-file-other-window "forms" "\
12622Visit a file in Forms mode in other window. 12615Visit a file in Forms mode in other window.
12623 12616
12624(fn FN)" t nil) 12617(fn FN)" t)
12625(register-definition-prefixes "forms" '("forms-")) 12618(register-definition-prefixes "forms" '("forms-"))
12626 12619
12627 12620
@@ -12697,7 +12690,7 @@ Variables controlling indentation style and extra features:
12697Turning on Fortran mode calls the value of the variable `fortran-mode-hook' 12690Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
12698with no args, if that value is non-nil. 12691with no args, if that value is non-nil.
12699 12692
12700(fn)" t nil) 12693(fn)" t)
12701(register-definition-prefixes "fortran" '("fortran-")) 12694(register-definition-prefixes "fortran" '("fortran-"))
12702 12695
12703 12696
@@ -12709,21 +12702,21 @@ Add STRING to a fortune file FILE.
12709Interactively, if called with a prefix argument, 12702Interactively, if called with a prefix argument,
12710read the file name to use. Otherwise use the value of `fortune-file'. 12703read the file name to use. Otherwise use the value of `fortune-file'.
12711 12704
12712(fn STRING FILE)" t nil) 12705(fn STRING FILE)" t)
12713(autoload 'fortune-from-region "fortune" "\ 12706(autoload 'fortune-from-region "fortune" "\
12714Append the current region to a local fortune-like data file. 12707Append the current region to a local fortune-like data file.
12715 12708
12716Interactively, if called with a prefix argument, 12709Interactively, if called with a prefix argument,
12717read the file name to use. Otherwise use the value of `fortune-file'. 12710read the file name to use. Otherwise use the value of `fortune-file'.
12718 12711
12719(fn BEG END FILE)" t nil) 12712(fn BEG END FILE)" t)
12720(autoload 'fortune-compile "fortune" "\ 12713(autoload 'fortune-compile "fortune" "\
12721Compile fortune file. 12714Compile fortune file.
12722 12715
12723If called with a prefix asks for the FILE to compile, otherwise uses 12716If called with a prefix asks for the FILE to compile, otherwise uses
12724the value of `fortune-file'. This currently cannot handle directories. 12717the value of `fortune-file'. This currently cannot handle directories.
12725 12718
12726(fn &optional FILE)" t nil) 12719(fn &optional FILE)" t)
12727(autoload 'fortune-to-signature "fortune" "\ 12720(autoload 'fortune-to-signature "fortune" "\
12728Create signature from output of the fortune program. 12721Create signature from output of the fortune program.
12729 12722
@@ -12732,13 +12725,13 @@ otherwise uses the value of `fortune-file'. If you want to have fortune
12732choose from a set of files in a directory, call interactively with prefix 12725choose from a set of files in a directory, call interactively with prefix
12733and choose the directory as the fortune-file. 12726and choose the directory as the fortune-file.
12734 12727
12735(fn &optional FILE)" t nil) 12728(fn &optional FILE)" t)
12736(autoload 'fortune-message "fortune" "\ 12729(autoload 'fortune-message "fortune" "\
12737Display a fortune cookie to the mini-buffer. 12730Display a fortune cookie to the mini-buffer.
12738If called with a prefix, it has the same behavior as `fortune'. 12731If called with a prefix, it has the same behavior as `fortune'.
12739Optional FILE is a fortune file from which a cookie will be selected. 12732Optional FILE is a fortune file from which a cookie will be selected.
12740 12733
12741(fn &optional FILE)" t nil) 12734(fn &optional FILE)" t)
12742(autoload 'fortune "fortune" "\ 12735(autoload 'fortune "fortune" "\
12743Display a fortune cookie. 12736Display a fortune cookie.
12744If called with a prefix asks for the FILE to choose the fortune from, 12737If called with a prefix asks for the FILE to choose the fortune from,
@@ -12746,7 +12739,7 @@ otherwise uses the value of `fortune-file'. If you want to have fortune
12746choose from a set of files in a directory, call interactively with prefix 12739choose from a set of files in a directory, call interactively with prefix
12747and choose the directory as the fortune-file. 12740and choose the directory as the fortune-file.
12748 12741
12749(fn &optional FILE)" t nil) 12742(fn &optional FILE)" t)
12750(register-definition-prefixes "fortune" '("fortune-")) 12743(register-definition-prefixes "fortune" '("fortune-"))
12751 12744
12752 12745
@@ -12821,17 +12814,17 @@ invocations, and once assigned is never changed unless the same
12821frame is duplicated (via `frameset-restore'), in which case the 12814frame is duplicated (via `frameset-restore'), in which case the
12822newest frame keeps the id and the old frame's is set to nil. 12815newest frame keeps the id and the old frame's is set to nil.
12823 12816
12824(fn FRAME)" nil nil) 12817(fn FRAME)")
12825(autoload 'frameset-frame-id-equal-p "frameset" "\ 12818(autoload 'frameset-frame-id-equal-p "frameset" "\
12826Return non-nil if FRAME's id matches ID. 12819Return non-nil if FRAME's id matches ID.
12827 12820
12828(fn FRAME ID)" nil nil) 12821(fn FRAME ID)")
12829(autoload 'frameset-frame-with-id "frameset" "\ 12822(autoload 'frameset-frame-with-id "frameset" "\
12830Return the live frame with id ID, if exists; else nil. 12823Return the live frame with id ID, if exists; else nil.
12831If FRAME-LIST is a list of frames, check these frames only. 12824If FRAME-LIST is a list of frames, check these frames only.
12832If nil, check all live frames. 12825If nil, check all live frames.
12833 12826
12834(fn ID &optional FRAME-LIST)" nil nil) 12827(fn ID &optional FRAME-LIST)")
12835(autoload 'frameset-save "frameset" "\ 12828(autoload 'frameset-save "frameset" "\
12836Return a frameset for FRAME-LIST, a list of frames. 12829Return a frameset for FRAME-LIST, a list of frames.
12837Dead frames and non-frame objects are silently removed from the list. 12830Dead frames and non-frame objects are silently removed from the list.
@@ -12844,7 +12837,7 @@ PREDICATE is a predicate function, which must return non-nil for frames that
12844should be saved; if PREDICATE is nil, all frames from FRAME-LIST are saved. 12837should be saved; if PREDICATE is nil, all frames from FRAME-LIST are saved.
12845PROPERTIES is a user-defined property list to add to the frameset. 12838PROPERTIES is a user-defined property list to add to the frameset.
12846 12839
12847(fn FRAME-LIST &key APP NAME DESCRIPTION FILTERS PREDICATE PROPERTIES)" nil nil) 12840(fn FRAME-LIST &key APP NAME DESCRIPTION FILTERS PREDICATE PROPERTIES)")
12848(autoload 'frameset-restore "frameset" "\ 12841(autoload 'frameset-restore "frameset" "\
12849Restore a FRAMESET into the current display(s). 12842Restore a FRAMESET into the current display(s).
12850 12843
@@ -12904,7 +12897,7 @@ restoration, including those that have been reused or created anew.
12904 12897
12905All keyword parameters default to nil. 12898All keyword parameters default to nil.
12906 12899
12907(fn FRAMESET &key PREDICATE FILTERS REUSE-FRAMES FORCE-DISPLAY FORCE-ONSCREEN CLEANUP-FRAMES)" nil nil) 12900(fn FRAMESET &key PREDICATE FILTERS REUSE-FRAMES FORCE-DISPLAY FORCE-ONSCREEN CLEANUP-FRAMES)")
12908(autoload 'frameset-to-register "frameset" "\ 12901(autoload 'frameset-to-register "frameset" "\
12909Store the current frameset in register REGISTER. 12902Store the current frameset in register REGISTER.
12910Use \\[jump-to-register] to restore the frameset. 12903Use \\[jump-to-register] to restore the frameset.
@@ -12912,7 +12905,7 @@ Argument is a character, naming the register.
12912 12905
12913Interactively, reads the register using `register-read-with-preview'. 12906Interactively, reads the register using `register-read-with-preview'.
12914 12907
12915(fn REGISTER)" t nil) 12908(fn REGISTER)" t)
12916(register-definition-prefixes "frameset" '("frameset-")) 12909(register-definition-prefixes "frameset" '("frameset-"))
12917 12910
12918 12911
@@ -12983,7 +12976,7 @@ evaluate `(default-value \\='gdb-enable-debug)'.
12983The mode's hook is called both when the mode is enabled and when 12976The mode's hook is called both when the mode is enabled and when
12984it is disabled. 12977it is disabled.
12985 12978
12986(fn &optional ARG)" t nil) 12979(fn &optional ARG)" t)
12987(autoload 'gdb "gdb-mi" "\ 12980(autoload 'gdb "gdb-mi" "\
12988Run gdb passing it COMMAND-LINE as arguments. 12981Run gdb passing it COMMAND-LINE as arguments.
12989 12982
@@ -13042,7 +13035,7 @@ detailed description of this mode.
13042| | D gdb-delete-breakpoint | 13035| | D gdb-delete-breakpoint |
13043+-----------------------------------+----------------------------------+ 13036+-----------------------------------+----------------------------------+
13044 13037
13045(fn COMMAND-LINE)" t nil) 13038(fn COMMAND-LINE)" t)
13046(register-definition-prefixes "gdb-mi" '("breakpoint" "def-gdb-" "gdb" "gud-" "hollow-right-triangle")) 13039(register-definition-prefixes "gdb-mi" '("breakpoint" "def-gdb-" "gdb" "gud-" "hollow-right-triangle"))
13047 13040
13048 13041
@@ -13101,7 +13094,7 @@ See the file generic-x.el for some examples of `define-generic-mode'.
13101(autoload 'generic-mode-internal "generic" "\ 13094(autoload 'generic-mode-internal "generic" "\
13102Go into the generic mode MODE. 13095Go into the generic mode MODE.
13103 13096
13104(fn MODE COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST FUNCTION-LIST)" nil nil) 13097(fn MODE COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST FUNCTION-LIST)")
13105(autoload 'generic-mode "generic" "\ 13098(autoload 'generic-mode "generic" "\
13106Enter generic mode MODE. 13099Enter generic mode MODE.
13107 13100
@@ -13112,7 +13105,7 @@ own mode, but have comment characters, keywords, and the like.)
13112To define a generic-mode, use the function `define-generic-mode'. 13105To define a generic-mode, use the function `define-generic-mode'.
13113Some generic modes are defined in `generic-x.el'. 13106Some generic modes are defined in `generic-x.el'.
13114 13107
13115(fn MODE)" t nil) 13108(fn MODE)" t)
13116(autoload 'generic-make-keywords-list "generic" "\ 13109(autoload 'generic-make-keywords-list "generic" "\
13117Return a `font-lock-keywords' construct that highlights KEYWORD-LIST. 13110Return a `font-lock-keywords' construct that highlights KEYWORD-LIST.
13118KEYWORD-LIST is a list of keyword strings that should be 13111KEYWORD-LIST is a list of keyword strings that should be
@@ -13122,7 +13115,7 @@ PREFIX and SUFFIX. Then it returns a construct based on this
13122regular expression that can be used as an element of 13115regular expression that can be used as an element of
13123`font-lock-keywords'. 13116`font-lock-keywords'.
13124 13117
13125(fn KEYWORD-LIST FACE &optional PREFIX SUFFIX)" nil nil) 13118(fn KEYWORD-LIST FACE &optional PREFIX SUFFIX)")
13126(make-obsolete 'generic-make-keywords-list 'regexp-opt "24.4") 13119(make-obsolete 'generic-make-keywords-list 'regexp-opt "24.4")
13127(register-definition-prefixes "generic" '("generic-")) 13120(register-definition-prefixes "generic" '("generic-"))
13128 13121
@@ -13159,7 +13152,7 @@ evaluate `glasses-mode'.
13159The mode's hook is called both when the mode is enabled and when 13152The mode's hook is called both when the mode is enabled and when
13160it is disabled. 13153it is disabled.
13161 13154
13162(fn &optional ARG)" t nil) 13155(fn &optional ARG)" t)
13163(register-definition-prefixes "glasses" '("glasses-")) 13156(register-definition-prefixes "glasses" '("glasses-"))
13164 13157
13165 13158
@@ -13191,7 +13184,7 @@ evaluate `glyphless-display-mode'.
13191The mode's hook is called both when the mode is enabled and when 13184The mode's hook is called both when the mode is enabled and when
13192it is disabled. 13185it is disabled.
13193 13186
13194(fn &optional ARG)" t nil) 13187(fn &optional ARG)" t)
13195(register-definition-prefixes "glyphless-mode" '("glyphless-mode-")) 13188(register-definition-prefixes "glyphless-mode" '("glyphless-mode-"))
13196 13189
13197 13190
@@ -13201,7 +13194,7 @@ it is disabled.
13201Potentially concat a list of regexps into a single one. 13194Potentially concat a list of regexps into a single one.
13202The concatenation is done with logical ORs. 13195The concatenation is done with logical ORs.
13203 13196
13204(fn REGEXP)" nil nil) 13197(fn REGEXP)")
13205(autoload 'gmm-message "gmm-utils" "\ 13198(autoload 'gmm-message "gmm-utils" "\
13206If LEVEL is lower than `gmm-verbose' print ARGS using `message'. 13199If LEVEL is lower than `gmm-verbose' print ARGS using `message'.
13207 13200
@@ -13212,16 +13205,16 @@ Guideline for numbers:
132127 - not very important messages on stuff 132057 - not very important messages on stuff
132139 - messages inside loops. 132069 - messages inside loops.
13214 13207
13215(fn LEVEL &rest ARGS)" nil nil) 13208(fn LEVEL &rest ARGS)")
13216(autoload 'gmm-error "gmm-utils" "\ 13209(autoload 'gmm-error "gmm-utils" "\
13217Beep an error if LEVEL is equal to or less than `gmm-verbose'. 13210Beep an error if LEVEL is equal to or less than `gmm-verbose'.
13218ARGS are passed to `message'. 13211ARGS are passed to `message'.
13219 13212
13220(fn LEVEL &rest ARGS)" nil nil) 13213(fn LEVEL &rest ARGS)")
13221(autoload 'gmm-widget-p "gmm-utils" "\ 13214(autoload 'gmm-widget-p "gmm-utils" "\
13222Non-nil if SYMBOL is a widget. 13215Non-nil if SYMBOL is a widget.
13223 13216
13224(fn SYMBOL)" nil nil) 13217(fn SYMBOL)")
13225(autoload 'gmm-tool-bar-from-list "gmm-utils" "\ 13218(autoload 'gmm-tool-bar-from-list "gmm-utils" "\
13226Make a tool bar from ICON-LIST. 13219Make a tool bar from ICON-LIST.
13227 13220
@@ -13240,7 +13233,7 @@ runs the command find-file\", then use `new-file' in ZAP-LIST.
13240 13233
13241DEFAULT-MAP specifies the default key map for ICON-LIST. 13234DEFAULT-MAP specifies the default key map for ICON-LIST.
13242 13235
13243(fn ICON-LIST ZAP-LIST DEFAULT-MAP)" nil nil) 13236(fn ICON-LIST ZAP-LIST DEFAULT-MAP)")
13244(register-definition-prefixes "gmm-utils" '("defun-gmm" "gmm-")) 13237(register-definition-prefixes "gmm-utils" '("defun-gmm" "gmm-"))
13245 13238
13246 13239
@@ -13251,11 +13244,11 @@ DEFAULT-MAP specifies the default key map for ICON-LIST.
13251(autoload 'gnus-child-no-server "gnus" "\ 13244(autoload 'gnus-child-no-server "gnus" "\
13252Read network news as a child, without connecting to the local server. 13245Read network news as a child, without connecting to the local server.
13253 13246
13254(fn &optional ARG)" t nil) 13247(fn &optional ARG)" t)
13255(autoload 'gnus-slave-no-server "gnus" "\ 13248(autoload 'gnus-slave-no-server "gnus" "\
13256Read network news as a child, without connecting to the local server. 13249Read network news as a child, without connecting to the local server.
13257 13250
13258(fn &optional ARG)" t nil) 13251(fn &optional ARG)" t)
13259(autoload 'gnus-no-server "gnus" "\ 13252(autoload 'gnus-no-server "gnus" "\
13260Read network news. 13253Read network news.
13261If ARG is a positive number, Gnus will use that as the startup level. 13254If ARG is a positive number, Gnus will use that as the startup level.
@@ -13265,15 +13258,15 @@ an NNTP server to use.
13265As opposed to `gnus', this command will not connect to the local 13258As opposed to `gnus', this command will not connect to the local
13266server. 13259server.
13267 13260
13268(fn &optional ARG CHILD)" t nil) 13261(fn &optional ARG CHILD)" t)
13269(autoload 'gnus-child "gnus" "\ 13262(autoload 'gnus-child "gnus" "\
13270Read news as a child. 13263Read news as a child.
13271 13264
13272(fn &optional ARG)" t nil) 13265(fn &optional ARG)" t)
13273(autoload 'gnus-slave "gnus" "\ 13266(autoload 'gnus-slave "gnus" "\
13274Read news as a child. 13267Read news as a child.
13275 13268
13276(fn &optional ARG)" t nil) 13269(fn &optional ARG)" t)
13277(autoload 'gnus-other-frame "gnus" "\ 13270(autoload 'gnus-other-frame "gnus" "\
13278Pop up a frame to read news. 13271Pop up a frame to read news.
13279This will call one of the Gnus commands which is specified by the user 13272This will call one of the Gnus commands which is specified by the user
@@ -13285,31 +13278,31 @@ such as \"unix:0\" to specify where to pop up a frame. If DISPLAY is
13285omitted or the function `make-frame-on-display' is not available, the 13278omitted or the function `make-frame-on-display' is not available, the
13286current display is used. 13279current display is used.
13287 13280
13288(fn &optional ARG DISPLAY)" t nil) 13281(fn &optional ARG DISPLAY)" t)
13289(autoload 'gnus "gnus" "\ 13282(autoload 'gnus "gnus" "\
13290Read network news. 13283Read network news.
13291If ARG is non-nil and a positive number, Gnus will use that as the 13284If ARG is non-nil and a positive number, Gnus will use that as the
13292startup level. If ARG is non-nil and not a positive number, Gnus will 13285startup level. If ARG is non-nil and not a positive number, Gnus will
13293prompt the user for the name of an NNTP server to use. 13286prompt the user for the name of an NNTP server to use.
13294 13287
13295(fn &optional ARG DONT-CONNECT CHILD)" t nil) 13288(fn &optional ARG DONT-CONNECT CHILD)" t)
13296(register-definition-prefixes "gnus" '("gnus-")) 13289(register-definition-prefixes "gnus" '("gnus-"))
13297 13290
13298 13291
13299;;; Generated autoloads from gnus/gnus-agent.el 13292;;; Generated autoloads from gnus/gnus-agent.el
13300 13293
13301(autoload 'gnus-unplugged "gnus-agent" "\ 13294(autoload 'gnus-unplugged "gnus-agent" "\
13302Start Gnus unplugged." t nil) 13295Start Gnus unplugged." t)
13303(autoload 'gnus-plugged "gnus-agent" "\ 13296(autoload 'gnus-plugged "gnus-agent" "\
13304Start Gnus plugged." t nil) 13297Start Gnus plugged." t)
13305(autoload 'gnus-child-unplugged "gnus-agent" "\ 13298(autoload 'gnus-child-unplugged "gnus-agent" "\
13306Read news as a child unplugged. 13299Read news as a child unplugged.
13307 13300
13308(fn &optional ARG)" t nil) 13301(fn &optional ARG)" t)
13309(autoload 'gnus-slave-unplugged "gnus-agent" "\ 13302(autoload 'gnus-slave-unplugged "gnus-agent" "\
13310Read news as a child unplugged. 13303Read news as a child unplugged.
13311 13304
13312(fn &optional ARG)" t nil) 13305(fn &optional ARG)" t)
13313(autoload 'gnus-agentize "gnus-agent" "\ 13306(autoload 'gnus-agentize "gnus-agent" "\
13314Allow Gnus to be an offline newsreader. 13307Allow Gnus to be an offline newsreader.
13315 13308
@@ -13319,9 +13312,9 @@ customize `gnus-agent' to nil.
13319 13312
13320This will modify the `gnus-setup-news-hook', and 13313This will modify the `gnus-setup-news-hook', and
13321`message-send-mail-real-function' variables, and install the Gnus agent 13314`message-send-mail-real-function' variables, and install the Gnus agent
13322minor mode in all Gnus buffers." t nil) 13315minor mode in all Gnus buffers." t)
13323(autoload 'gnus-agent-possibly-save-gcc "gnus-agent" "\ 13316(autoload 'gnus-agent-possibly-save-gcc "gnus-agent" "\
13324Save GCC if Gnus is unplugged." nil nil) 13317Save GCC if Gnus is unplugged.")
13325(autoload 'gnus-agent-rename-group "gnus-agent" "\ 13318(autoload 'gnus-agent-rename-group "gnus-agent" "\
13326Rename fully-qualified OLD-GROUP as NEW-GROUP. 13319Rename fully-qualified OLD-GROUP as NEW-GROUP.
13327Always updates the agent, even when disabled, as the old agent 13320Always updates the agent, even when disabled, as the old agent
@@ -13329,7 +13322,7 @@ files would corrupt gnus when the agent was next enabled.
13329Depends upon the caller to determine whether group renaming is 13322Depends upon the caller to determine whether group renaming is
13330supported. 13323supported.
13331 13324
13332(fn OLD-GROUP NEW-GROUP)" nil nil) 13325(fn OLD-GROUP NEW-GROUP)")
13333(autoload 'gnus-agent-delete-group "gnus-agent" "\ 13326(autoload 'gnus-agent-delete-group "gnus-agent" "\
13334Delete fully-qualified GROUP. 13327Delete fully-qualified GROUP.
13335Always updates the agent, even when disabled, as the old agent 13328Always updates the agent, even when disabled, as the old agent
@@ -13337,36 +13330,36 @@ files would corrupt gnus when the agent was next enabled.
13337Depends upon the caller to determine whether group deletion is 13330Depends upon the caller to determine whether group deletion is
13338supported. 13331supported.
13339 13332
13340(fn GROUP)" nil nil) 13333(fn GROUP)")
13341(autoload 'gnus-agent-get-undownloaded-list "gnus-agent" "\ 13334(autoload 'gnus-agent-get-undownloaded-list "gnus-agent" "\
13342Construct list of articles that have not been downloaded." nil nil) 13335Construct list of articles that have not been downloaded.")
13343(autoload 'gnus-agent-possibly-alter-active "gnus-agent" "\ 13336(autoload 'gnus-agent-possibly-alter-active "gnus-agent" "\
13344Possibly expand a group's active range to include articles 13337Possibly expand a group's active range to include articles
13345downloaded into the agent. 13338downloaded into the agent.
13346 13339
13347(fn GROUP ACTIVE &optional INFO)" nil nil) 13340(fn GROUP ACTIVE &optional INFO)")
13348(autoload 'gnus-agent-find-parameter "gnus-agent" "\ 13341(autoload 'gnus-agent-find-parameter "gnus-agent" "\
13349Search for GROUPs SYMBOL in the group's parameters, the group's 13342Search for GROUPs SYMBOL in the group's parameters, the group's
13350topic parameters, the group's category, or the customizable 13343topic parameters, the group's category, or the customizable
13351variables. Returns the first non-nil value found. 13344variables. Returns the first non-nil value found.
13352 13345
13353(fn GROUP SYMBOL)" nil nil) 13346(fn GROUP SYMBOL)")
13354(autoload 'gnus-agent-batch-fetch "gnus-agent" "\ 13347(autoload 'gnus-agent-batch-fetch "gnus-agent" "\
13355Start Gnus and fetch session." t nil) 13348Start Gnus and fetch session." t)
13356(autoload 'gnus-agent-batch "gnus-agent" "\ 13349(autoload 'gnus-agent-batch "gnus-agent" "\
13357Start Gnus, send queue and fetch session." t nil) 13350Start Gnus, send queue and fetch session." t)
13358(autoload 'gnus-agent-regenerate "gnus-agent" "\ 13351(autoload 'gnus-agent-regenerate "gnus-agent" "\
13359Regenerate all agent covered files. 13352Regenerate all agent covered files.
13360CLEAN is obsolete and ignored. 13353CLEAN is obsolete and ignored.
13361 13354
13362(fn &optional CLEAN REREAD)" t nil) 13355(fn &optional CLEAN REREAD)" t)
13363(register-definition-prefixes "gnus-agent" '("gnus-")) 13356(register-definition-prefixes "gnus-agent" '("gnus-"))
13364 13357
13365 13358
13366;;; Generated autoloads from gnus/gnus-art.el 13359;;; Generated autoloads from gnus/gnus-art.el
13367 13360
13368(autoload 'gnus-article-prepare-display "gnus-art" "\ 13361(autoload 'gnus-article-prepare-display "gnus-art" "\
13369Make the current buffer look like a nice article." nil nil) 13362Make the current buffer look like a nice article.")
13370(register-definition-prefixes "gnus-art" '("article-" "gnus-")) 13363(register-definition-prefixes "gnus-art" '("article-" "gnus-"))
13371 13364
13372 13365
@@ -13383,16 +13376,16 @@ Make the current buffer look like a nice article." nil nil)
13383;;; Generated autoloads from gnus/gnus-bookmark.el 13376;;; Generated autoloads from gnus/gnus-bookmark.el
13384 13377
13385(autoload 'gnus-bookmark-set "gnus-bookmark" "\ 13378(autoload 'gnus-bookmark-set "gnus-bookmark" "\
13386Set a bookmark for this article." '(gnus-article-mode gnus-summary-mode) nil) 13379Set a bookmark for this article." '(gnus-article-mode gnus-summary-mode))
13387(autoload 'gnus-bookmark-jump "gnus-bookmark" "\ 13380(autoload 'gnus-bookmark-jump "gnus-bookmark" "\
13388Jump to a Gnus bookmark (BMK-NAME). 13381Jump to a Gnus bookmark (BMK-NAME).
13389 13382
13390(fn &optional BMK-NAME)" t nil) 13383(fn &optional BMK-NAME)" t)
13391(autoload 'gnus-bookmark-bmenu-list "gnus-bookmark" "\ 13384(autoload 'gnus-bookmark-bmenu-list "gnus-bookmark" "\
13392Display a list of existing Gnus bookmarks. 13385Display a list of existing Gnus bookmarks.
13393The list is displayed in a buffer named `*Gnus Bookmark List*'. 13386The list is displayed in a buffer named `*Gnus Bookmark List*'.
13394The leftmost column displays a D if the bookmark is flagged for 13387The leftmost column displays a D if the bookmark is flagged for
13395deletion, or > if it is flagged for displaying." t nil) 13388deletion, or > if it is flagged for displaying." t)
13396(register-definition-prefixes "gnus-bookmark" '("gnus-bookmark-")) 13389(register-definition-prefixes "gnus-bookmark" '("gnus-bookmark-"))
13397 13390
13398 13391
@@ -13402,15 +13395,15 @@ deletion, or > if it is flagged for displaying." t nil)
13402Go through all groups and put the articles into the cache. 13395Go through all groups and put the articles into the cache.
13403 13396
13404Usage: 13397Usage:
13405$ emacs -batch -l ~/.emacs -l gnus -f gnus-jog-cache" t nil) 13398$ emacs -batch -l ~/.emacs -l gnus -f gnus-jog-cache" t)
13406(autoload 'gnus-cache-generate-active "gnus-cache" "\ 13399(autoload 'gnus-cache-generate-active "gnus-cache" "\
13407Generate the cache active file. 13400Generate the cache active file.
13408 13401
13409(fn &optional DIRECTORY)" t nil) 13402(fn &optional DIRECTORY)" t)
13410(autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\ 13403(autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\
13411Generate NOV files recursively starting in DIR. 13404Generate NOV files recursively starting in DIR.
13412 13405
13413(fn DIR)" t nil) 13406(fn DIR)" t)
13414(autoload 'gnus-cache-rename-group "gnus-cache" "\ 13407(autoload 'gnus-cache-rename-group "gnus-cache" "\
13415Rename OLD-GROUP as NEW-GROUP. 13408Rename OLD-GROUP as NEW-GROUP.
13416Always updates the cache, even when disabled, as the old cache 13409Always updates the cache, even when disabled, as the old cache
@@ -13418,7 +13411,7 @@ files would corrupt Gnus when the cache was next enabled. It
13418depends on the caller to determine whether group renaming is 13411depends on the caller to determine whether group renaming is
13419supported. 13412supported.
13420 13413
13421(fn OLD-GROUP NEW-GROUP)" nil nil) 13414(fn OLD-GROUP NEW-GROUP)")
13422(autoload 'gnus-cache-delete-group "gnus-cache" "\ 13415(autoload 'gnus-cache-delete-group "gnus-cache" "\
13423Delete GROUP from the cache. 13416Delete GROUP from the cache.
13424Always updates the cache, even when disabled, as the old cache 13417Always updates the cache, even when disabled, as the old cache
@@ -13426,7 +13419,7 @@ files would corrupt gnus when the cache was next enabled.
13426Depends upon the caller to determine whether group deletion is 13419Depends upon the caller to determine whether group deletion is
13427supported. 13420supported.
13428 13421
13429(fn GROUP)" nil nil) 13422(fn GROUP)")
13430(register-definition-prefixes "gnus-cache" '("gnus-")) 13423(register-definition-prefixes "gnus-cache" '("gnus-"))
13431 13424
13432 13425
@@ -13469,9 +13462,9 @@ The value of `message-draft-headers' determines which headers are
13469generated when the article is delayed. Remaining headers are 13462generated when the article is delayed. Remaining headers are
13470generated when the article is sent. 13463generated when the article is sent.
13471 13464
13472(fn DELAY)" '(message-mode) nil) 13465(fn DELAY)" '(message-mode))
13473(autoload 'gnus-delay-send-queue "gnus-delay" "\ 13466(autoload 'gnus-delay-send-queue "gnus-delay" "\
13474Send all the delayed messages that are due now." t nil) 13467Send all the delayed messages that are due now." t)
13475(autoload 'gnus-delay-initialize "gnus-delay" "\ 13468(autoload 'gnus-delay-initialize "gnus-delay" "\
13476Initialize the gnus-delay package. 13469Initialize the gnus-delay package.
13477This sets up a key binding in `message-mode' to delay a message. 13470This sets up a key binding in `message-mode' to delay a message.
@@ -13480,7 +13473,7 @@ This tells Gnus to look for delayed messages after getting new news.
13480The optional arg NO-KEYMAP is ignored. 13473The optional arg NO-KEYMAP is ignored.
13481Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. 13474Checking delayed messages is skipped if optional arg NO-CHECK is non-nil.
13482 13475
13483(fn &optional NO-KEYMAP NO-CHECK)" nil nil) 13476(fn &optional NO-KEYMAP NO-CHECK)")
13484(register-definition-prefixes "gnus-delay" '("gnus-delay-")) 13477(register-definition-prefixes "gnus-delay" '("gnus-delay-"))
13485 13478
13486 13479
@@ -13494,25 +13487,25 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil.
13494(autoload 'gnus-user-format-function-d "gnus-diary" "\ 13487(autoload 'gnus-user-format-function-d "gnus-diary" "\
13495 13488
13496 13489
13497(fn HEADER)" nil nil) 13490(fn HEADER)")
13498(autoload 'gnus-user-format-function-D "gnus-diary" "\ 13491(autoload 'gnus-user-format-function-D "gnus-diary" "\
13499 13492
13500 13493
13501(fn HEADER)" nil nil) 13494(fn HEADER)")
13502(register-definition-prefixes "gnus-diary" '("gnus-")) 13495(register-definition-prefixes "gnus-diary" '("gnus-"))
13503 13496
13504 13497
13505;;; Generated autoloads from gnus/gnus-dired.el 13498;;; Generated autoloads from gnus/gnus-dired.el
13506 13499
13507(autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ 13500(autoload 'turn-on-gnus-dired-mode "gnus-dired" "\
13508Convenience method to turn on `gnus-dired-mode'." t nil) 13501Convenience method to turn on `gnus-dired-mode'." t)
13509(register-definition-prefixes "gnus-dired" '("gnus-dired-")) 13502(register-definition-prefixes "gnus-dired" '("gnus-dired-"))
13510 13503
13511 13504
13512;;; Generated autoloads from gnus/gnus-draft.el 13505;;; Generated autoloads from gnus/gnus-draft.el
13513 13506
13514(autoload 'gnus-draft-reminder "gnus-draft" "\ 13507(autoload 'gnus-draft-reminder "gnus-draft" "\
13515Reminder user if there are unsent drafts." t nil) 13508Reminder user if there are unsent drafts." t)
13516(register-definition-prefixes "gnus-draft" '("gnus-")) 13509(register-definition-prefixes "gnus-draft" '("gnus-"))
13517 13510
13518 13511
@@ -13532,45 +13525,45 @@ Reminder user if there are unsent drafts." t nil)
13532Return file from DIR with extension EXT. 13525Return file from DIR with extension EXT.
13533Omit matches of OMIT, and process them by FUN. 13526Omit matches of OMIT, and process them by FUN.
13534 13527
13535(fn DIR EXT OMIT FUN)" nil nil) 13528(fn DIR EXT OMIT FUN)")
13536(autoload 'message-goto-eoh "message" nil t) 13529(autoload 'message-goto-eoh "message" nil t)
13537(autoload 'gnus-random-x-face "gnus-fun" "\ 13530(autoload 'gnus-random-x-face "gnus-fun" "\
13538Return X-Face header data chosen randomly from `gnus-x-face-directory'. 13531Return X-Face header data chosen randomly from `gnus-x-face-directory'.
13539 13532
13540Files matching `gnus-x-face-omit-files' are not considered." t nil) 13533Files matching `gnus-x-face-omit-files' are not considered." t)
13541(autoload 'gnus-insert-random-x-face-header "gnus-fun" "\ 13534(autoload 'gnus-insert-random-x-face-header "gnus-fun" "\
13542Insert a random X-Face header from `gnus-x-face-directory'." t nil) 13535Insert a random X-Face header from `gnus-x-face-directory'." t)
13543(autoload 'gnus-x-face-from-file "gnus-fun" "\ 13536(autoload 'gnus-x-face-from-file "gnus-fun" "\
13544Insert an X-Face header based on an image FILE. 13537Insert an X-Face header based on an image FILE.
13545 13538
13546Depending on `gnus-convert-image-to-x-face-command' it may accept 13539Depending on `gnus-convert-image-to-x-face-command' it may accept
13547different input formats. 13540different input formats.
13548 13541
13549(fn FILE)" t nil) 13542(fn FILE)" t)
13550(autoload 'gnus-face-from-file "gnus-fun" "\ 13543(autoload 'gnus-face-from-file "gnus-fun" "\
13551Return a Face header based on an image FILE. 13544Return a Face header based on an image FILE.
13552 13545
13553Depending on `gnus-convert-image-to-face-command' it may accept 13546Depending on `gnus-convert-image-to-face-command' it may accept
13554different input formats. 13547different input formats.
13555 13548
13556(fn FILE)" t nil) 13549(fn FILE)" t)
13557(autoload 'gnus-convert-face-to-png "gnus-fun" "\ 13550(autoload 'gnus-convert-face-to-png "gnus-fun" "\
13558Convert FACE (which is base64-encoded) to a PNG. 13551Convert FACE (which is base64-encoded) to a PNG.
13559The PNG is returned as a string. 13552The PNG is returned as a string.
13560 13553
13561(fn FACE)" nil nil) 13554(fn FACE)")
13562(autoload 'gnus-convert-png-to-face "gnus-fun" "\ 13555(autoload 'gnus-convert-png-to-face "gnus-fun" "\
13563Convert FILE to a Face. 13556Convert FILE to a Face.
13564FILE should be a PNG file that's 48x48 and smaller than or equal to 13557FILE should be a PNG file that's 48x48 and smaller than or equal to
13565726 bytes. 13558726 bytes.
13566 13559
13567(fn FILE)" nil nil) 13560(fn FILE)")
13568(autoload 'gnus-random-face "gnus-fun" "\ 13561(autoload 'gnus-random-face "gnus-fun" "\
13569Return randomly chosen Face from `gnus-face-directory'. 13562Return randomly chosen Face from `gnus-face-directory'.
13570 13563
13571Files matching `gnus-face-omit-files' are not considered." t nil) 13564Files matching `gnus-face-omit-files' are not considered." t)
13572(autoload 'gnus-insert-random-face-header "gnus-fun" "\ 13565(autoload 'gnus-insert-random-face-header "gnus-fun" "\
13573Insert a random Face header from `gnus-face-directory'." nil nil) 13566Insert a random Face header from `gnus-face-directory'.")
13574(register-definition-prefixes "gnus-fun" '("gnus-")) 13567(register-definition-prefixes "gnus-fun" '("gnus-"))
13575 13568
13576 13569
@@ -13580,12 +13573,12 @@ Insert a random Face header from `gnus-face-directory'." nil nil)
13580Display gravatar in the From header. 13573Display gravatar in the From header.
13581If gravatar is already displayed, remove it. 13574If gravatar is already displayed, remove it.
13582 13575
13583(fn &optional FORCE)" '(gnus-article-mode gnus-summary-mode) nil) 13576(fn &optional FORCE)" '(gnus-article-mode gnus-summary-mode))
13584(autoload 'gnus-treat-mail-gravatar "gnus-gravatar" "\ 13577(autoload 'gnus-treat-mail-gravatar "gnus-gravatar" "\
13585Display gravatars in the Cc and To headers. 13578Display gravatars in the Cc and To headers.
13586If gravatars are already displayed, remove them. 13579If gravatars are already displayed, remove them.
13587 13580
13588(fn &optional FORCE)" '(gnus-article-mode gnus-summary-mode) nil) 13581(fn &optional FORCE)" '(gnus-article-mode gnus-summary-mode))
13589(register-definition-prefixes "gnus-gravatar" '("gnus-gravatar-")) 13582(register-definition-prefixes "gnus-gravatar" '("gnus-gravatar-"))
13590 13583
13591 13584
@@ -13596,17 +13589,17 @@ Start Gnus if necessary and enter GROUP.
13596If ARTICLES, display those articles. 13589If ARTICLES, display those articles.
13597Returns whether the fetching was successful or not. 13590Returns whether the fetching was successful or not.
13598 13591
13599(fn GROUP &optional ARTICLES)" t nil) 13592(fn GROUP &optional ARTICLES)" t)
13600(autoload 'gnus-fetch-group-other-frame "gnus-group" "\ 13593(autoload 'gnus-fetch-group-other-frame "gnus-group" "\
13601Pop up a frame and enter GROUP. 13594Pop up a frame and enter GROUP.
13602 13595
13603(fn GROUP)" t nil) 13596(fn GROUP)" t)
13604(autoload 'gnus-read-ephemeral-emacs-bug-group "gnus-group" "\ 13597(autoload 'gnus-read-ephemeral-emacs-bug-group "gnus-group" "\
13605Browse Emacs bug reports with IDS in an ephemeral group. 13598Browse Emacs bug reports with IDS in an ephemeral group.
13606The arguments have the same meaning as those of 13599The arguments have the same meaning as those of
13607`gnus-read-ephemeral-bug-group', which see. 13600`gnus-read-ephemeral-bug-group', which see.
13608 13601
13609(fn IDS &optional WINDOW-CONF)" t nil) 13602(fn IDS &optional WINDOW-CONF)" t)
13610(register-definition-prefixes "gnus-group" '("gnus-")) 13603(register-definition-prefixes "gnus-group" '("gnus-"))
13611 13604
13612 13605
@@ -13615,11 +13608,11 @@ The arguments have the same meaning as those of
13615(autoload 'gnus-article-html "gnus-html" "\ 13608(autoload 'gnus-article-html "gnus-html" "\
13616 13609
13617 13610
13618(fn &optional HANDLE)" nil nil) 13611(fn &optional HANDLE)")
13619(autoload 'gnus-html-prefetch-images "gnus-html" "\ 13612(autoload 'gnus-html-prefetch-images "gnus-html" "\
13620 13613
13621 13614
13622(fn SUMMARY)" nil nil) 13615(fn SUMMARY)")
13623(register-definition-prefixes "gnus-html" '("gnus-")) 13616(register-definition-prefixes "gnus-html" '("gnus-"))
13624 13617
13625 13618
@@ -13628,7 +13621,7 @@ The arguments have the same meaning as those of
13628(autoload 'gnus-icalendar-mm-inline "gnus-icalendar" "\ 13621(autoload 'gnus-icalendar-mm-inline "gnus-icalendar" "\
13629 13622
13630 13623
13631(fn HANDLE)" nil nil) 13624(fn HANDLE)")
13632(register-definition-prefixes "gnus-icalendar" '("gnus-icalendar")) 13625(register-definition-prefixes "gnus-icalendar" '("gnus-icalendar"))
13633 13626
13634 13627
@@ -13642,7 +13635,7 @@ The arguments have the same meaning as those of
13642(defalias 'gnus-batch-kill 'gnus-batch-score) 13635(defalias 'gnus-batch-kill 'gnus-batch-score)
13643(autoload 'gnus-batch-score "gnus-kill" "\ 13636(autoload 'gnus-batch-score "gnus-kill" "\
13644Run batched scoring. 13637Run batched scoring.
13645Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score" t nil) 13638Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score" t)
13646(register-definition-prefixes "gnus-kill" '("gnus-")) 13639(register-definition-prefixes "gnus-kill" '("gnus-"))
13647 13640
13648 13641
@@ -13658,12 +13651,12 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score" t nil)
13658 13651
13659;;; Generated autoloads from gnus/gnus-ml.el 13652;;; Generated autoloads from gnus/gnus-ml.el
13660 13653
13661(autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" nil nil nil) 13654(autoload 'turn-on-gnus-mailing-list-mode "gnus-ml")
13662(autoload 'gnus-mailing-list-insinuate "gnus-ml" "\ 13655(autoload 'gnus-mailing-list-insinuate "gnus-ml" "\
13663Setup group parameters from List-Post header. 13656Setup group parameters from List-Post header.
13664If FORCE is non-nil, replace the old ones. 13657If FORCE is non-nil, replace the old ones.
13665 13658
13666(fn &optional FORCE)" t nil) 13659(fn &optional FORCE)" t)
13667(autoload 'gnus-mailing-list-mode "gnus-ml" "\ 13660(autoload 'gnus-mailing-list-mode "gnus-ml" "\
13668Minor mode for providing mailing-list commands. 13661Minor mode for providing mailing-list commands.
13669 13662
@@ -13684,7 +13677,7 @@ evaluate `gnus-mailing-list-mode'.
13684The mode's hook is called both when the mode is enabled and when 13677The mode's hook is called both when the mode is enabled and when
13685it is disabled. 13678it is disabled.
13686 13679
13687(fn &optional ARG)" t nil) 13680(fn &optional ARG)" t)
13688(register-definition-prefixes "gnus-ml" '("gnus-mailing-list-")) 13681(register-definition-prefixes "gnus-ml" '("gnus-mailing-list-"))
13689 13682
13690 13683
@@ -13712,7 +13705,7 @@ elaborate fancy splits may also be useful to split mail that doesn't
13712match any of the group-specified splitting rules. See 13705match any of the group-specified splitting rules. See
13713`gnus-group-split-fancy' for details. 13706`gnus-group-split-fancy' for details.
13714 13707
13715(fn &optional AUTO-UPDATE CATCH-ALL)" t nil) 13708(fn &optional AUTO-UPDATE CATCH-ALL)" t)
13716(autoload 'gnus-group-split-update "gnus-mlspl" "\ 13709(autoload 'gnus-group-split-update "gnus-mlspl" "\
13717Computes `nnmail-split-fancy' from group params and CATCH-ALL. 13710Computes `nnmail-split-fancy' from group params and CATCH-ALL.
13718It does this by calling (gnus-group-split-fancy nil nil CATCH-ALL). 13711It does this by calling (gnus-group-split-fancy nil nil CATCH-ALL).
@@ -13720,12 +13713,12 @@ It does this by calling (gnus-group-split-fancy nil nil CATCH-ALL).
13720If CATCH-ALL is nil, `gnus-group-split-default-catch-all-group' is used 13713If CATCH-ALL is nil, `gnus-group-split-default-catch-all-group' is used
13721instead. This variable is set by `gnus-group-split-setup'. 13714instead. This variable is set by `gnus-group-split-setup'.
13722 13715
13723(fn &optional CATCH-ALL)" t nil) 13716(fn &optional CATCH-ALL)" t)
13724(autoload 'gnus-group-split "gnus-mlspl" "\ 13717(autoload 'gnus-group-split "gnus-mlspl" "\
13725Use information from group parameters in order to split mail. 13718Use information from group parameters in order to split mail.
13726See `gnus-group-split-fancy' for more information. 13719See `gnus-group-split-fancy' for more information.
13727 13720
13728`gnus-group-split' is a valid value for `nnmail-split-methods'." nil nil) 13721`gnus-group-split' is a valid value for `nnmail-split-methods'.")
13729(autoload 'gnus-group-split-fancy "gnus-mlspl" "\ 13722(autoload 'gnus-group-split-fancy "gnus-mlspl" "\
13730Uses information from group parameters in order to split mail. 13723Uses information from group parameters in order to split mail.
13731It can be embedded into `nnmail-split-fancy' lists with the SPLIT 13724It can be embedded into `nnmail-split-fancy' lists with the SPLIT
@@ -13777,7 +13770,7 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns:
13777 - \"bugs-foo\" - \"rambling-foo\" \"mail.foo\")) 13770 - \"bugs-foo\" - \"rambling-foo\" \"mail.foo\"))
13778 \"mail.others\") 13771 \"mail.others\")
13779 13772
13780(fn &optional GROUPS NO-CROSSPOST CATCH-ALL)" nil nil) 13773(fn &optional GROUPS NO-CROSSPOST CATCH-ALL)")
13781(register-definition-prefixes "gnus-mlspl" '("gnus-group-split-")) 13774(register-definition-prefixes "gnus-mlspl" '("gnus-group-split-"))
13782 13775
13783 13776
@@ -13790,15 +13783,15 @@ Gcc: header for archiving purposes.
13790If Gnus isn't running, a plain `message-mail' setup is used 13783If Gnus isn't running, a plain `message-mail' setup is used
13791instead. 13784instead.
13792 13785
13793(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-ACTION YANK-ACTION SEND-ACTIONS RETURN-ACTION)" t nil) 13786(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-ACTION YANK-ACTION SEND-ACTIONS RETURN-ACTION)" t)
13794(autoload 'gnus-button-mailto "gnus-msg" "\ 13787(autoload 'gnus-button-mailto "gnus-msg" "\
13795Mail to ADDRESS. 13788Mail to ADDRESS.
13796 13789
13797(fn ADDRESS)" nil nil) 13790(fn ADDRESS)")
13798(autoload 'gnus-button-reply "gnus-msg" "\ 13791(autoload 'gnus-button-reply "gnus-msg" "\
13799Like `message-reply'. 13792Like `message-reply'.
13800 13793
13801(fn &optional TO-ADDRESS WIDE)" t nil) 13794(fn &optional TO-ADDRESS WIDE)" t)
13802(define-mail-user-agent 'gnus-user-agent 'gnus-msg-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) 13795(define-mail-user-agent 'gnus-user-agent 'gnus-msg-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook)
13803(register-definition-prefixes "gnus-msg" '("gnus-")) 13796(register-definition-prefixes "gnus-msg" '("gnus-"))
13804 13797
@@ -13812,7 +13805,7 @@ or equal to `gnus-notifications-minimum-level' and send a
13812notification using `notifications-notify' for it. 13805notification using `notifications-notify' for it.
13813 13806
13814This is typically a function to add in 13807This is typically a function to add in
13815`gnus-after-getting-new-news-hook'" nil nil) 13808`gnus-after-getting-new-news-hook'")
13816(register-definition-prefixes "gnus-notifications" '("gnus-notifications-")) 13809(register-definition-prefixes "gnus-notifications" '("gnus-notifications-"))
13817 13810
13818 13811
@@ -13820,13 +13813,13 @@ This is typically a function to add in
13820 13813
13821(autoload 'gnus-treat-from-picon "gnus-picon" "\ 13814(autoload 'gnus-treat-from-picon "gnus-picon" "\
13822Display picons in the From header. 13815Display picons in the From header.
13823If picons are already displayed, remove them." '(gnus-article-mode gnus-summary-mode) nil) 13816If picons are already displayed, remove them." '(gnus-article-mode gnus-summary-mode))
13824(autoload 'gnus-treat-mail-picon "gnus-picon" "\ 13817(autoload 'gnus-treat-mail-picon "gnus-picon" "\
13825Display picons in the Cc and To headers. 13818Display picons in the Cc and To headers.
13826If picons are already displayed, remove them." '(gnus-article-mode gnus-summary-mode) nil) 13819If picons are already displayed, remove them." '(gnus-article-mode gnus-summary-mode))
13827(autoload 'gnus-treat-newsgroups-picon "gnus-picon" "\ 13820(autoload 'gnus-treat-newsgroups-picon "gnus-picon" "\
13828Display picons in the Newsgroups and Followup-To headers. 13821Display picons in the Newsgroups and Followup-To headers.
13829If picons are already displayed, remove them." '(gnus-article-mode gnus-summary-mode) nil) 13822If picons are already displayed, remove them." '(gnus-article-mode gnus-summary-mode))
13830(register-definition-prefixes "gnus-picon" '("gnus-picon-")) 13823(register-definition-prefixes "gnus-picon" '("gnus-picon-"))
13831 13824
13832 13825
@@ -13837,55 +13830,55 @@ Return a list of elements of LIST1 that do not appear in LIST2.
13837Both lists have to be sorted over <. 13830Both lists have to be sorted over <.
13838The tail of LIST1 is not copied. 13831The tail of LIST1 is not copied.
13839 13832
13840(fn LIST1 LIST2)" nil nil) 13833(fn LIST1 LIST2)")
13841(autoload 'gnus-sorted-ndifference "gnus-range" "\ 13834(autoload 'gnus-sorted-ndifference "gnus-range" "\
13842Return a list of elements of LIST1 that do not appear in LIST2. 13835Return a list of elements of LIST1 that do not appear in LIST2.
13843Both lists have to be sorted over <. 13836Both lists have to be sorted over <.
13844LIST1 is modified. 13837LIST1 is modified.
13845 13838
13846(fn LIST1 LIST2)" nil nil) 13839(fn LIST1 LIST2)")
13847(autoload 'gnus-sorted-complement "gnus-range" "\ 13840(autoload 'gnus-sorted-complement "gnus-range" "\
13848Return a list of elements that are in LIST1 or LIST2 but not both. 13841Return a list of elements that are in LIST1 or LIST2 but not both.
13849Both lists have to be sorted over <. 13842Both lists have to be sorted over <.
13850 13843
13851(fn LIST1 LIST2)" nil nil) 13844(fn LIST1 LIST2)")
13852(autoload 'gnus-intersection "gnus-range" "\ 13845(autoload 'gnus-intersection "gnus-range" "\
13853 13846
13854 13847
13855(fn LIST1 LIST2)" nil nil) 13848(fn LIST1 LIST2)")
13856(make-obsolete 'gnus-intersection 'seq-intersection "28.1") 13849(make-obsolete 'gnus-intersection 'seq-intersection "28.1")
13857(autoload 'gnus-sorted-intersection "gnus-range" "\ 13850(autoload 'gnus-sorted-intersection "gnus-range" "\
13858Return intersection of LIST1 and LIST2. 13851Return intersection of LIST1 and LIST2.
13859LIST1 and LIST2 have to be sorted over <. 13852LIST1 and LIST2 have to be sorted over <.
13860 13853
13861(fn LIST1 LIST2)" nil nil) 13854(fn LIST1 LIST2)")
13862(defalias 'gnus-set-sorted-intersection #'gnus-sorted-nintersection) 13855(defalias 'gnus-set-sorted-intersection #'gnus-sorted-nintersection)
13863(autoload 'gnus-sorted-nintersection "gnus-range" "\ 13856(autoload 'gnus-sorted-nintersection "gnus-range" "\
13864Return intersection of LIST1 and LIST2 by modifying cdr pointers of LIST1. 13857Return intersection of LIST1 and LIST2 by modifying cdr pointers of LIST1.
13865LIST1 and LIST2 have to be sorted over <. 13858LIST1 and LIST2 have to be sorted over <.
13866 13859
13867(fn LIST1 LIST2)" nil nil) 13860(fn LIST1 LIST2)")
13868(autoload 'gnus-sorted-union "gnus-range" "\ 13861(autoload 'gnus-sorted-union "gnus-range" "\
13869Return union of LIST1 and LIST2. 13862Return union of LIST1 and LIST2.
13870LIST1 and LIST2 have to be sorted over <. 13863LIST1 and LIST2 have to be sorted over <.
13871 13864
13872(fn LIST1 LIST2)" nil nil) 13865(fn LIST1 LIST2)")
13873(autoload 'gnus-sorted-nunion "gnus-range" "\ 13866(autoload 'gnus-sorted-nunion "gnus-range" "\
13874Return union of LIST1 and LIST2 by modifying cdr pointers of LIST1. 13867Return union of LIST1 and LIST2 by modifying cdr pointers of LIST1.
13875LIST1 and LIST2 have to be sorted over <. 13868LIST1 and LIST2 have to be sorted over <.
13876 13869
13877(fn LIST1 LIST2)" nil nil) 13870(fn LIST1 LIST2)")
13878(autoload 'gnus-add-to-sorted-list "gnus-range" "\ 13871(autoload 'gnus-add-to-sorted-list "gnus-range" "\
13879Add NUM into sorted LIST by side effect. 13872Add NUM into sorted LIST by side effect.
13880 13873
13881(fn LIST NUM)" nil nil) 13874(fn LIST NUM)")
13882(register-definition-prefixes "gnus-range" '("gnus-")) 13875(register-definition-prefixes "gnus-range" '("gnus-"))
13883 13876
13884 13877
13885;;; Generated autoloads from gnus/gnus-registry.el 13878;;; Generated autoloads from gnus/gnus-registry.el
13886 13879
13887(autoload 'gnus-registry-initialize "gnus-registry" "\ 13880(autoload 'gnus-registry-initialize "gnus-registry" "\
13888Initialize the Gnus registry." t nil) 13881Initialize the Gnus registry." t)
13889(register-definition-prefixes "gnus-registry" '("gnus-")) 13882(register-definition-prefixes "gnus-registry" '("gnus-"))
13890 13883
13891 13884
@@ -13921,13 +13914,13 @@ Update the Sieve script in gnus-sieve-file, by replacing the region
13921between gnus-sieve-region-start and gnus-sieve-region-end with 13914between gnus-sieve-region-start and gnus-sieve-region-end with
13922(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost), then 13915(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost), then
13923execute gnus-sieve-update-shell-command. 13916execute gnus-sieve-update-shell-command.
13924See the documentation for these variables and functions for details." t nil) 13917See the documentation for these variables and functions for details." t)
13925(autoload 'gnus-sieve-generate "gnus-sieve" "\ 13918(autoload 'gnus-sieve-generate "gnus-sieve" "\
13926Generate the Sieve script in gnus-sieve-file, by replacing the region 13919Generate the Sieve script in gnus-sieve-file, by replacing the region
13927between gnus-sieve-region-start and gnus-sieve-region-end with 13920between gnus-sieve-region-start and gnus-sieve-region-end with
13928(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost). 13921(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost).
13929See the documentation for these variables and functions for details." t nil) 13922See the documentation for these variables and functions for details." t)
13930(autoload 'gnus-sieve-article-add-rule "gnus-sieve" nil '(gnus-article-mode gnus-summary-mode) nil) 13923(autoload 'gnus-sieve-article-add-rule "gnus-sieve" nil '(gnus-article-mode gnus-summary-mode))
13931(register-definition-prefixes "gnus-sieve" '("gnus-sieve-")) 13924(register-definition-prefixes "gnus-sieve" '("gnus-sieve-"))
13932 13925
13933 13926
@@ -13936,7 +13929,7 @@ See the documentation for these variables and functions for details." t nil)
13936(autoload 'gnus-update-format "gnus-spec" "\ 13929(autoload 'gnus-update-format "gnus-spec" "\
13937Update the format specification near point. 13930Update the format specification near point.
13938 13931
13939(fn VAR)" t nil) 13932(fn VAR)" t)
13940(register-definition-prefixes "gnus-spec" '("gnus-")) 13933(register-definition-prefixes "gnus-spec" '("gnus-"))
13941 13934
13942 13935
@@ -13950,7 +13943,7 @@ Update the format specification near point.
13950(autoload 'gnus-declare-backend "gnus-start" "\ 13943(autoload 'gnus-declare-backend "gnus-start" "\
13951Declare back end NAME with ABILITIES as a Gnus back end. 13944Declare back end NAME with ABILITIES as a Gnus back end.
13952 13945
13953(fn NAME &rest ABILITIES)" nil nil) 13946(fn NAME &rest ABILITIES)")
13954(register-definition-prefixes "gnus-start" '("gnus-")) 13947(register-definition-prefixes "gnus-start" '("gnus-"))
13955 13948
13956 13949
@@ -13960,7 +13953,7 @@ Declare back end NAME with ABILITIES as a Gnus back end.
13960Handler function for record returned by `gnus-summary-bookmark-make-record'. 13953Handler function for record returned by `gnus-summary-bookmark-make-record'.
13961BOOKMARK is a bookmark name or a bookmark record. 13954BOOKMARK is a bookmark name or a bookmark record.
13962 13955
13963(fn BOOKMARK)" nil nil) 13956(fn BOOKMARK)")
13964(register-definition-prefixes "gnus-sum" '("gnus-")) 13957(register-definition-prefixes "gnus-sum" '("gnus-"))
13965 13958
13966 13959
@@ -13994,7 +13987,7 @@ BOOKMARK is a bookmark name or a bookmark record.
13994(autoload 'gnus-add-configuration "gnus-win" "\ 13987(autoload 'gnus-add-configuration "gnus-win" "\
13995Add the window configuration CONF to `gnus-buffer-configuration'. 13988Add the window configuration CONF to `gnus-buffer-configuration'.
13996 13989
13997(fn CONF)" nil nil) 13990(fn CONF)")
13998(register-definition-prefixes "gnus-win" '("gnus-")) 13991(register-definition-prefixes "gnus-win" '("gnus-"))
13999 13992
14000 13993
@@ -14024,7 +14017,7 @@ Gomoku game, and ought to be upgraded to use the full modern rules.
14024 14017
14025Use \\[describe-mode] for more info. 14018Use \\[describe-mode] for more info.
14026 14019
14027(fn &optional N M)" t nil) 14020(fn &optional N M)" t)
14028(register-definition-prefixes "gomoku" '("gomoku-")) 14021(register-definition-prefixes "gomoku" '("gomoku-"))
14029 14022
14030 14023
@@ -14036,7 +14029,7 @@ Send mail to address at point. See documentation for
14036`goto-address-find-address-at-point'. If no address is found 14029`goto-address-find-address-at-point'. If no address is found
14037there, then load the URL at or before point. 14030there, then load the URL at or before point.
14038 14031
14039(fn &optional EVENT)" t nil) 14032(fn &optional EVENT)" t)
14040(autoload 'goto-address "goto-addr" "\ 14033(autoload 'goto-address "goto-addr" "\
14041Sets up goto-address functionality in the current buffer. 14034Sets up goto-address functionality in the current buffer.
14042Allows user to use mouse/keyboard command to click to go to a URL 14035Allows user to use mouse/keyboard command to click to go to a URL
@@ -14045,7 +14038,7 @@ By default, goto-address binds `goto-address-at-point' to mouse-2 and C-c RET
14045only on URLs and e-mail addresses. 14038only on URLs and e-mail addresses.
14046 14039
14047Also fontifies the buffer appropriately (see `goto-address-fontify-p' and 14040Also fontifies the buffer appropriately (see `goto-address-fontify-p' and
14048`goto-address-highlight-p' for more information)." t nil) 14041`goto-address-highlight-p' for more information)." t)
14049(put 'goto-address 'safe-local-eval-function t) 14042(put 'goto-address 'safe-local-eval-function t)
14050(autoload 'goto-address-mode "goto-addr" "\ 14043(autoload 'goto-address-mode "goto-addr" "\
14051Minor mode to buttonize URLs and e-mail addresses in the current buffer. 14044Minor mode to buttonize URLs and e-mail addresses in the current buffer.
@@ -14064,7 +14057,7 @@ evaluate `goto-address-mode'.
14064The mode's hook is called both when the mode is enabled and when 14057The mode's hook is called both when the mode is enabled and when
14065it is disabled. 14058it is disabled.
14066 14059
14067(fn &optional ARG)" t nil) 14060(fn &optional ARG)" t)
14068(put 'global-goto-address-mode 'globalized-minor-mode t) 14061(put 'global-goto-address-mode 'globalized-minor-mode t)
14069(defvar global-goto-address-mode nil "\ 14062(defvar global-goto-address-mode nil "\
14070Non-nil if Global Goto-Address mode is enabled. 14063Non-nil if Global Goto-Address mode is enabled.
@@ -14088,7 +14081,7 @@ Goto-Address mode is enabled in all buffers where
14088 14081
14089See `goto-address-mode' for more information on Goto-Address mode. 14082See `goto-address-mode' for more information on Goto-Address mode.
14090 14083
14091(fn &optional ARG)" t nil) 14084(fn &optional ARG)" t)
14092(autoload 'goto-address-prog-mode "goto-addr" "\ 14085(autoload 'goto-address-prog-mode "goto-addr" "\
14093Like `goto-address-mode', but only for comments and strings. 14086Like `goto-address-mode', but only for comments and strings.
14094 14087
@@ -14107,7 +14100,7 @@ evaluate `goto-address-prog-mode'.
14107The mode's hook is called both when the mode is enabled and when 14100The mode's hook is called both when the mode is enabled and when
14108it is disabled. 14101it is disabled.
14109 14102
14110(fn &optional ARG)" t nil) 14103(fn &optional ARG)" t)
14111(register-definition-prefixes "goto-addr" '("goto-addr")) 14104(register-definition-prefixes "goto-addr" '("goto-addr"))
14112 14105
14113 14106
@@ -14116,7 +14109,7 @@ it is disabled.
14116(autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ 14109(autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\
14117Major mode for editing Wisent grammars. 14110Major mode for editing Wisent grammars.
14118 14111
14119(fn)" t nil) 14112(fn)" t)
14120(register-definition-prefixes "semantic/wisent/grammar" '("semantic-grammar-" "wisent-")) 14113(register-definition-prefixes "semantic/wisent/grammar" '("semantic-grammar-" "wisent-"))
14121 14114
14122 14115
@@ -14125,7 +14118,7 @@ Major mode for editing Wisent grammars.
14125(autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ 14118(autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\
14126Major mode for editing Bovine grammars. 14119Major mode for editing Bovine grammars.
14127 14120
14128(fn)" t nil) 14121(fn)" t)
14129(register-definition-prefixes "semantic/bovine/grammar" '("bovine-" "semantic-grammar-")) 14122(register-definition-prefixes "semantic/bovine/grammar" '("bovine-" "semantic-grammar-"))
14130 14123
14131 14124
@@ -14142,13 +14135,13 @@ When finished, call CALLBACK as (apply CALLBACK GRAVATAR CBARGS),
14142where GRAVATAR is either an image descriptor, or the symbol 14135where GRAVATAR is either an image descriptor, or the symbol
14143`error' if the retrieval failed. 14136`error' if the retrieval failed.
14144 14137
14145(fn MAIL-ADDRESS CALLBACK &optional CBARGS)" nil nil) 14138(fn MAIL-ADDRESS CALLBACK &optional CBARGS)")
14146(autoload 'gravatar-retrieve-synchronously "gravatar" "\ 14139(autoload 'gravatar-retrieve-synchronously "gravatar" "\
14147Synchronously retrieve a gravatar for MAIL-ADDRESS. 14140Synchronously retrieve a gravatar for MAIL-ADDRESS.
14148Value is either an image descriptor, or the symbol `error' if the 14141Value is either an image descriptor, or the symbol `error' if the
14149retrieval failed. 14142retrieval failed.
14150 14143
14151(fn MAIL-ADDRESS)" nil nil) 14144(fn MAIL-ADDRESS)")
14152(register-definition-prefixes "gravatar" '("gravatar-")) 14145(register-definition-prefixes "gravatar" '("gravatar-"))
14153 14146
14154 14147
@@ -14240,17 +14233,17 @@ History list for grep.")
14240History list for `grep-find'.") 14233History list for `grep-find'.")
14241(autoload 'grep-process-setup "grep" "\ 14234(autoload 'grep-process-setup "grep" "\
14242Setup compilation variables and buffer for `grep'. 14235Setup compilation variables and buffer for `grep'.
14243Set up `compilation-exit-message-function' and run `grep-setup-hook'." nil nil) 14236Set up `compilation-exit-message-function' and run `grep-setup-hook'.")
14244(autoload 'grep-compute-defaults "grep" "\ 14237(autoload 'grep-compute-defaults "grep" "\
14245Compute the defaults for the `grep' command. 14238Compute the defaults for the `grep' command.
14246The value depends on `grep-command', `grep-template', 14239The value depends on `grep-command', `grep-template',
14247`grep-use-null-device', `grep-find-command', `grep-find-template', 14240`grep-use-null-device', `grep-find-command', `grep-find-template',
14248`grep-use-null-filename-separator', `grep-find-use-xargs', 14241`grep-use-null-filename-separator', `grep-find-use-xargs',
14249`grep-highlight-matches', and `grep-quoting-style'." nil nil) 14242`grep-highlight-matches', and `grep-quoting-style'.")
14250(autoload 'grep-mode "grep" "\ 14243(autoload 'grep-mode "grep" "\
14251Sets `grep-last-buffer' and `compilation-window-height'. 14244Sets `grep-last-buffer' and `compilation-window-height'.
14252 14245
14253(fn)" nil nil) 14246(fn)")
14254(autoload 'grep "grep" "\ 14247(autoload 'grep "grep" "\
14255Run Grep with user-specified COMMAND-ARGS. 14248Run Grep with user-specified COMMAND-ARGS.
14256The output from the command goes to the \"*grep*\" buffer. 14249The output from the command goes to the \"*grep*\" buffer.
@@ -14273,7 +14266,7 @@ tag the cursor is over, substituting it into the last Grep command
14273in the Grep command history (or into `grep-command' if that history 14266in the Grep command history (or into `grep-command' if that history
14274list is empty). 14267list is empty).
14275 14268
14276(fn COMMAND-ARGS)" t nil) 14269(fn COMMAND-ARGS)" t)
14277(autoload 'grep-find "grep" "\ 14270(autoload 'grep-find "grep" "\
14278Run grep via find, with user-specified args COMMAND-ARGS. 14271Run grep via find, with user-specified args COMMAND-ARGS.
14279Collect output in the \"*grep*\" buffer. 14272Collect output in the \"*grep*\" buffer.
@@ -14283,7 +14276,7 @@ to find the text that grep hits refer to.
14283This command uses a special history list for its arguments, so you can 14276This command uses a special history list for its arguments, so you can
14284easily repeat a find command. 14277easily repeat a find command.
14285 14278
14286(fn COMMAND-ARGS)" t nil) 14279(fn COMMAND-ARGS)" t)
14287(defalias 'find-grep #'grep-find) 14280(defalias 'find-grep #'grep-find)
14288(autoload 'lgrep "grep" "\ 14281(autoload 'lgrep "grep" "\
14289Run grep, searching for REGEXP in FILES in directory DIR. 14282Run grep, searching for REGEXP in FILES in directory DIR.
@@ -14306,7 +14299,7 @@ This command shares argument histories with \\[rgrep] and \\[grep].
14306If CONFIRM is non-nil, the user will be given an opportunity to edit the 14299If CONFIRM is non-nil, the user will be given an opportunity to edit the
14307command before it's run. 14300command before it's run.
14308 14301
14309(fn REGEXP &optional FILES DIR CONFIRM)" t nil) 14302(fn REGEXP &optional FILES DIR CONFIRM)" t)
14310(autoload 'rgrep "grep" "\ 14303(autoload 'rgrep "grep" "\
14311Recursively grep for REGEXP in FILES in directory tree rooted at DIR. 14304Recursively grep for REGEXP in FILES in directory tree rooted at DIR.
14312The search is limited to file names matching shell pattern FILES. 14305The search is limited to file names matching shell pattern FILES.
@@ -14336,7 +14329,7 @@ Interactively, the user can use the \\`M-c' command while entering
14336the regexp to indicate whether the grep should be case sensitive 14329the regexp to indicate whether the grep should be case sensitive
14337or not. 14330or not.
14338 14331
14339(fn REGEXP &optional FILES DIR CONFIRM)" t nil) 14332(fn REGEXP &optional FILES DIR CONFIRM)" t)
14340(autoload 'zrgrep "grep" "\ 14333(autoload 'zrgrep "grep" "\
14341Recursively grep for REGEXP in gzipped FILES in tree rooted at DIR. 14334Recursively grep for REGEXP in gzipped FILES in tree rooted at DIR.
14342Like `rgrep' but uses `zgrep' for `grep-program', sets the default 14335Like `rgrep' but uses `zgrep' for `grep-program', sets the default
@@ -14345,7 +14338,7 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'.
14345If CONFIRM is non-nil, the user will be given an opportunity to edit the 14338If CONFIRM is non-nil, the user will be given an opportunity to edit the
14346command before it's run. 14339command before it's run.
14347 14340
14348(fn REGEXP &optional FILES DIR CONFIRM TEMPLATE)" t nil) 14341(fn REGEXP &optional FILES DIR CONFIRM TEMPLATE)" t)
14349(defalias 'rzgrep #'zrgrep) 14342(defalias 'rzgrep #'zrgrep)
14350(register-definition-prefixes "grep" '("grep-" "kill-grep" "rgrep-")) 14343(register-definition-prefixes "grep" '("grep-" "kill-grep" "rgrep-"))
14351 14344
@@ -14373,19 +14366,19 @@ will run in *gud-PID*, otherwise it will run in *gud*; in these
14373cases the initial working directory is the `default-directory' of 14366cases the initial working directory is the `default-directory' of
14374the buffer in which this command was invoked. 14367the buffer in which this command was invoked.
14375 14368
14376(fn COMMAND-LINE)" t nil) 14369(fn COMMAND-LINE)" t)
14377(autoload 'sdb "gud" "\ 14370(autoload 'sdb "gud" "\
14378Run sdb on program FILE in buffer *gud-FILE*. 14371Run sdb on program FILE in buffer *gud-FILE*.
14379The directory containing FILE becomes the initial working directory 14372The directory containing FILE becomes the initial working directory
14380and source-file directory for your debugger. 14373and source-file directory for your debugger.
14381 14374
14382(fn COMMAND-LINE)" t nil) 14375(fn COMMAND-LINE)" t)
14383(autoload 'dbx "gud" "\ 14376(autoload 'dbx "gud" "\
14384Run dbx on program FILE in buffer *gud-FILE*. 14377Run dbx on program FILE in buffer *gud-FILE*.
14385The directory containing FILE becomes the initial working directory 14378The directory containing FILE becomes the initial working directory
14386and source-file directory for your debugger. 14379and source-file directory for your debugger.
14387 14380
14388(fn COMMAND-LINE)" t nil) 14381(fn COMMAND-LINE)" t)
14389(autoload 'xdb "gud" "\ 14382(autoload 'xdb "gud" "\
14390Run xdb on program FILE in buffer *gud-FILE*. 14383Run xdb on program FILE in buffer *gud-FILE*.
14391The directory containing FILE becomes the initial working directory 14384The directory containing FILE becomes the initial working directory
@@ -14394,7 +14387,7 @@ and source-file directory for your debugger.
14394You can set the variable `gud-xdb-directories' to a list of program source 14387You can set the variable `gud-xdb-directories' to a list of program source
14395directories if your program contains sources from more than one directory. 14388directories if your program contains sources from more than one directory.
14396 14389
14397(fn COMMAND-LINE)" t nil) 14390(fn COMMAND-LINE)" t)
14398(autoload 'perldb "gud" "\ 14391(autoload 'perldb "gud" "\
14399Debug a perl program with gud. 14392Debug a perl program with gud.
14400Interactively, this will prompt you for a command line. 14393Interactively, this will prompt you for a command line.
@@ -14405,7 +14398,7 @@ Noninteractively, COMMAND-LINE should be on the form
14405The directory containing the perl program becomes the initial 14398The directory containing the perl program becomes the initial
14406working directory and source-file directory for your debugger. 14399working directory and source-file directory for your debugger.
14407 14400
14408(fn COMMAND-LINE)" t nil) 14401(fn COMMAND-LINE)" t)
14409(autoload 'pdb "gud" "\ 14402(autoload 'pdb "gud" "\
14410Run COMMAND-LINE in the `*gud-FILE*' buffer to debug Python programs. 14403Run COMMAND-LINE in the `*gud-FILE*' buffer to debug Python programs.
14411 14404
@@ -14417,13 +14410,13 @@ If called interactively, the command line will be prompted for.
14417The directory containing this file becomes the initial working 14410The directory containing this file becomes the initial working
14418directory and source-file directory for your debugger. 14411directory and source-file directory for your debugger.
14419 14412
14420(fn COMMAND-LINE)" t nil) 14413(fn COMMAND-LINE)" t)
14421(autoload 'guiler "gud" "\ 14414(autoload 'guiler "gud" "\
14422Run guiler on program FILE in buffer `*gud-FILE*'. 14415Run guiler on program FILE in buffer `*gud-FILE*'.
14423The directory containing FILE becomes the initial working directory 14416The directory containing FILE becomes the initial working directory
14424and source-file directory for your debugger. 14417and source-file directory for your debugger.
14425 14418
14426(fn COMMAND-LINE)" t nil) 14419(fn COMMAND-LINE)" t)
14427(autoload 'jdb "gud" "\ 14420(autoload 'jdb "gud" "\
14428Run jdb with command line COMMAND-LINE in a buffer. 14421Run jdb with command line COMMAND-LINE in a buffer.
14429The buffer is named \"*gud*\" if no initial class is given or 14422The buffer is named \"*gud*\" if no initial class is given or
@@ -14438,11 +14431,11 @@ original source file access method.
14438For general information about commands available to control jdb from 14431For general information about commands available to control jdb from
14439gud, see `gud-mode'. 14432gud, see `gud-mode'.
14440 14433
14441(fn COMMAND-LINE)" t nil) 14434(fn COMMAND-LINE)" t)
14442(autoload 'gdb-script-mode "gud" "\ 14435(autoload 'gdb-script-mode "gud" "\
14443Major mode for editing GDB scripts. 14436Major mode for editing GDB scripts.
14444 14437
14445(fn)" t nil) 14438(fn)" t)
14446(defvar gud-tooltip-mode nil "\ 14439(defvar gud-tooltip-mode nil "\
14447Non-nil if Gud-Tooltip mode is enabled. 14440Non-nil if Gud-Tooltip mode is enabled.
14448See the `gud-tooltip-mode' command 14441See the `gud-tooltip-mode' command
@@ -14468,7 +14461,7 @@ evaluate `(default-value \\='gud-tooltip-mode)'.
14468The mode's hook is called both when the mode is enabled and when 14461The mode's hook is called both when the mode is enabled and when
14469it is disabled. 14462it is disabled.
14470 14463
14471(fn &optional ARG)" t nil) 14464(fn &optional ARG)" t)
14472(register-definition-prefixes "gud" '("gdb-" "gud-")) 14465(register-definition-prefixes "gud" '("gdb-" "gud-"))
14473 14466
14474 14467
@@ -14484,7 +14477,7 @@ with a (not necessarily copyable) Elisp expression that returns the value to
14484set it to. 14477set it to.
14485DO must return an Elisp expression. 14478DO must return an Elisp expression.
14486 14479
14487(fn PLACE DO)" nil nil) 14480(fn PLACE DO)")
14488(autoload 'gv-letplace "gv" "\ 14481(autoload 'gv-letplace "gv" "\
14489Build the code manipulating the generalized variable PLACE. 14482Build the code manipulating the generalized variable PLACE.
14490GETTER will be bound to a copyable expression that returns the value 14483GETTER will be bound to a copyable expression that returns the value
@@ -14509,7 +14502,7 @@ arguments as NAME. DO is a function as defined in `gv-get'.
14509(autoload 'gv--defun-declaration "gv" "\ 14502(autoload 'gv--defun-declaration "gv" "\
14510 14503
14511 14504
14512(fn SYMBOL NAME ARGS HANDLER &optional FIX)" nil nil) 14505(fn SYMBOL NAME ARGS HANDLER &optional FIX)")
14513(defsubst gv--expander-defun-declaration (&rest args) (apply #'gv--defun-declaration 'gv-expander args)) 14506(defsubst gv--expander-defun-declaration (&rest args) (apply #'gv--defun-declaration 'gv-expander args))
14514(defsubst gv--setter-defun-declaration (&rest args) (apply #'gv--defun-declaration 'gv-setter args)) 14507(defsubst gv--setter-defun-declaration (&rest args) (apply #'gv--defun-declaration 'gv-setter args))
14515(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))) 14508(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)))
@@ -14573,7 +14566,7 @@ and `handwrite-13pt' set up for various sizes of output.
14573Variables: `handwrite-linespace' (default 12) 14566Variables: `handwrite-linespace' (default 12)
14574 `handwrite-fontsize' (default 11) 14567 `handwrite-fontsize' (default 11)
14575 `handwrite-numlines' (default 60) 14568 `handwrite-numlines' (default 60)
14576 `handwrite-pagenumbering' (default nil)" t nil) 14569 `handwrite-pagenumbering' (default nil)" t)
14577(register-definition-prefixes "handwrite" '("handwrite-" "menu-bar-handwrite-map")) 14570(register-definition-prefixes "handwrite" '("handwrite-" "menu-bar-handwrite-map"))
14578 14571
14579 14572
@@ -14584,7 +14577,7 @@ Activate Hangul input method INPUT-METHOD.
14584FUNC is a function to handle input key. 14577FUNC is a function to handle input key.
14585HELP-TEXT is a text set in `hangul-input-method-help-text'. 14578HELP-TEXT is a text set in `hangul-input-method-help-text'.
14586 14579
14587(fn INPUT-METHOD FUNC HELP-TEXT &rest ARGS)" nil nil) 14580(fn INPUT-METHOD FUNC HELP-TEXT &rest ARGS)")
14588(register-definition-prefixes "quail/hangul" '("hangul" "notzerop")) 14581(register-definition-prefixes "quail/hangul" '("hangul" "notzerop"))
14589 14582
14590 14583
@@ -14598,15 +14591,15 @@ HELP-TEXT is a text set in `hangul-input-method-help-text'.
14598(autoload 'hanoi "hanoi" "\ 14591(autoload 'hanoi "hanoi" "\
14599Towers of Hanoi diversion. Use NRINGS rings. 14592Towers of Hanoi diversion. Use NRINGS rings.
14600 14593
14601(fn NRINGS)" t nil) 14594(fn NRINGS)" t)
14602(autoload 'hanoi-unix "hanoi" "\ 14595(autoload 'hanoi-unix "hanoi" "\
14603Towers of Hanoi, 32-bit UNIX doomsday version. 14596Towers of Hanoi, 32-bit UNIX doomsday version.
14604Display 32-ring towers that have been progressing at one move per 14597Display 32-ring towers that have been progressing at one move per
14605second since 1970-01-01 00:00:00 UTC. 14598second since 1970-01-01 00:00:00 UTC.
14606 14599
14607Repent before ring 31 moves." t nil) 14600Repent before ring 31 moves." t)
14608(autoload 'hanoi-unix-64 "hanoi" "\ 14601(autoload 'hanoi-unix-64 "hanoi" "\
14609Like `hanoi-unix', but with a 64-bit clock." t nil) 14602Like `hanoi-unix', but with a 64-bit clock." t)
14610(register-definition-prefixes "hanoi" '("hanoi-")) 14603(register-definition-prefixes "hanoi" '("hanoi-"))
14611 14604
14612 14605
@@ -14615,34 +14608,34 @@ Like `hanoi-unix', but with a 64-bit clock." t nil)
14615(autoload 'hashcash-insert-payment "hashcash" "\ 14608(autoload 'hashcash-insert-payment "hashcash" "\
14616Insert X-Payment and X-Hashcash headers with a payment for ARG. 14609Insert X-Payment and X-Hashcash headers with a payment for ARG.
14617 14610
14618(fn ARG)" t nil) 14611(fn ARG)" t)
14619(autoload 'hashcash-insert-payment-async "hashcash" "\ 14612(autoload 'hashcash-insert-payment-async "hashcash" "\
14620Insert X-Payment and X-Hashcash headers with a payment for ARG 14613Insert X-Payment and X-Hashcash headers with a payment for ARG
14621Only start calculation. Results are inserted when ready. 14614Only start calculation. Results are inserted when ready.
14622 14615
14623(fn ARG)" t nil) 14616(fn ARG)" t)
14624(autoload 'hashcash-verify-payment "hashcash" "\ 14617(autoload 'hashcash-verify-payment "hashcash" "\
14625Verify a hashcash payment. 14618Verify a hashcash payment.
14626 14619
14627(fn TOKEN &optional RESOURCE AMOUNT)" nil nil) 14620(fn TOKEN &optional RESOURCE AMOUNT)")
14628(autoload 'mail-add-payment "hashcash" "\ 14621(autoload 'mail-add-payment "hashcash" "\
14629Add X-Payment: and X-Hashcash: headers with a hashcash payment 14622Add X-Payment: and X-Hashcash: headers with a hashcash payment
14630for each recipient address. Prefix arg sets default payment temporarily. 14623for each recipient address. Prefix arg sets default payment temporarily.
14631Set ASYNC to t to start asynchronous calculation. (See 14624Set ASYNC to t to start asynchronous calculation. (See
14632`mail-add-payment-async'). 14625`mail-add-payment-async').
14633 14626
14634(fn &optional ARG ASYNC)" t nil) 14627(fn &optional ARG ASYNC)" t)
14635(autoload 'mail-add-payment-async "hashcash" "\ 14628(autoload 'mail-add-payment-async "hashcash" "\
14636Add X-Payment: and X-Hashcash: headers with a hashcash payment 14629Add X-Payment: and X-Hashcash: headers with a hashcash payment
14637for each recipient address. Prefix arg sets default payment temporarily. 14630for each recipient address. Prefix arg sets default payment temporarily.
14638Calculation is asynchronous. 14631Calculation is asynchronous.
14639 14632
14640(fn &optional ARG)" t nil) 14633(fn &optional ARG)" t)
14641(autoload 'mail-check-payment "hashcash" "\ 14634(autoload 'mail-check-payment "hashcash" "\
14642Look for a valid X-Payment: or X-Hashcash: header. 14635Look for a valid X-Payment: or X-Hashcash: header.
14643Prefix arg sets default accept amount temporarily. 14636Prefix arg sets default accept amount temporarily.
14644 14637
14645(fn &optional ARG)" t nil) 14638(fn &optional ARG)" t)
14646(register-definition-prefixes "hashcash" '("hashcash-")) 14639(register-definition-prefixes "hashcash" '("hashcash-"))
14647 14640
14648 14641
@@ -14656,12 +14649,12 @@ If KBD is non-nil, `kbd-help' is used instead, and any
14656`help-echo' property is ignored. In this case, the return value 14649`help-echo' property is ignored. In this case, the return value
14657can also be t, if that is the value of the `kbd-help' property. 14650can also be t, if that is the value of the `kbd-help' property.
14658 14651
14659(fn &optional KBD)" nil nil) 14652(fn &optional KBD)")
14660(autoload 'help-at-pt-kbd-string "help-at-pt" "\ 14653(autoload 'help-at-pt-kbd-string "help-at-pt" "\
14661Return the keyboard help string at point. 14654Return the keyboard help string at point.
14662If the `kbd-help' text or overlay property at point produces a 14655If the `kbd-help' text or overlay property at point produces a
14663string, return it. Otherwise, use the `help-echo' property. 14656string, return it. Otherwise, use the `help-echo' property.
14664If this produces no string either, return nil." nil nil) 14657If this produces no string either, return nil.")
14665(autoload 'display-local-help "help-at-pt" "\ 14658(autoload 'display-local-help "help-at-pt" "\
14666Display local help in the echo area. 14659Display local help in the echo area.
14667This command, by default, displays a short help message, namely 14660This command, by default, displays a short help message, namely
@@ -14679,13 +14672,13 @@ If DESCRIBE-BUTTON in non-nil (interactively, the prefix arg), and
14679there's a button/widget at point, pop a buffer describing that 14672there's a button/widget at point, pop a buffer describing that
14680button/widget instead. 14673button/widget instead.
14681 14674
14682(fn &optional INHIBIT-WARNING DESCRIBE-BUTTON)" t nil) 14675(fn &optional INHIBIT-WARNING DESCRIBE-BUTTON)" t)
14683(autoload 'help-at-pt-cancel-timer "help-at-pt" "\ 14676(autoload 'help-at-pt-cancel-timer "help-at-pt" "\
14684Cancel any timer set by `help-at-pt-set-timer'. 14677Cancel any timer set by `help-at-pt-set-timer'.
14685This disables `help-at-pt-display-when-idle'." t nil) 14678This disables `help-at-pt-display-when-idle'." t)
14686(autoload 'help-at-pt-set-timer "help-at-pt" "\ 14679(autoload 'help-at-pt-set-timer "help-at-pt" "\
14687Enable `help-at-pt-display-when-idle'. 14680Enable `help-at-pt-display-when-idle'.
14688This is done by setting a timer, if none is currently active." t nil) 14681This is done by setting a timer, if none is currently active." t)
14689(defvar help-at-pt-display-when-idle 'never "\ 14682(defvar help-at-pt-display-when-idle 'never "\
14690Automatically show local help on point-over. 14683Automatically show local help on point-over.
14691If the value is t, the string obtained from any `kbd-help' or 14684If the value is t, the string obtained from any `kbd-help' or
@@ -14734,7 +14727,7 @@ do not run HOOK. If there are not enough regions to move over,
14734an error results and the number of available regions is mentioned 14727an error results and the number of available regions is mentioned
14735in the error message. Point is not moved and HOOK is not run. 14728in the error message. Point is not moved and HOOK is not run.
14736 14729
14737(fn PROP &optional ARG HOOK)" nil nil) 14730(fn PROP &optional ARG HOOK)")
14738(autoload 'scan-buf-next-region "help-at-pt" "\ 14731(autoload 'scan-buf-next-region "help-at-pt" "\
14739Go to the start of the next region with non-nil help-echo. 14732Go to the start of the next region with non-nil help-echo.
14740Print the help found there using `display-local-help'. Adjacent 14733Print the help found there using `display-local-help'. Adjacent
@@ -14755,7 +14748,7 @@ help-echo region without any local help being available. This is
14755because `help-echo' can be a function evaluating to nil. This 14748because `help-echo' can be a function evaluating to nil. This
14756rarely happens in practice. 14749rarely happens in practice.
14757 14750
14758(fn &optional ARG)" t nil) 14751(fn &optional ARG)" t)
14759(autoload 'scan-buf-previous-region "help-at-pt" "\ 14752(autoload 'scan-buf-previous-region "help-at-pt" "\
14760Go to the start of the previous region with non-nil help-echo. 14753Go to the start of the previous region with non-nil help-echo.
14761Print the help found there using `display-local-help'. Adjacent 14754Print the help found there using `display-local-help'. Adjacent
@@ -14763,7 +14756,7 @@ areas with different non-nil help-echo properties are considered
14763different regions. With numeric argument ARG, behaves like 14756different regions. With numeric argument ARG, behaves like
14764`scan-buf-next-region' with argument -ARG. 14757`scan-buf-next-region' with argument -ARG.
14765 14758
14766(fn &optional ARG)" t nil) 14759(fn &optional ARG)" t)
14767(register-definition-prefixes "help-at-pt" '("help-at-pt-" "scan-buf-move-hook")) 14760(register-definition-prefixes "help-at-pt" '("help-at-pt-" "scan-buf-move-hook"))
14768 14761
14769 14762
@@ -14776,18 +14769,18 @@ When called from Lisp, FUNCTION may also be a function object.
14776See the `help-enable-symbol-autoload' variable for special 14769See the `help-enable-symbol-autoload' variable for special
14777handling of autoloaded functions. 14770handling of autoloaded functions.
14778 14771
14779(fn FUNCTION)" t nil) 14772(fn FUNCTION)" t)
14780(autoload 'describe-command "help-fns" "\ 14773(autoload 'describe-command "help-fns" "\
14781Display the full documentation of COMMAND (a symbol). 14774Display the full documentation of COMMAND (a symbol).
14782When called from Lisp, COMMAND may also be a function object. 14775When called from Lisp, COMMAND may also be a function object.
14783 14776
14784(fn COMMAND)" t nil) 14777(fn COMMAND)" t)
14785(autoload 'help-C-file-name "help-fns" "\ 14778(autoload 'help-C-file-name "help-fns" "\
14786Return the name of the C file where SUBR-OR-VAR is defined. 14779Return the name of the C file where SUBR-OR-VAR is defined.
14787KIND should be `var' for a variable or `subr' for a subroutine. 14780KIND should be `var' for a variable or `subr' for a subroutine.
14788If we can't find the file name, nil is returned. 14781If we can't find the file name, nil is returned.
14789 14782
14790(fn SUBR-OR-VAR KIND)" nil nil) 14783(fn SUBR-OR-VAR KIND)")
14791(autoload 'find-lisp-object-file-name "help-fns" "\ 14784(autoload 'find-lisp-object-file-name "help-fns" "\
14792Guess the file that defined the Lisp object OBJECT, of type TYPE. 14785Guess the file that defined the Lisp object OBJECT, of type TYPE.
14793OBJECT should be a symbol associated with a function, variable, or face; 14786OBJECT should be a symbol associated with a function, variable, or face;
@@ -14807,17 +14800,17 @@ If ALSO-C-SOURCE is non-nil, instead of returning `C-source',
14807this function will attempt to locate the definition of OBJECT in 14800this function will attempt to locate the definition of OBJECT in
14808the C sources, too. 14801the C sources, too.
14809 14802
14810(fn OBJECT TYPE &optional ALSO-C-SOURCE)" nil nil) 14803(fn OBJECT TYPE &optional ALSO-C-SOURCE)")
14811(autoload 'describe-function-1 "help-fns" "\ 14804(autoload 'describe-function-1 "help-fns" "\
14812 14805
14813 14806
14814(fn FUNCTION)" nil nil) 14807(fn FUNCTION)")
14815(autoload 'variable-at-point "help-fns" "\ 14808(autoload 'variable-at-point "help-fns" "\
14816Return the bound variable symbol found at or before point. 14809Return the bound variable symbol found at or before point.
14817Return 0 if there is no such symbol. 14810Return 0 if there is no such symbol.
14818If ANY-SYMBOL is non-nil, don't insist the symbol be bound. 14811If ANY-SYMBOL is non-nil, don't insist the symbol be bound.
14819 14812
14820(fn &optional ANY-SYMBOL)" nil nil) 14813(fn &optional ANY-SYMBOL)")
14821(autoload 'describe-variable "help-fns" "\ 14814(autoload 'describe-variable "help-fns" "\
14822Display the full documentation of VARIABLE (a symbol). 14815Display the full documentation of VARIABLE (a symbol).
14823Returns the documentation as a string, also. 14816Returns the documentation as a string, also.
@@ -14825,7 +14818,7 @@ If VARIABLE has a buffer-local value in BUFFER or FRAME
14825(default to the current buffer and current frame), 14818(default to the current buffer and current frame),
14826it is displayed along with the global value. 14819it is displayed along with the global value.
14827 14820
14828(fn VARIABLE &optional BUFFER FRAME)" t nil) 14821(fn VARIABLE &optional BUFFER FRAME)" t)
14829(autoload 'describe-face "help-fns" "\ 14822(autoload 'describe-face "help-fns" "\
14830Display the properties of face FACE on FRAME. 14823Display the properties of face FACE on FRAME.
14831Interactively, FACE defaults to the faces of the character after point 14824Interactively, FACE defaults to the faces of the character after point
@@ -14835,7 +14828,7 @@ If the optional argument FRAME is given, report on face FACE in that frame.
14835If FRAME is t, report on the defaults for face FACE (for new frames). 14828If FRAME is t, report on the defaults for face FACE (for new frames).
14836If FRAME is omitted or nil, use the selected frame. 14829If FRAME is omitted or nil, use the selected frame.
14837 14830
14838(fn FACE &optional FRAME)" t nil) 14831(fn FACE &optional FRAME)" t)
14839(autoload 'describe-symbol "help-fns" "\ 14832(autoload 'describe-symbol "help-fns" "\
14840Display the full documentation of SYMBOL. 14833Display the full documentation of SYMBOL.
14841Will show the info of SYMBOL as a function, variable, and/or face. 14834Will show the info of SYMBOL as a function, variable, and/or face.
@@ -14843,26 +14836,26 @@ Optional arguments BUFFER and FRAME specify for which buffer and
14843frame to show the information about SYMBOL; they default to the 14836frame to show the information about SYMBOL; they default to the
14844current buffer and the selected frame, respectively. 14837current buffer and the selected frame, respectively.
14845 14838
14846(fn SYMBOL &optional BUFFER FRAME)" t nil) 14839(fn SYMBOL &optional BUFFER FRAME)" t)
14847(autoload 'describe-syntax "help-fns" "\ 14840(autoload 'describe-syntax "help-fns" "\
14848Describe the syntax specifications in the syntax table of BUFFER. 14841Describe the syntax specifications in the syntax table of BUFFER.
14849The descriptions are inserted in a help buffer, which is then displayed. 14842The descriptions are inserted in a help buffer, which is then displayed.
14850BUFFER defaults to the current buffer. 14843BUFFER defaults to the current buffer.
14851 14844
14852(fn &optional BUFFER)" t nil) 14845(fn &optional BUFFER)" t)
14853(autoload 'describe-categories "help-fns" "\ 14846(autoload 'describe-categories "help-fns" "\
14854Describe the category specifications in the current category table. 14847Describe the category specifications in the current category table.
14855The descriptions are inserted in a buffer, which is then displayed. 14848The descriptions are inserted in a buffer, which is then displayed.
14856If BUFFER is non-nil, then describe BUFFER's category table instead. 14849If BUFFER is non-nil, then describe BUFFER's category table instead.
14857BUFFER should be a buffer or a buffer name. 14850BUFFER should be a buffer or a buffer name.
14858 14851
14859(fn &optional BUFFER)" t nil) 14852(fn &optional BUFFER)" t)
14860(autoload 'describe-keymap "help-fns" "\ 14853(autoload 'describe-keymap "help-fns" "\
14861Describe key bindings in KEYMAP. 14854Describe key bindings in KEYMAP.
14862When called interactively, prompt for a variable that has a 14855When called interactively, prompt for a variable that has a
14863keymap value. 14856keymap value.
14864 14857
14865(fn KEYMAP)" t nil) 14858(fn KEYMAP)" t)
14866(autoload 'describe-mode "help-fns" "\ 14859(autoload 'describe-mode "help-fns" "\
14867Display documentation of current major mode and minor modes. 14860Display documentation of current major mode and minor modes.
14868A brief summary of the minor modes comes first, followed by the 14861A brief summary of the minor modes comes first, followed by the
@@ -14876,7 +14869,7 @@ whose documentation describes the minor mode.
14876If called from Lisp with a non-nil BUFFER argument, display 14869If called from Lisp with a non-nil BUFFER argument, display
14877documentation for the major and minor modes of that buffer. 14870documentation for the major and minor modes of that buffer.
14878 14871
14879(fn &optional BUFFER)" t nil) 14872(fn &optional BUFFER)" t)
14880(autoload 'describe-widget "help-fns" "\ 14873(autoload 'describe-widget "help-fns" "\
14881Display a buffer with information about a widget. 14874Display a buffer with information about a widget.
14882You can use this command to describe buttons (e.g., the links in a *Help* 14875You can use this command to describe buttons (e.g., the links in a *Help*
@@ -14890,15 +14883,15 @@ When called from Lisp, POS may be a buffer position or a mouse position list.
14890Calls each function of the list `describe-widget-functions' in turn, until 14883Calls each function of the list `describe-widget-functions' in turn, until
14891one of them returns non-nil. 14884one of them returns non-nil.
14892 14885
14893(fn &optional POS)" t nil) 14886(fn &optional POS)" t)
14894(autoload 'doc-file-to-man "help-fns" "\ 14887(autoload 'doc-file-to-man "help-fns" "\
14895Produce an nroff buffer containing the doc-strings from the DOC file. 14888Produce an nroff buffer containing the doc-strings from the DOC file.
14896 14889
14897(fn FILE)" t nil) 14890(fn FILE)" t)
14898(autoload 'doc-file-to-info "help-fns" "\ 14891(autoload 'doc-file-to-info "help-fns" "\
14899Produce a texinfo buffer with sorted doc-strings from the DOC file. 14892Produce a texinfo buffer with sorted doc-strings from the DOC file.
14900 14893
14901(fn FILE)" t nil) 14894(fn FILE)" t)
14902(register-definition-prefixes "help-fns" '("describe-" "help-" "keymap-name-history")) 14895(register-definition-prefixes "help-fns" '("describe-" "help-" "keymap-name-history"))
14903 14896
14904 14897
@@ -14919,7 +14912,7 @@ gives the window that lists the options.")
14919(autoload 'help-mode--add-function-link "help-mode" "\ 14912(autoload 'help-mode--add-function-link "help-mode" "\
14920 14913
14921 14914
14922(fn STR FUN)" nil nil) 14915(fn STR FUN)")
14923(autoload 'help-mode "help-mode" "\ 14916(autoload 'help-mode "help-mode" "\
14924Major mode for viewing help text and navigating references in it. 14917Major mode for viewing help text and navigating references in it.
14925Also see the `help-enable-variable-value-editing' variable. 14918Also see the `help-enable-variable-value-editing' variable.
@@ -14927,12 +14920,12 @@ Also see the `help-enable-variable-value-editing' variable.
14927Commands: 14920Commands:
14928\\{help-mode-map} 14921\\{help-mode-map}
14929 14922
14930(fn)" t nil) 14923(fn)" t)
14931(autoload 'help-mode-setup "help-mode" "\ 14924(autoload 'help-mode-setup "help-mode" "\
14932Enter Help mode in the current buffer." nil nil) 14925Enter Help mode in the current buffer.")
14933(make-obsolete 'help-mode-setup 'nil "29.1") 14926(make-obsolete 'help-mode-setup 'nil "29.1")
14934(autoload 'help-mode-finish "help-mode" "\ 14927(autoload 'help-mode-finish "help-mode" "\
14935Finalize Help mode setup in current buffer." nil nil) 14928Finalize Help mode setup in current buffer.")
14936(make-obsolete 'help-mode-finish 'nil "29.1") 14929(make-obsolete 'help-mode-finish 'nil "29.1")
14937(autoload 'help-setup-xref "help-mode" "\ 14930(autoload 'help-setup-xref "help-mode" "\
14938Invoked from commands using the \"*Help*\" buffer to install some xref info. 14931Invoked from commands using the \"*Help*\" buffer to install some xref info.
@@ -14946,14 +14939,14 @@ This should be called very early, before the output buffer is cleared,
14946because we want to record the \"previous\" position of point so we can 14939because we want to record the \"previous\" position of point so we can
14947restore it properly when going back. 14940restore it properly when going back.
14948 14941
14949(fn ITEM INTERACTIVE-P)" nil nil) 14942(fn ITEM INTERACTIVE-P)")
14950(autoload 'help-buffer "help-mode" "\ 14943(autoload 'help-buffer "help-mode" "\
14951Return the name of a buffer for inserting help. 14944Return the name of a buffer for inserting help.
14952If `help-xref-following' is non-nil and the current buffer is 14945If `help-xref-following' is non-nil and the current buffer is
14953derived from `help-mode', this is the name of the current buffer. 14946derived from `help-mode', this is the name of the current buffer.
14954 14947
14955Otherwise, return \"*Help*\", creating a buffer with that name if 14948Otherwise, return \"*Help*\", creating a buffer with that name if
14956it does not already exist." nil nil) 14949it does not already exist.")
14957(autoload 'help-make-xrefs "help-mode" "\ 14950(autoload 'help-make-xrefs "help-mode" "\
14958Parse and hyperlink documentation cross-references in the given BUFFER. 14951Parse and hyperlink documentation cross-references in the given BUFFER.
14959 14952
@@ -14975,7 +14968,7 @@ A special reference `back' is made to return back through a stack of
14975help buffers. Variable `help-back-label' specifies the text for 14968help buffers. Variable `help-back-label' specifies the text for
14976that. 14969that.
14977 14970
14978(fn &optional BUFFER)" t nil) 14971(fn &optional BUFFER)" t)
14979(autoload 'help-xref-button "help-mode" "\ 14972(autoload 'help-xref-button "help-mode" "\
14980Make a hyperlink for cross-reference text previously matched. 14973Make a hyperlink for cross-reference text previously matched.
14981MATCH-NUMBER is the subexpression of interest in the last matched 14974MATCH-NUMBER is the subexpression of interest in the last matched
@@ -14986,34 +14979,34 @@ See `help-make-xrefs'.
14986This function removes quotes surrounding the match if the 14979This function removes quotes surrounding the match if the
14987variable `help-clean-buttons' is non-nil. 14980variable `help-clean-buttons' is non-nil.
14988 14981
14989(fn MATCH-NUMBER TYPE &rest ARGS)" nil nil) 14982(fn MATCH-NUMBER TYPE &rest ARGS)")
14990(autoload 'help-insert-xref-button "help-mode" "\ 14983(autoload 'help-insert-xref-button "help-mode" "\
14991Insert STRING and make a hyperlink from cross-reference text on it. 14984Insert STRING and make a hyperlink from cross-reference text on it.
14992TYPE is the type of button to use. Any remaining arguments are passed 14985TYPE is the type of button to use. Any remaining arguments are passed
14993to the button's help-function when it is invoked. 14986to the button's help-function when it is invoked.
14994See `help-make-xrefs'. 14987See `help-make-xrefs'.
14995 14988
14996(fn STRING TYPE &rest ARGS)" nil nil) 14989(fn STRING TYPE &rest ARGS)")
14997(autoload 'help-xref-on-pp "help-mode" "\ 14990(autoload 'help-xref-on-pp "help-mode" "\
14998Add xrefs for symbols in `pp's output between FROM and TO. 14991Add xrefs for symbols in `pp's output between FROM and TO.
14999 14992
15000(fn FROM TO)" nil nil) 14993(fn FROM TO)")
15001(define-obsolete-function-alias 'help-xref-interned #'describe-symbol "25.1") 14994(define-obsolete-function-alias 'help-xref-interned #'describe-symbol "25.1")
15002(autoload 'help-bookmark-jump "help-mode" "\ 14995(autoload 'help-bookmark-jump "help-mode" "\
15003Jump to `help-mode' bookmark BOOKMARK. 14996Jump to `help-mode' bookmark BOOKMARK.
15004Handler function for record returned by `help-bookmark-make-record'. 14997Handler function for record returned by `help-bookmark-make-record'.
15005BOOKMARK is a bookmark name or a bookmark record. 14998BOOKMARK is a bookmark name or a bookmark record.
15006 14999
15007(fn BOOKMARK)" nil nil) 15000(fn BOOKMARK)")
15008(register-definition-prefixes "help-mode" '("describe-symbol-backends" "help-")) 15001(register-definition-prefixes "help-mode" '("describe-symbol-backends" "help-"))
15009 15002
15010 15003
15011;;; Generated autoloads from emacs-lisp/helper.el 15004;;; Generated autoloads from emacs-lisp/helper.el
15012 15005
15013(autoload 'Helper-describe-bindings "helper" "\ 15006(autoload 'Helper-describe-bindings "helper" "\
15014Describe local key bindings of current mode." t nil) 15007Describe local key bindings of current mode." t)
15015(autoload 'Helper-help "helper" "\ 15008(autoload 'Helper-help "helper" "\
15016Provide help for current mode." t nil) 15009Provide help for current mode." t)
15017(register-definition-prefixes "helper" '("Helper-")) 15010(register-definition-prefixes "helper" '("Helper-"))
15018 15011
15019 15012
@@ -15106,17 +15099,17 @@ You can use \\[hexl-find-file] to visit a file in Hexl mode.
15106 15099
15107\\[describe-bindings] for advanced commands. 15100\\[describe-bindings] for advanced commands.
15108 15101
15109(fn &optional ARG)" t nil) 15102(fn &optional ARG)" t)
15110(autoload 'hexl-find-file "hexl" "\ 15103(autoload 'hexl-find-file "hexl" "\
15111Edit file FILENAME as a binary file in hex dump format. 15104Edit file FILENAME as a binary file in hex dump format.
15112Switch to a buffer visiting file FILENAME, creating one if none exists, 15105Switch to a buffer visiting file FILENAME, creating one if none exists,
15113and edit the file in `hexl-mode'. The buffer's coding-system will be 15106and edit the file in `hexl-mode'. The buffer's coding-system will be
15114no-conversion, unlike if you visit it normally and then invoke `hexl-mode'. 15107no-conversion, unlike if you visit it normally and then invoke `hexl-mode'.
15115 15108
15116(fn FILENAME)" t nil) 15109(fn FILENAME)" t)
15117(autoload 'hexlify-buffer "hexl" "\ 15110(autoload 'hexlify-buffer "hexl" "\
15118Convert a binary buffer to hexl format. 15111Convert a binary buffer to hexl format.
15119This discards the buffer's undo information." t nil) 15112This discards the buffer's undo information." t)
15120(register-definition-prefixes "hexl" '("dehexlify-buffer" "hexl-")) 15113(register-definition-prefixes "hexl" '("dehexlify-buffer" "hexl-"))
15121 15114
15122 15115
@@ -15128,11 +15121,11 @@ Search `hfy-rgb-load-path' if FILE is not specified.
15128Loads the variable `hfy-rgb-txt-color-map', which is used by 15121Loads the variable `hfy-rgb-txt-color-map', which is used by
15129`hfy-fallback-color-values'. 15122`hfy-fallback-color-values'.
15130 15123
15131(fn &optional FILE)" t nil) 15124(fn &optional FILE)" t)
15132(autoload 'hfy-fallback-color-values "hfy-cmap" "\ 15125(autoload 'hfy-fallback-color-values "hfy-cmap" "\
15133Use a fallback method for obtaining the rgb values for a color. 15126Use a fallback method for obtaining the rgb values for a color.
15134 15127
15135(fn COLOR-STRING)" nil nil) 15128(fn COLOR-STRING)")
15136(register-definition-prefixes "hfy-cmap" '("hfy-" "htmlfontify-unload-rgb-file")) 15129(register-definition-prefixes "hfy-cmap" '("hfy-" "htmlfontify-unload-rgb-file"))
15137 15130
15138 15131
@@ -15215,7 +15208,7 @@ evaluate `hi-lock-mode'.
15215The mode's hook is called both when the mode is enabled and when 15208The mode's hook is called both when the mode is enabled and when
15216it is disabled. 15209it is disabled.
15217 15210
15218(fn &optional ARG)" t nil) 15211(fn &optional ARG)" t)
15219(put 'global-hi-lock-mode 'globalized-minor-mode t) 15212(put 'global-hi-lock-mode 'globalized-minor-mode t)
15220(defvar global-hi-lock-mode nil "\ 15213(defvar global-hi-lock-mode nil "\
15221Non-nil if Global Hi-Lock mode is enabled. 15214Non-nil if Global Hi-Lock mode is enabled.
@@ -15239,7 +15232,7 @@ Hi-Lock mode is enabled in all buffers where
15239 15232
15240See `hi-lock-mode' for more information on Hi-Lock mode. 15233See `hi-lock-mode' for more information on Hi-Lock mode.
15241 15234
15242(fn &optional ARG)" t nil) 15235(fn &optional ARG)" t)
15243(defalias 'highlight-lines-matching-regexp 'hi-lock-line-face-buffer) 15236(defalias 'highlight-lines-matching-regexp 'hi-lock-line-face-buffer)
15244(autoload 'hi-lock-line-face-buffer "hi-lock" "\ 15237(autoload 'hi-lock-line-face-buffer "hi-lock" "\
15245Highlight all lines that match REGEXP using FACE. 15238Highlight all lines that match REGEXP using FACE.
@@ -15257,7 +15250,7 @@ Use Font lock mode, if enabled, to highlight REGEXP. Otherwise,
15257use overlays for highlighting. If overlays are used, the 15250use overlays for highlighting. If overlays are used, the
15258highlighting will not update as you type. 15251highlighting will not update as you type.
15259 15252
15260(fn REGEXP &optional FACE)" t nil) 15253(fn REGEXP &optional FACE)" t)
15261(defalias 'highlight-regexp 'hi-lock-face-buffer) 15254(defalias 'highlight-regexp 'hi-lock-face-buffer)
15262(autoload 'hi-lock-face-buffer "hi-lock" "\ 15255(autoload 'hi-lock-face-buffer "hi-lock" "\
15263Set face of each match of REGEXP to FACE. 15256Set face of each match of REGEXP to FACE.
@@ -15280,7 +15273,7 @@ is considered \"enabled\" in a buffer if its `major-mode'
15280causes `font-lock-specified-p' to return non-nil, which means 15273causes `font-lock-specified-p' to return non-nil, which means
15281the major mode specifies support for Font Lock. 15274the major mode specifies support for Font Lock.
15282 15275
15283(fn REGEXP &optional FACE SUBEXP LIGHTER)" t nil) 15276(fn REGEXP &optional FACE SUBEXP LIGHTER)" t)
15284(defalias 'highlight-phrase 'hi-lock-face-phrase-buffer) 15277(defalias 'highlight-phrase 'hi-lock-face-phrase-buffer)
15285(autoload 'hi-lock-face-phrase-buffer "hi-lock" "\ 15278(autoload 'hi-lock-face-phrase-buffer "hi-lock" "\
15286Set face of each match of phrase REGEXP to FACE. 15279Set face of each match of phrase REGEXP to FACE.
@@ -15298,7 +15291,7 @@ is considered \"enabled\" in a buffer if its `major-mode'
15298causes `font-lock-specified-p' to return non-nil, which means 15291causes `font-lock-specified-p' to return non-nil, which means
15299the major mode specifies support for Font Lock. 15292the major mode specifies support for Font Lock.
15300 15293
15301(fn REGEXP &optional FACE)" t nil) 15294(fn REGEXP &optional FACE)" t)
15302(defalias 'highlight-symbol-at-point 'hi-lock-face-symbol-at-point) 15295(defalias 'highlight-symbol-at-point 'hi-lock-face-symbol-at-point)
15303(autoload 'hi-lock-face-symbol-at-point "hi-lock" "\ 15296(autoload 'hi-lock-face-symbol-at-point "hi-lock" "\
15304Highlight each instance of the symbol at point. 15297Highlight each instance of the symbol at point.
@@ -15313,7 +15306,7 @@ This uses Font lock mode if it is enabled; otherwise it uses overlays,
15313in which case the highlighting will not update as you type. The Font 15306in which case the highlighting will not update as you type. The Font
15314Lock mode is considered \"enabled\" in a buffer if its `major-mode' 15307Lock mode is considered \"enabled\" in a buffer if its `major-mode'
15315causes `font-lock-specified-p' to return non-nil, which means 15308causes `font-lock-specified-p' to return non-nil, which means
15316the major mode specifies support for Font Lock." t nil) 15309the major mode specifies support for Font Lock." t)
15317(defalias 'unhighlight-regexp 'hi-lock-unface-buffer) 15310(defalias 'unhighlight-regexp 'hi-lock-unface-buffer)
15318(autoload 'hi-lock-unface-buffer "hi-lock" "\ 15311(autoload 'hi-lock-unface-buffer "hi-lock" "\
15319Remove highlighting of each match to REGEXP set by hi-lock. 15312Remove highlighting of each match to REGEXP set by hi-lock.
@@ -15322,19 +15315,19 @@ previously inserted by hi-lock interactive functions.
15322If REGEXP is t (or if \\[universal-argument] was specified interactively), 15315If REGEXP is t (or if \\[universal-argument] was specified interactively),
15323then remove all hi-lock highlighting. 15316then remove all hi-lock highlighting.
15324 15317
15325(fn REGEXP)" t nil) 15318(fn REGEXP)" t)
15326(autoload 'hi-lock-write-interactive-patterns "hi-lock" "\ 15319(autoload 'hi-lock-write-interactive-patterns "hi-lock" "\
15327Write interactively added patterns, if any, into buffer at point. 15320Write interactively added patterns, if any, into buffer at point.
15328 15321
15329Interactively added patterns are those normally specified using 15322Interactively added patterns are those normally specified using
15330`highlight-regexp' and `highlight-lines-matching-regexp'; they can 15323`highlight-regexp' and `highlight-lines-matching-regexp'; they can
15331be found in variable `hi-lock-interactive-patterns'." t nil) 15324be found in variable `hi-lock-interactive-patterns'." t)
15332(autoload 'hi-lock-find-patterns "hi-lock" "\ 15325(autoload 'hi-lock-find-patterns "hi-lock" "\
15333Add patterns from the current buffer to the list of hi-lock patterns." t nil) 15326Add patterns from the current buffer to the list of hi-lock patterns." t)
15334(autoload 'hi-lock-context-menu "hi-lock" "\ 15327(autoload 'hi-lock-context-menu "hi-lock" "\
15335Populate MENU with a menu item to highlight symbol at CLICK. 15328Populate MENU with a menu item to highlight symbol at CLICK.
15336 15329
15337(fn MENU CLICK)" nil nil) 15330(fn MENU CLICK)")
15338(register-definition-prefixes "hi-lock" '("hi-lock-" "highlight-symbol-at-mouse" "turn-on-hi-lock-if-enabled")) 15331(register-definition-prefixes "hi-lock" '("hi-lock-" "highlight-symbol-at-mouse" "turn-on-hi-lock-if-enabled"))
15339 15332
15340 15333
@@ -15391,7 +15384,7 @@ evaluate `hide-ifdef-mode'.
15391The mode's hook is called both when the mode is enabled and when 15384The mode's hook is called both when the mode is enabled and when
15392it is disabled. 15385it is disabled.
15393 15386
15394(fn &optional ARG)" t nil) 15387(fn &optional ARG)" t)
15395(register-definition-prefixes "hideif" '("backward-ifdef" "down-ifdef" "forward-ifdef" "hide-ifdef" "hif-" "intern-safe" "next-ifdef" "previous-ifdef" "show-ifdef" "up-ifdef")) 15388(register-definition-prefixes "hideif" '("backward-ifdef" "down-ifdef" "forward-ifdef" "hide-ifdef" "hif-" "intern-safe" "next-ifdef" "previous-ifdef" "show-ifdef" "up-ifdef"))
15396 15389
15397 15390
@@ -15457,9 +15450,9 @@ evaluate `hs-minor-mode'.
15457The mode's hook is called both when the mode is enabled and when 15450The mode's hook is called both when the mode is enabled and when
15458it is disabled. 15451it is disabled.
15459 15452
15460(fn &optional ARG)" t nil) 15453(fn &optional ARG)" t)
15461(autoload 'turn-off-hideshow "hideshow" "\ 15454(autoload 'turn-off-hideshow "hideshow" "\
15462Unconditionally turn off `hs-minor-mode'." nil nil) 15455Unconditionally turn off `hs-minor-mode'.")
15463(register-definition-prefixes "hideshow" '("hs-")) 15456(register-definition-prefixes "hideshow" '("hs-"))
15464 15457
15465 15458
@@ -15503,7 +15496,7 @@ evaluate `highlight-changes-mode'.
15503The mode's hook is called both when the mode is enabled and when 15496The mode's hook is called both when the mode is enabled and when
15504it is disabled. 15497it is disabled.
15505 15498
15506(fn &optional ARG)" t nil) 15499(fn &optional ARG)" t)
15507(autoload 'highlight-changes-visible-mode "hilit-chg" "\ 15500(autoload 'highlight-changes-visible-mode "hilit-chg" "\
15508Toggle visibility of highlighting due to Highlight Changes mode. 15501Toggle visibility of highlighting due to Highlight Changes mode.
15509 15502
@@ -15531,16 +15524,16 @@ evaluate `highlight-changes-visible-mode'.
15531The mode's hook is called both when the mode is enabled and when 15524The mode's hook is called both when the mode is enabled and when
15532it is disabled. 15525it is disabled.
15533 15526
15534(fn &optional ARG)" t nil) 15527(fn &optional ARG)" t)
15535(autoload 'highlight-changes-remove-highlight "hilit-chg" "\ 15528(autoload 'highlight-changes-remove-highlight "hilit-chg" "\
15536Remove the change face from the region between BEG and END. 15529Remove the change face from the region between BEG and END.
15537This allows you to manually remove highlighting from uninteresting changes. 15530This allows you to manually remove highlighting from uninteresting changes.
15538 15531
15539(fn BEG END)" t nil) 15532(fn BEG END)" t)
15540(autoload 'highlight-changes-next-change "hilit-chg" "\ 15533(autoload 'highlight-changes-next-change "hilit-chg" "\
15541Move to the beginning of the next change, if in Highlight Changes mode." t nil) 15534Move to the beginning of the next change, if in Highlight Changes mode." t)
15542(autoload 'highlight-changes-previous-change "hilit-chg" "\ 15535(autoload 'highlight-changes-previous-change "hilit-chg" "\
15543Move to the beginning of the previous change, if in Highlight Changes mode." t nil) 15536Move to the beginning of the previous change, if in Highlight Changes mode." t)
15544(autoload 'highlight-changes-rotate-faces "hilit-chg" "\ 15537(autoload 'highlight-changes-rotate-faces "hilit-chg" "\
15545\"Age\" changes if in Highlight Changes mode and the changes are visible. 15538\"Age\" changes if in Highlight Changes mode and the changes are visible.
15546 15539
@@ -15553,7 +15546,7 @@ You can automatically rotate colors when the buffer is saved by adding
15553this function to `write-file-functions' as a buffer-local value. To do 15546this function to `write-file-functions' as a buffer-local value. To do
15554this, eval the following in the buffer to be saved: 15547this, eval the following in the buffer to be saved:
15555 15548
15556 (add-hook \\='write-file-functions \\='highlight-changes-rotate-faces nil t)" t nil) 15549 (add-hook \\='write-file-functions \\='highlight-changes-rotate-faces nil t)" t)
15557(autoload 'highlight-compare-buffers "hilit-chg" "\ 15550(autoload 'highlight-compare-buffers "hilit-chg" "\
15558Compare two buffers and highlight the differences. 15551Compare two buffers and highlight the differences.
15559 15552
@@ -15569,7 +15562,7 @@ If a buffer is read-only, differences will be highlighted but no property
15569changes are made, so \\[highlight-changes-next-change] and 15562changes are made, so \\[highlight-changes-next-change] and
15570\\[highlight-changes-previous-change] will not work. 15563\\[highlight-changes-previous-change] will not work.
15571 15564
15572(fn BUF-A BUF-B)" t nil) 15565(fn BUF-A BUF-B)" t)
15573(autoload 'highlight-compare-with-file "hilit-chg" "\ 15566(autoload 'highlight-compare-with-file "hilit-chg" "\
15574Compare this buffer with a file, and highlight differences. 15567Compare this buffer with a file, and highlight differences.
15575 15568
@@ -15584,7 +15577,7 @@ If the buffer is read-only, differences will be highlighted but no property
15584changes are made, so \\[highlight-changes-next-change] and 15577changes are made, so \\[highlight-changes-next-change] and
15585\\[highlight-changes-previous-change] will not work. 15578\\[highlight-changes-previous-change] will not work.
15586 15579
15587(fn FILE-B)" t nil) 15580(fn FILE-B)" t)
15588(put 'global-highlight-changes-mode 'globalized-minor-mode t) 15581(put 'global-highlight-changes-mode 'globalized-minor-mode t)
15589(defvar global-highlight-changes-mode nil "\ 15582(defvar global-highlight-changes-mode nil "\
15590Non-nil if Global Highlight-Changes mode is enabled. 15583Non-nil if Global Highlight-Changes mode is enabled.
@@ -15609,7 +15602,7 @@ Highlight-Changes mode is enabled in all buffers where
15609See `highlight-changes-mode' for more information on Highlight-Changes 15602See `highlight-changes-mode' for more information on Highlight-Changes
15610mode. 15603mode.
15611 15604
15612(fn &optional ARG)" t nil) 15605(fn &optional ARG)" t)
15613(register-definition-prefixes "hilit-chg" '("highlight-" "hilit-chg-")) 15606(register-definition-prefixes "hilit-chg" '("highlight-" "hilit-chg-"))
15614 15607
15615 15608
@@ -15630,13 +15623,13 @@ With a positive numeric argument, jumps directly to the ARG next
15630function in this list. With a negative argument or just \\[universal-argument], 15623function in this list. With a negative argument or just \\[universal-argument],
15631undoes the expansion. 15624undoes the expansion.
15632 15625
15633(fn ARG)" t nil) 15626(fn ARG)" t)
15634(autoload 'make-hippie-expand-function "hippie-exp" "\ 15627(autoload 'make-hippie-expand-function "hippie-exp" "\
15635Construct a function similar to `hippie-expand'. 15628Construct a function similar to `hippie-expand'.
15636Make it use the expansion functions in TRY-LIST. An optional second 15629Make it use the expansion functions in TRY-LIST. An optional second
15637argument VERBOSE non-nil makes the function verbose. 15630argument VERBOSE non-nil makes the function verbose.
15638 15631
15639(fn TRY-LIST &optional VERBOSE)" nil nil) 15632(fn TRY-LIST &optional VERBOSE)")
15640(register-definition-prefixes "hippie-exp" '("he-" "hippie-expand-" "try-")) 15633(register-definition-prefixes "hippie-exp" '("he-" "hippie-expand-" "try-"))
15641 15634
15642 15635
@@ -15669,7 +15662,7 @@ evaluate `hl-line-mode'.
15669The mode's hook is called both when the mode is enabled and when 15662The mode's hook is called both when the mode is enabled and when
15670it is disabled. 15663it is disabled.
15671 15664
15672(fn &optional ARG)" t nil) 15665(fn &optional ARG)" t)
15673(defvar global-hl-line-mode nil "\ 15666(defvar global-hl-line-mode nil "\
15674Non-nil if Global Hl-Line mode is enabled. 15667Non-nil if Global Hl-Line mode is enabled.
15675See the `global-hl-line-mode' command 15668See the `global-hl-line-mode' command
@@ -15702,7 +15695,7 @@ evaluate `(default-value \\='global-hl-line-mode)'.
15702The mode's hook is called both when the mode is enabled and when 15695The mode's hook is called both when the mode is enabled and when
15703it is disabled. 15696it is disabled.
15704 15697
15705(fn &optional ARG)" t nil) 15698(fn &optional ARG)" t)
15706(register-definition-prefixes "hl-line" '("global-hl-line-" "hl-line-")) 15699(register-definition-prefixes "hl-line" '("global-hl-line-" "hl-line-"))
15707 15700
15708 15701
@@ -15769,7 +15762,7 @@ Display the holidays for last month, this month, and next month.
15769If called with an optional prefix argument ARG, prompts for month and year. 15762If called with an optional prefix argument ARG, prompts for month and year.
15770This function is suitable for execution in an init file. 15763This function is suitable for execution in an init file.
15771 15764
15772(fn &optional ARG)" t nil) 15765(fn &optional ARG)" t)
15773(autoload 'list-holidays "holidays" "\ 15766(autoload 'list-holidays "holidays" "\
15774Display holidays for years Y1 to Y2 (inclusive). 15767Display holidays for years Y1 to Y2 (inclusive).
15775Y2 defaults to Y1. The optional list of holidays L defaults to 15768Y2 defaults to Y1. The optional list of holidays L defaults to
@@ -15795,7 +15788,7 @@ The list of holiday lists is computed by the
15795by redefining that function, or use `add-function' to add 15788by redefining that function, or use `add-function' to add
15796values. 15789values.
15797 15790
15798(fn Y1 &optional Y2 L LABEL)" t nil) 15791(fn Y1 &optional Y2 L LABEL)" t)
15799(defalias 'holiday-list 'list-holidays) 15792(defalias 'holiday-list 'list-holidays)
15800(register-definition-prefixes "holidays" '("calendar-" "holiday-")) 15793(register-definition-prefixes "holidays" '("calendar-" "holiday-"))
15801 15794
@@ -15826,14 +15819,14 @@ If the SRCDIR and FILE arguments are set, lookup etags derived
15826entries in the `hfy-tags-cache' and add HTML anchors and 15819entries in the `hfy-tags-cache' and add HTML anchors and
15827hyperlinks as appropriate. 15820hyperlinks as appropriate.
15828 15821
15829(fn &optional SRCDIR FILE)" t nil) 15822(fn &optional SRCDIR FILE)" t)
15830(autoload 'htmlfontify-copy-and-link-dir "htmlfontify" "\ 15823(autoload 'htmlfontify-copy-and-link-dir "htmlfontify" "\
15831Trawl SRCDIR and write fontified-and-hyperlinked output in DSTDIR. 15824Trawl SRCDIR and write fontified-and-hyperlinked output in DSTDIR.
15832F-EXT and L-EXT specify values for `hfy-extn' and `hfy-link-extn'. 15825F-EXT and L-EXT specify values for `hfy-extn' and `hfy-link-extn'.
15833 15826
15834You may also want to set `hfy-page-header' and `hfy-page-footer'. 15827You may also want to set `hfy-page-header' and `hfy-page-footer'.
15835 15828
15836(fn SRCDIR DSTDIR &optional F-EXT L-EXT)" t nil) 15829(fn SRCDIR DSTDIR &optional F-EXT L-EXT)" t)
15837(register-definition-prefixes "htmlfontify" '("hfy-" "htmlfontify-")) 15830(register-definition-prefixes "htmlfontify" '("hfy-" "htmlfontify-"))
15838 15831
15839 15832
@@ -15877,8 +15870,7 @@ inlined into the compiled format versions. This means that if you
15877change its definition, you should explicitly call 15870change its definition, you should explicitly call
15878`ibuffer-recompile-formats'. 15871`ibuffer-recompile-formats'.
15879 15872
15880(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil t) 15873(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil 'macro)
15881(function-put 'define-ibuffer-column 'lisp-indent-function 'defun)
15882(autoload 'define-ibuffer-sorter "ibuf-macs" "\ 15874(autoload 'define-ibuffer-sorter "ibuf-macs" "\
15883Define a method of sorting named NAME. 15875Define a method of sorting named NAME.
15884DOCUMENTATION is the documentation of the function, which will be called 15876DOCUMENTATION is the documentation of the function, which will be called
@@ -15889,9 +15881,7 @@ For sorting, the forms in BODY will be evaluated with `a' bound to one
15889buffer object, and `b' bound to another. BODY should return a non-nil 15881buffer object, and `b' bound to another. BODY should return a non-nil
15890value if and only if `a' is \"less than\" `b'. 15882value if and only if `a' is \"less than\" `b'.
15891 15883
15892(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil t) 15884(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil 'macro)
15893(function-put 'define-ibuffer-sorter 'lisp-indent-function 1)
15894(function-put 'define-ibuffer-sorter 'doc-string-elt 2)
15895(autoload 'define-ibuffer-op "ibuf-macs" "\ 15885(autoload 'define-ibuffer-op "ibuf-macs" "\
15896Generate a function which operates on a buffer. 15886Generate a function which operates on a buffer.
15897OP becomes the name of the function; if it doesn't begin with 15887OP becomes the name of the function; if it doesn't begin with
@@ -15930,9 +15920,7 @@ BODY define the operation; they are forms to evaluate per each
15930marked buffer. BODY is evaluated with `buf' bound to the 15920marked buffer. BODY is evaluated with `buf' bound to the
15931buffer object. 15921buffer object.
15932 15922
15933(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING BEFORE AFTER COMPLEX) &rest BODY)" nil t) 15923(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING BEFORE AFTER COMPLEX) &rest BODY)" nil 'macro)
15934(function-put 'define-ibuffer-op 'lisp-indent-function 2)
15935(function-put 'define-ibuffer-op 'doc-string-elt 3)
15936(autoload 'define-ibuffer-filter "ibuf-macs" "\ 15924(autoload 'define-ibuffer-filter "ibuf-macs" "\
15937Define a filter named NAME. 15925Define a filter named NAME.
15938DOCUMENTATION is the documentation of the function. 15926DOCUMENTATION is the documentation of the function.
@@ -15947,9 +15935,7 @@ not a particular buffer should be displayed or not. The forms in BODY
15947will be evaluated with BUF bound to the buffer object, and QUALIFIER 15935will be evaluated with BUF bound to the buffer object, and QUALIFIER
15948bound to the current value of the filter. 15936bound to the current value of the filter.
15949 15937
15950(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil t) 15938(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil 'macro)
15951(function-put 'define-ibuffer-filter 'lisp-indent-function 2)
15952(function-put 'define-ibuffer-filter 'doc-string-elt 2)
15953(register-definition-prefixes "ibuf-macs" '("ibuffer-")) 15939(register-definition-prefixes "ibuf-macs" '("ibuffer-"))
15954 15940
15955 15941
@@ -15960,13 +15946,13 @@ Display a list of buffers, in another window.
15960If optional argument FILES-ONLY is non-nil, then add a filter for 15946If optional argument FILES-ONLY is non-nil, then add a filter for
15961buffers which are visiting a file. 15947buffers which are visiting a file.
15962 15948
15963(fn &optional FILES-ONLY)" t nil) 15949(fn &optional FILES-ONLY)" t)
15964(autoload 'ibuffer-other-window "ibuffer" "\ 15950(autoload 'ibuffer-other-window "ibuffer" "\
15965Like `ibuffer', but displayed in another window by default. 15951Like `ibuffer', but displayed in another window by default.
15966If optional argument FILES-ONLY is non-nil, then add a filter for 15952If optional argument FILES-ONLY is non-nil, then add a filter for
15967buffers which are visiting a file. 15953buffers which are visiting a file.
15968 15954
15969(fn &optional FILES-ONLY)" t nil) 15955(fn &optional FILES-ONLY)" t)
15970(autoload 'ibuffer "ibuffer" "\ 15956(autoload 'ibuffer "ibuffer" "\
15971Begin using Ibuffer to edit a list of buffers. 15957Begin using Ibuffer to edit a list of buffers.
15972Type \\<ibuffer-mode-map>\\[describe-mode] after entering ibuffer for more information. 15958Type \\<ibuffer-mode-map>\\[describe-mode] after entering ibuffer for more information.
@@ -15985,12 +15971,12 @@ FORMATS is the value to use for `ibuffer-formats'.
15985 If specified, then the variable `ibuffer-formats' will have 15971 If specified, then the variable `ibuffer-formats' will have
15986 that value locally in this buffer. 15972 that value locally in this buffer.
15987 15973
15988(fn &optional OTHER-WINDOW-P NAME QUALIFIERS NOSELECT SHRINK FILTER-GROUPS FORMATS)" t nil) 15974(fn &optional OTHER-WINDOW-P NAME QUALIFIERS NOSELECT SHRINK FILTER-GROUPS FORMATS)" t)
15989(autoload 'ibuffer-jump "ibuffer" "\ 15975(autoload 'ibuffer-jump "ibuffer" "\
15990Call Ibuffer and set point at the line listing the current buffer. 15976Call Ibuffer and set point at the line listing the current buffer.
15991If optional arg OTHER-WINDOW is non-nil, then use another window. 15977If optional arg OTHER-WINDOW is non-nil, then use another window.
15992 15978
15993(fn &optional OTHER-WINDOW)" t nil) 15979(fn &optional OTHER-WINDOW)" t)
15994(register-definition-prefixes "ibuffer" '("ibuffer-")) 15980(register-definition-prefixes "ibuffer" '("ibuffer-"))
15995 15981
15996 15982
@@ -16001,7 +15987,7 @@ Export diary file to iCalendar format.
16001All diary entries in the file DIARY-FILENAME are converted to iCalendar 15987All diary entries in the file DIARY-FILENAME are converted to iCalendar
16002format. The result is appended to the file ICAL-FILENAME. 15988format. The result is appended to the file ICAL-FILENAME.
16003 15989
16004(fn DIARY-FILENAME ICAL-FILENAME)" t nil) 15990(fn DIARY-FILENAME ICAL-FILENAME)" t)
16005(autoload 'icalendar-export-region "icalendar" "\ 15991(autoload 'icalendar-export-region "icalendar" "\
16006Export region in diary file to iCalendar format. 15992Export region in diary file to iCalendar format.
16007All diary entries in the region from MIN to MAX in the current buffer are 15993All diary entries in the region from MIN to MAX in the current buffer are
@@ -16011,7 +15997,7 @@ This function attempts to return t if something goes wrong. In this
16011case an error string which describes all the errors and problems is 15997case an error string which describes all the errors and problems is
16012written into the buffer `*icalendar-errors*'. 15998written into the buffer `*icalendar-errors*'.
16013 15999
16014(fn MIN MAX ICAL-FILENAME)" t nil) 16000(fn MIN MAX ICAL-FILENAME)" t)
16015(autoload 'icalendar-import-file "icalendar" "\ 16001(autoload 'icalendar-import-file "icalendar" "\
16016Import an iCalendar file and append to a diary file. 16002Import an iCalendar file and append to a diary file.
16017Argument ICAL-FILENAME output iCalendar file. 16003Argument ICAL-FILENAME output iCalendar file.
@@ -16019,7 +16005,7 @@ Argument DIARY-FILENAME input `diary-file'.
16019Optional argument NON-MARKING determines whether events are created as 16005Optional argument NON-MARKING determines whether events are created as
16020non-marking or not. 16006non-marking or not.
16021 16007
16022(fn ICAL-FILENAME DIARY-FILENAME &optional NON-MARKING)" t nil) 16008(fn ICAL-FILENAME DIARY-FILENAME &optional NON-MARKING)" t)
16023(autoload 'icalendar-import-buffer "icalendar" "\ 16009(autoload 'icalendar-import-buffer "icalendar" "\
16024Extract iCalendar events from current buffer. 16010Extract iCalendar events from current buffer.
16025 16011
@@ -16038,7 +16024,7 @@ Return code t means that importing worked well, return code nil
16038means that an error has occurred. Error messages will be in the 16024means that an error has occurred. Error messages will be in the
16039buffer `*icalendar-errors*'. 16025buffer `*icalendar-errors*'.
16040 16026
16041(fn &optional DIARY-FILENAME DO-NOT-ASK NON-MARKING)" t nil) 16027(fn &optional DIARY-FILENAME DO-NOT-ASK NON-MARKING)" t)
16042(register-definition-prefixes "icalendar" '("icalendar-")) 16028(register-definition-prefixes "icalendar" '("icalendar-"))
16043 16029
16044 16030
@@ -16072,7 +16058,7 @@ evaluate `(default-value \\='fido-mode)'.
16072The mode's hook is called both when the mode is enabled and when 16058The mode's hook is called both when the mode is enabled and when
16073it is disabled. 16059it is disabled.
16074 16060
16075(fn &optional ARG)" t nil) 16061(fn &optional ARG)" t)
16076(defvar icomplete-mode nil "\ 16062(defvar icomplete-mode nil "\
16077Non-nil if Icomplete mode is enabled. 16063Non-nil if Icomplete mode is enabled.
16078See the `icomplete-mode' command 16064See the `icomplete-mode' command
@@ -16111,7 +16097,7 @@ evaluate `(default-value \\='icomplete-mode)'.
16111The mode's hook is called both when the mode is enabled and when 16097The mode's hook is called both when the mode is enabled and when
16112it is disabled. 16098it is disabled.
16113 16099
16114(fn &optional ARG)" t nil) 16100(fn &optional ARG)" t)
16115(defvar icomplete-vertical-mode nil "\ 16101(defvar icomplete-vertical-mode nil "\
16116Non-nil if Icomplete-Vertical mode is enabled. 16102Non-nil if Icomplete-Vertical mode is enabled.
16117See the `icomplete-vertical-mode' command 16103See the `icomplete-vertical-mode' command
@@ -16144,7 +16130,7 @@ evaluate `(default-value \\='icomplete-vertical-mode)'.
16144The mode's hook is called both when the mode is enabled and when 16130The mode's hook is called both when the mode is enabled and when
16145it is disabled. 16131it is disabled.
16146 16132
16147(fn &optional ARG)" t nil) 16133(fn &optional ARG)" t)
16148(defvar fido-vertical-mode nil "\ 16134(defvar fido-vertical-mode nil "\
16149Non-nil if Fido-Vertical mode is enabled. 16135Non-nil if Fido-Vertical mode is enabled.
16150See the `fido-vertical-mode' command 16136See the `fido-vertical-mode' command
@@ -16173,7 +16159,7 @@ evaluate `(default-value \\='fido-vertical-mode)'.
16173The mode's hook is called both when the mode is enabled and when 16159The mode's hook is called both when the mode is enabled and when
16174it is disabled. 16160it is disabled.
16175 16161
16176(fn &optional ARG)" t nil) 16162(fn &optional ARG)" t)
16177(when (locate-library "obsolete/iswitchb") 16163(when (locate-library "obsolete/iswitchb")
16178 (autoload 'iswitchb-mode "iswitchb" "Toggle Iswitchb mode." t) 16164 (autoload 'iswitchb-mode "iswitchb" "Toggle Iswitchb mode." t)
16179 (make-obsolete 'iswitchb-mode 16165 (make-obsolete 'iswitchb-mode
@@ -16216,7 +16202,7 @@ Variables controlling indentation style:
16216Turning on Icon mode calls the value of the variable `icon-mode-hook' 16202Turning on Icon mode calls the value of the variable `icon-mode-hook'
16217with no args, if that value is non-nil. 16203with no args, if that value is non-nil.
16218 16204
16219(fn)" t nil) 16205(fn)" t)
16220(register-definition-prefixes "icon" '("beginning-of-icon-defun" "calculate-icon-indent" "electric-icon-brace" "end-of-icon-defun" "icon-" "indent-icon-exp" "mark-icon-function")) 16206(register-definition-prefixes "icon" '("beginning-of-icon-defun" "calculate-icon-indent" "electric-icon-brace" "end-of-icon-defun" "icon-" "indent-icon-exp" "mark-icon-function"))
16221 16207
16222 16208
@@ -16225,7 +16211,7 @@ with no args, if that value is non-nil.
16225(autoload 'describe-icon "icons" "\ 16211(autoload 'describe-icon "icons" "\
16226Pop to a buffer to describe ICON. 16212Pop to a buffer to describe ICON.
16227 16213
16228(fn ICON)" t nil) 16214(fn ICON)" t)
16229(register-definition-prefixes "icons" '("button" "define-icon" "icon")) 16215(register-definition-prefixes "icons" '("button" "define-icon" "icon"))
16230 16216
16231 16217
@@ -16264,7 +16250,7 @@ See also the variable `idlwave-shell-prompt-pattern'.
16264 16250
16265(Type \\[describe-mode] in the shell buffer for a list of commands.) 16251(Type \\[describe-mode] in the shell buffer for a list of commands.)
16266 16252
16267(fn &optional ARG)" t nil) 16253(fn &optional ARG)" t)
16268(register-definition-prefixes "idlw-shell" '("idlwave-")) 16254(register-definition-prefixes "idlw-shell" '("idlwave-"))
16269 16255
16270 16256
@@ -16396,7 +16382,7 @@ The main features of this mode are
16396 16382
16397\\{idlwave-mode-map} 16383\\{idlwave-mode-map}
16398 16384
16399(fn)" t nil) 16385(fn)" t)
16400(register-definition-prefixes "idlwave" '("idlwave-")) 16386(register-definition-prefixes "idlwave" '("idlwave-"))
16401 16387
16402 16388
@@ -16424,7 +16410,7 @@ However, if ARG arg equals `files', remap only commands for files, or
16424if it equals `buffers', remap only commands for buffer switching. 16410if it equals `buffers', remap only commands for buffer switching.
16425This function also adds a hook to the minibuffer. 16411This function also adds a hook to the minibuffer.
16426 16412
16427(fn &optional ARG)" t nil) 16413(fn &optional ARG)" t)
16428(autoload 'ido-switch-buffer "ido" "\ 16414(autoload 'ido-switch-buffer "ido" "\
16429Switch to another buffer. 16415Switch to another buffer.
16430The buffer is displayed according to `ido-default-buffer-method' -- the 16416The buffer is displayed according to `ido-default-buffer-method' -- the
@@ -16456,11 +16442,11 @@ RET Select the buffer at the front of the list of matches.
16456\\[ido-completion-help] Show list of matching buffers in separate window. 16442\\[ido-completion-help] Show list of matching buffers in separate window.
16457\\[ido-enter-find-file] Drop into `ido-find-file'. 16443\\[ido-enter-find-file] Drop into `ido-find-file'.
16458\\[ido-kill-buffer-at-head] Kill buffer at head of buffer list. 16444\\[ido-kill-buffer-at-head] Kill buffer at head of buffer list.
16459\\[ido-toggle-ignore] Toggle ignoring buffers listed in `ido-ignore-buffers'." t nil) 16445\\[ido-toggle-ignore] Toggle ignoring buffers listed in `ido-ignore-buffers'." t)
16460(autoload 'ido-switch-buffer-other-window "ido" "\ 16446(autoload 'ido-switch-buffer-other-window "ido" "\
16461Switch to another buffer and show it in another window. 16447Switch to another buffer and show it in another window.
16462The buffer name is selected interactively by typing a substring. 16448The buffer name is selected interactively by typing a substring.
16463For details of keybindings, see `ido-switch-buffer'." t nil) 16449For details of keybindings, see `ido-switch-buffer'." t)
16464(autoload 'ido-display-buffer "ido" "\ 16450(autoload 'ido-display-buffer "ido" "\
16465Display a buffer in another window but don't select it. 16451Display a buffer in another window but don't select it.
16466 16452
@@ -16471,27 +16457,27 @@ window.
16471The buffer name is selected interactively by typing a substring. 16457The buffer name is selected interactively by typing a substring.
16472For details of keybindings, see `ido-switch-buffer'. 16458For details of keybindings, see `ido-switch-buffer'.
16473 16459
16474(fn &optional ACTION)" t nil) 16460(fn &optional ACTION)" t)
16475(autoload 'ido-display-buffer-other-frame "ido" "\ 16461(autoload 'ido-display-buffer-other-frame "ido" "\
16476Display a buffer preferably in another frame. 16462Display a buffer preferably in another frame.
16477The buffer name is selected interactively by typing a substring. 16463The buffer name is selected interactively by typing a substring.
16478For details of keybindings, see `ido-switch-buffer'." t nil) 16464For details of keybindings, see `ido-switch-buffer'." t)
16479(autoload 'ido-kill-buffer "ido" "\ 16465(autoload 'ido-kill-buffer "ido" "\
16480Kill a buffer. 16466Kill a buffer.
16481The buffer name is selected interactively by typing a substring. 16467The buffer name is selected interactively by typing a substring.
16482For details of keybindings, see `ido-switch-buffer'." t nil) 16468For details of keybindings, see `ido-switch-buffer'." t)
16483(autoload 'ido-insert-buffer "ido" "\ 16469(autoload 'ido-insert-buffer "ido" "\
16484Insert contents of a buffer in current buffer after point. 16470Insert contents of a buffer in current buffer after point.
16485The buffer name is selected interactively by typing a substring. 16471The buffer name is selected interactively by typing a substring.
16486For details of keybindings, see `ido-switch-buffer'." t nil) 16472For details of keybindings, see `ido-switch-buffer'." t)
16487(autoload 'ido-switch-buffer-other-frame "ido" "\ 16473(autoload 'ido-switch-buffer-other-frame "ido" "\
16488Switch to another buffer and show it in another frame. 16474Switch to another buffer and show it in another frame.
16489The buffer name is selected interactively by typing a substring. 16475The buffer name is selected interactively by typing a substring.
16490For details of keybindings, see `ido-switch-buffer'." t nil) 16476For details of keybindings, see `ido-switch-buffer'." t)
16491(autoload 'ido-find-file-in-dir "ido" "\ 16477(autoload 'ido-find-file-in-dir "ido" "\
16492Switch to another file starting from DIR. 16478Switch to another file starting from DIR.
16493 16479
16494(fn DIR)" t nil) 16480(fn DIR)" t)
16495(autoload 'ido-find-file "ido" "\ 16481(autoload 'ido-find-file "ido" "\
16496Edit file with name obtained via minibuffer. 16482Edit file with name obtained via minibuffer.
16497The file is displayed according to `ido-default-file-method' -- the 16483The file is displayed according to `ido-default-file-method' -- the
@@ -16534,59 +16520,59 @@ RET Select the file at the front of the list of matches.
16534\\[ido-toggle-literal] Toggle literal reading of this file. 16520\\[ido-toggle-literal] Toggle literal reading of this file.
16535\\[ido-completion-help] Show list of matching files in separate window. 16521\\[ido-completion-help] Show list of matching files in separate window.
16536\\[ido-toggle-ignore] Toggle ignoring files listed in `ido-ignore-files'. 16522\\[ido-toggle-ignore] Toggle ignoring files listed in `ido-ignore-files'.
16537\\[ido-reread-directory] Reread the current directory." t nil) 16523\\[ido-reread-directory] Reread the current directory." t)
16538(autoload 'ido-find-file-other-window "ido" "\ 16524(autoload 'ido-find-file-other-window "ido" "\
16539Switch to another file and show it in another window. 16525Switch to another file and show it in another window.
16540The file name is selected interactively by typing a substring. 16526The file name is selected interactively by typing a substring.
16541For details of keybindings, see `ido-find-file'." t nil) 16527For details of keybindings, see `ido-find-file'." t)
16542(autoload 'ido-find-alternate-file "ido" "\ 16528(autoload 'ido-find-alternate-file "ido" "\
16543Find another file, select its buffer, kill previous buffer. 16529Find another file, select its buffer, kill previous buffer.
16544The file name is selected interactively by typing a substring. 16530The file name is selected interactively by typing a substring.
16545For details of keybindings, see `ido-find-file'." t nil) 16531For details of keybindings, see `ido-find-file'." t)
16546(autoload 'ido-find-alternate-file-other-window "ido" "\ 16532(autoload 'ido-find-alternate-file-other-window "ido" "\
16547Find file as a replacement for the file in the next window. 16533Find file as a replacement for the file in the next window.
16548The file name is selected interactively by typing a substring. 16534The file name is selected interactively by typing a substring.
16549For details of keybindings, see `ido-find-file'." t nil) 16535For details of keybindings, see `ido-find-file'." t)
16550(autoload 'ido-find-file-read-only "ido" "\ 16536(autoload 'ido-find-file-read-only "ido" "\
16551Edit file read-only with name obtained via minibuffer. 16537Edit file read-only with name obtained via minibuffer.
16552The file name is selected interactively by typing a substring. 16538The file name is selected interactively by typing a substring.
16553For details of keybindings, see `ido-find-file'." t nil) 16539For details of keybindings, see `ido-find-file'." t)
16554(autoload 'ido-find-file-read-only-other-window "ido" "\ 16540(autoload 'ido-find-file-read-only-other-window "ido" "\
16555Edit file read-only in other window with name obtained via minibuffer. 16541Edit file read-only in other window with name obtained via minibuffer.
16556The file name is selected interactively by typing a substring. 16542The file name is selected interactively by typing a substring.
16557For details of keybindings, see `ido-find-file'." t nil) 16543For details of keybindings, see `ido-find-file'." t)
16558(autoload 'ido-find-file-read-only-other-frame "ido" "\ 16544(autoload 'ido-find-file-read-only-other-frame "ido" "\
16559Edit file read-only in other frame with name obtained via minibuffer. 16545Edit file read-only in other frame with name obtained via minibuffer.
16560The file name is selected interactively by typing a substring. 16546The file name is selected interactively by typing a substring.
16561For details of keybindings, see `ido-find-file'." t nil) 16547For details of keybindings, see `ido-find-file'." t)
16562(autoload 'ido-display-file "ido" "\ 16548(autoload 'ido-display-file "ido" "\
16563Display a file in another window but don't select it. 16549Display a file in another window but don't select it.
16564The file name is selected interactively by typing a substring. 16550The file name is selected interactively by typing a substring.
16565For details of keybindings, see `ido-find-file'." t nil) 16551For details of keybindings, see `ido-find-file'." t)
16566(autoload 'ido-find-file-other-frame "ido" "\ 16552(autoload 'ido-find-file-other-frame "ido" "\
16567Switch to another file and show it in another frame. 16553Switch to another file and show it in another frame.
16568The file name is selected interactively by typing a substring. 16554The file name is selected interactively by typing a substring.
16569For details of keybindings, see `ido-find-file'." t nil) 16555For details of keybindings, see `ido-find-file'." t)
16570(autoload 'ido-write-file "ido" "\ 16556(autoload 'ido-write-file "ido" "\
16571Write current buffer to a file. 16557Write current buffer to a file.
16572The file name is selected interactively by typing a substring. 16558The file name is selected interactively by typing a substring.
16573For details of keybindings, see `ido-find-file'." t nil) 16559For details of keybindings, see `ido-find-file'." t)
16574(autoload 'ido-insert-file "ido" "\ 16560(autoload 'ido-insert-file "ido" "\
16575Insert contents of file in current buffer. 16561Insert contents of file in current buffer.
16576The file name is selected interactively by typing a substring. 16562The file name is selected interactively by typing a substring.
16577For details of keybindings, see `ido-find-file'." t nil) 16563For details of keybindings, see `ido-find-file'." t)
16578(autoload 'ido-dired "ido" "\ 16564(autoload 'ido-dired "ido" "\
16579Call `dired' the Ido way. 16565Call `dired' the Ido way.
16580The directory is selected interactively by typing a substring. 16566The directory is selected interactively by typing a substring.
16581For details of keybindings, see `ido-find-file'." t nil) 16567For details of keybindings, see `ido-find-file'." t)
16582(autoload 'ido-dired-other-window "ido" "\ 16568(autoload 'ido-dired-other-window "ido" "\
16583\"Edit\" a directory. Like `ido-dired' but select in another window. 16569\"Edit\" a directory. Like `ido-dired' but select in another window.
16584The directory is selected interactively by typing a substring. 16570The directory is selected interactively by typing a substring.
16585For details of keybindings, see `ido-find-file'." t nil) 16571For details of keybindings, see `ido-find-file'." t)
16586(autoload 'ido-dired-other-frame "ido" "\ 16572(autoload 'ido-dired-other-frame "ido" "\
16587\"Edit\" a directory. Like `ido-dired' but make a new frame. 16573\"Edit\" a directory. Like `ido-dired' but make a new frame.
16588The directory is selected interactively by typing a substring. 16574The directory is selected interactively by typing a substring.
16589For details of keybindings, see `ido-find-file'." t nil) 16575For details of keybindings, see `ido-find-file'." t)
16590(autoload 'ido-read-buffer "ido" "\ 16576(autoload 'ido-read-buffer "ido" "\
16591Ido replacement for the built-in `read-buffer'. 16577Ido replacement for the built-in `read-buffer'.
16592Return the name of a buffer selected. 16578Return the name of a buffer selected.
@@ -16596,19 +16582,19 @@ If REQUIRE-MATCH is non-nil, an existing buffer must be selected.
16596Optional arg PREDICATE if non-nil is a function limiting the 16582Optional arg PREDICATE if non-nil is a function limiting the
16597buffers that can be considered. 16583buffers that can be considered.
16598 16584
16599(fn PROMPT &optional DEFAULT REQUIRE-MATCH PREDICATE)" nil nil) 16585(fn PROMPT &optional DEFAULT REQUIRE-MATCH PREDICATE)")
16600(autoload 'ido-read-file-name "ido" "\ 16586(autoload 'ido-read-file-name "ido" "\
16601Ido replacement for the built-in `read-file-name'. 16587Ido replacement for the built-in `read-file-name'.
16602Read file name, prompting with PROMPT and completing in directory DIR. 16588Read file name, prompting with PROMPT and completing in directory DIR.
16603See `read-file-name' for additional parameters. 16589See `read-file-name' for additional parameters.
16604 16590
16605(fn PROMPT &optional DIR DEFAULT-FILENAME MUSTMATCH INITIAL PREDICATE)" nil nil) 16591(fn PROMPT &optional DIR DEFAULT-FILENAME MUSTMATCH INITIAL PREDICATE)")
16606(autoload 'ido-read-directory-name "ido" "\ 16592(autoload 'ido-read-directory-name "ido" "\
16607Ido replacement for the built-in `read-directory-name'. 16593Ido replacement for the built-in `read-directory-name'.
16608Read directory name, prompting with PROMPT and completing in directory DIR. 16594Read directory name, prompting with PROMPT and completing in directory DIR.
16609See `read-directory-name' for additional parameters. 16595See `read-directory-name' for additional parameters.
16610 16596
16611(fn PROMPT &optional DIR DEFAULT-DIRNAME MUSTMATCH INITIAL)" nil nil) 16597(fn PROMPT &optional DIR DEFAULT-DIRNAME MUSTMATCH INITIAL)")
16612(autoload 'ido-completing-read "ido" "\ 16598(autoload 'ido-completing-read "ido" "\
16613Ido replacement for the built-in `completing-read'. 16599Ido replacement for the built-in `completing-read'.
16614Read a string in the minibuffer with Ido-style completion. 16600Read a string in the minibuffer with Ido-style completion.
@@ -16625,7 +16611,7 @@ If INITIAL-INPUT is non-nil, insert it in the minibuffer initially,
16625HIST, if non-nil, specifies a history list. 16611HIST, if non-nil, specifies a history list.
16626DEF, if non-nil, is the default value. 16612DEF, if non-nil, is the default value.
16627 16613
16628(fn PROMPT CHOICES &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)" nil nil) 16614(fn PROMPT CHOICES &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)")
16629(register-definition-prefixes "ido" '("ido-")) 16615(register-definition-prefixes "ido" '("ido-"))
16630 16616
16631 16617
@@ -16642,7 +16628,7 @@ Switches to the buffer named BUF-NAME if provided (`*ielm*' by default),
16642or creates it if it does not exist. 16628or creates it if it does not exist.
16643See `inferior-emacs-lisp-mode' for details. 16629See `inferior-emacs-lisp-mode' for details.
16644 16630
16645(fn &optional BUF-NAME)" t nil) 16631(fn &optional BUF-NAME)" t)
16646(register-definition-prefixes "ielm" '("ielm-" "inferior-emacs-lisp-mode")) 16632(register-definition-prefixes "ielm" '("ielm-" "inferior-emacs-lisp-mode"))
16647 16633
16648 16634
@@ -16675,7 +16661,7 @@ evaluate `iimage-mode'.
16675The mode's hook is called both when the mode is enabled and when 16661The mode's hook is called both when the mode is enabled and when
16676it is disabled. 16662it is disabled.
16677 16663
16678(fn &optional ARG)" t nil) 16664(fn &optional ARG)" t)
16679(register-definition-prefixes "iimage" '("iimage-" "turn-off-iimage-mode")) 16665(register-definition-prefixes "iimage" '("iimage-" "turn-off-iimage-mode"))
16680 16666
16681 16667
@@ -16686,23 +16672,23 @@ Determine the image type from image data DATA.
16686Value is a symbol specifying the image type or nil if type cannot 16672Value is a symbol specifying the image type or nil if type cannot
16687be determined. 16673be determined.
16688 16674
16689(fn DATA)" nil nil) 16675(fn DATA)")
16690(autoload 'image-type-from-buffer "image" "\ 16676(autoload 'image-type-from-buffer "image" "\
16691Determine the image type from data in the current buffer. 16677Determine the image type from data in the current buffer.
16692Value is a symbol specifying the image type or nil if type cannot 16678Value is a symbol specifying the image type or nil if type cannot
16693be determined." nil nil) 16679be determined.")
16694(autoload 'image-type-from-file-header "image" "\ 16680(autoload 'image-type-from-file-header "image" "\
16695Determine the type of image file FILE from its first few bytes. 16681Determine the type of image file FILE from its first few bytes.
16696Value is a symbol specifying the image type, or nil if type cannot 16682Value is a symbol specifying the image type, or nil if type cannot
16697be determined. 16683be determined.
16698 16684
16699(fn FILE)" nil nil) 16685(fn FILE)")
16700(autoload 'image-type-from-file-name "image" "\ 16686(autoload 'image-type-from-file-name "image" "\
16701Determine the type of image file FILE from its name. 16687Determine the type of image file FILE from its name.
16702Value is a symbol specifying the image type, or nil if type cannot 16688Value is a symbol specifying the image type, or nil if type cannot
16703be determined. 16689be determined.
16704 16690
16705(fn FILE)" nil nil) 16691(fn FILE)")
16706(make-obsolete 'image-type-from-file-name 'image-supported-file-p "29.1") 16692(make-obsolete 'image-type-from-file-name 'image-supported-file-p "29.1")
16707(autoload 'image-type "image" "\ 16693(autoload 'image-type "image" "\
16708Determine and return image type. 16694Determine and return image type.
@@ -16717,12 +16703,12 @@ data. If DATA-P is a symbol with a name on the format
16717`image/jpeg', that may be used as a hint to determine the image 16703`image/jpeg', that may be used as a hint to determine the image
16718type if we can't otherwise guess it. 16704type if we can't otherwise guess it.
16719 16705
16720(fn SOURCE &optional TYPE DATA-P)" nil nil) 16706(fn SOURCE &optional TYPE DATA-P)")
16721(autoload 'image-type-available-p "image" "\ 16707(autoload 'image-type-available-p "image" "\
16722Return t if image type TYPE is available. 16708Return t if image type TYPE is available.
16723Image types are symbols like `xbm' or `jpeg'. 16709Image types are symbols like `xbm' or `jpeg'.
16724 16710
16725(fn TYPE)" nil nil) 16711(fn TYPE)")
16726(autoload 'image-type-auto-detected-p "image" "\ 16712(autoload 'image-type-auto-detected-p "image" "\
16727Return t if the current buffer contains an auto-detectable image. 16713Return t if the current buffer contains an auto-detectable image.
16728This function is intended to be used from `magic-fallback-mode-alist'. 16714This function is intended to be used from `magic-fallback-mode-alist'.
@@ -16731,7 +16717,7 @@ The buffer is considered to contain an auto-detectable image if
16731its beginning matches an image type in `image-type-header-regexps', 16717its beginning matches an image type in `image-type-header-regexps',
16732and that image type is present in `image-type-auto-detectable' with a 16718and that image type is present in `image-type-auto-detectable' with a
16733non-nil value. If that value is non-nil, but not t, then the image type 16719non-nil value. If that value is non-nil, but not t, then the image type
16734must be available." nil nil) 16720must be available.")
16735(autoload 'create-image "image" "\ 16721(autoload 'create-image "image" "\
16736Create an image. 16722Create an image.
16737FILE-OR-DATA is an image file name or image data. 16723FILE-OR-DATA is an image file name or image data.
@@ -16757,7 +16743,7 @@ Image file names that are not absolute are searched for in the
16757\"images\" sub-directory of `data-directory' and 16743\"images\" sub-directory of `data-directory' and
16758`x-bitmap-file-path' (in that order). 16744`x-bitmap-file-path' (in that order).
16759 16745
16760(fn FILE-OR-DATA &optional TYPE DATA-P &rest PROPS)" nil nil) 16746(fn FILE-OR-DATA &optional TYPE DATA-P &rest PROPS)")
16761(autoload 'put-image "image" "\ 16747(autoload 'put-image "image" "\
16762Put image IMAGE in front of POS in the current buffer. 16748Put image IMAGE in front of POS in the current buffer.
16763IMAGE must be an image created with `create-image' or `defimage'. 16749IMAGE must be an image created with `create-image' or `defimage'.
@@ -16771,7 +16757,7 @@ display it in the text area, a value of `left-margin' means
16771display it in the left marginal area, a value of `right-margin' 16757display it in the left marginal area, a value of `right-margin'
16772means display it in the right marginal area. 16758means display it in the right marginal area.
16773 16759
16774(fn IMAGE POS &optional STRING AREA)" nil nil) 16760(fn IMAGE POS &optional STRING AREA)")
16775(autoload 'insert-image "image" "\ 16761(autoload 'insert-image "image" "\
16776Insert IMAGE into current buffer at point. 16762Insert IMAGE into current buffer at point.
16777IMAGE is displayed by inserting STRING into the current buffer 16763IMAGE is displayed by inserting STRING into the current buffer
@@ -16795,7 +16781,7 @@ Normally `isearch' is able to search for STRING in the buffer
16795even if it's hidden behind a displayed image. If INHIBIT-ISEARCH 16781even if it's hidden behind a displayed image. If INHIBIT-ISEARCH
16796is non-nil, this is inhibited. 16782is non-nil, this is inhibited.
16797 16783
16798(fn IMAGE &optional STRING AREA SLICE INHIBIT-ISEARCH)" nil nil) 16784(fn IMAGE &optional STRING AREA SLICE INHIBIT-ISEARCH)")
16799(autoload 'insert-sliced-image "image" "\ 16785(autoload 'insert-sliced-image "image" "\
16800Insert IMAGE into current buffer at point. 16786Insert IMAGE into current buffer at point.
16801IMAGE is displayed by inserting STRING into the current buffer 16787IMAGE is displayed by inserting STRING into the current buffer
@@ -16807,13 +16793,13 @@ display it in the left marginal area, a value of `right-margin'
16807means display it in the right marginal area. 16793means display it in the right marginal area.
16808The image is automatically split into ROWS x COLS slices. 16794The image is automatically split into ROWS x COLS slices.
16809 16795
16810(fn IMAGE &optional STRING AREA ROWS COLS)" nil nil) 16796(fn IMAGE &optional STRING AREA ROWS COLS)")
16811(autoload 'remove-images "image" "\ 16797(autoload 'remove-images "image" "\
16812Remove images between START and END in BUFFER. 16798Remove images between START and END in BUFFER.
16813Remove only images that were put in BUFFER with calls to `put-image'. 16799Remove only images that were put in BUFFER with calls to `put-image'.
16814BUFFER nil or omitted means use the current buffer. 16800BUFFER nil or omitted means use the current buffer.
16815 16801
16816(fn START END &optional BUFFER)" nil nil) 16802(fn START END &optional BUFFER)")
16817(autoload 'find-image "image" "\ 16803(autoload 'find-image "image" "\
16818Find an image, choosing one of a list of image specifications. 16804Find an image, choosing one of a list of image specifications.
16819 16805
@@ -16837,7 +16823,7 @@ The image is looked for in `image-load-path'.
16837 16823
16838Image files should not be larger than specified by `max-image-size'. 16824Image files should not be larger than specified by `max-image-size'.
16839 16825
16840(fn SPECS &optional CACHE)" nil nil) 16826(fn SPECS &optional CACHE)")
16841(autoload 'defimage "image" "\ 16827(autoload 'defimage "image" "\
16842Define SYMBOL as an image, and return SYMBOL. 16828Define SYMBOL as an image, and return SYMBOL.
16843 16829
@@ -16871,9 +16857,9 @@ Emacs visits them in Image mode. They are also added to
16871`image-type-file-name-regexps', so that the `image-type' function 16857`image-type-file-name-regexps', so that the `image-type' function
16872recognizes these files as having image type `imagemagick'. 16858recognizes these files as having image type `imagemagick'.
16873 16859
16874If Emacs is compiled without ImageMagick support, this does nothing." nil nil) 16860If Emacs is compiled without ImageMagick support, this does nothing.")
16875(autoload 'image-at-point-p "image" "\ 16861(autoload 'image-at-point-p "image" "\
16876Return non-nil if there is an image at point." nil nil) 16862Return non-nil if there is an image at point.")
16877(register-definition-prefixes "image" '("find-image--cache" "image" "unknown-image-type")) 16863(register-definition-prefixes "image" '("find-image--cache" "image" "unknown-image-type"))
16878 16864
16879 16865
@@ -16887,7 +16873,7 @@ non-nil if the first parameter is image data. The converter
16887should output the image in the current buffer, converted to 16873should output the image in the current buffer, converted to
16888`image-convert-to-format'. 16874`image-convert-to-format'.
16889 16875
16890(fn SUFFIX CONVERTER)" nil nil) 16876(fn SUFFIX CONVERTER)")
16891(register-definition-prefixes "image-converter" '("image-convert")) 16877(register-definition-prefixes "image-converter" '("image-convert"))
16892 16878
16893 16879
@@ -16901,7 +16887,7 @@ current line. ARG, if non-nil, specifies the files to use instead
16901of the marked files. If ARG is an integer, use the next ARG (or 16887of the marked files. If ARG is an integer, use the next ARG (or
16902previous -ARG, if ARG<0) files. 16888previous -ARG, if ARG<0) files.
16903 16889
16904(fn &optional ARG)" t nil) 16890(fn &optional ARG)" t)
16905(autoload 'image-dired-dired-with-window-configuration "image-dired" "\ 16891(autoload 'image-dired-dired-with-window-configuration "image-dired" "\
16906Open directory DIR and create a default window configuration. 16892Open directory DIR and create a default window configuration.
16907 16893
@@ -16920,7 +16906,7 @@ If called with prefix argument ARG, skip splitting of windows.
16920The current window configuration is saved and can be restored by 16906The current window configuration is saved and can be restored by
16921calling `image-dired-restore-window-configuration'. 16907calling `image-dired-restore-window-configuration'.
16922 16908
16923(fn DIR &optional ARG)" t nil) 16909(fn DIR &optional ARG)" t)
16924(autoload 'image-dired-display-thumbs "image-dired" "\ 16910(autoload 'image-dired-display-thumbs "image-dired" "\
16925Display thumbnails of all marked files, in `image-dired-thumbnail-buffer'. 16911Display thumbnails of all marked files, in `image-dired-thumbnail-buffer'.
16926If a thumbnail image does not exist for a file, it is created on the 16912If a thumbnail image does not exist for a file, it is created on the
@@ -16942,7 +16928,7 @@ used or not. If non-nil, use `display-buffer' instead of
16942`image-dired-previous-line-and-display' where we do not want the 16928`image-dired-previous-line-and-display' where we do not want the
16943thumbnail buffer to be selected. 16929thumbnail buffer to be selected.
16944 16930
16945(fn &optional ARG APPEND DO-NOT-POP)" t nil) 16931(fn &optional ARG APPEND DO-NOT-POP)" t)
16946(autoload 'image-dired-show-all-from-dir "image-dired" "\ 16932(autoload 'image-dired-show-all-from-dir "image-dired" "\
16947Make a thumbnail buffer for all images in DIR and display it. 16933Make a thumbnail buffer for all images in DIR and display it.
16948Any file matching `image-file-name-regexp' is considered an image 16934Any file matching `image-file-name-regexp' is considered an image
@@ -16953,19 +16939,19 @@ If the number of image files in DIR exceeds
16953before creating the thumbnail buffer. If that variable is nil, 16939before creating the thumbnail buffer. If that variable is nil,
16954never ask for confirmation. 16940never ask for confirmation.
16955 16941
16956(fn DIR)" t nil) 16942(fn DIR)" t)
16957(defalias 'image-dired 'image-dired-show-all-from-dir) 16943(defalias 'image-dired 'image-dired-show-all-from-dir)
16958(autoload 'image-dired-tag-files "image-dired" "\ 16944(autoload 'image-dired-tag-files "image-dired" "\
16959Tag marked file(s) in Dired. With prefix ARG, tag file at point. 16945Tag marked file(s) in Dired. With prefix ARG, tag file at point.
16960 16946
16961(fn ARG)" t nil) 16947(fn ARG)" t)
16962(autoload 'image-dired-delete-tag "image-dired" "\ 16948(autoload 'image-dired-delete-tag "image-dired" "\
16963Remove tag for selected file(s). 16949Remove tag for selected file(s).
16964With prefix argument ARG, remove tag from file at point. 16950With prefix argument ARG, remove tag from file at point.
16965 16951
16966(fn ARG)" t nil) 16952(fn ARG)" t)
16967(autoload 'image-dired-jump-thumbnail-buffer "image-dired" "\ 16953(autoload 'image-dired-jump-thumbnail-buffer "image-dired" "\
16968Jump to thumbnail buffer." t nil) 16954Jump to thumbnail buffer." t)
16969(autoload 'image-dired-minor-mode "image-dired" "\ 16955(autoload 'image-dired-minor-mode "image-dired" "\
16970Setup easy-to-use keybindings for the commands to be used in Dired mode. 16956Setup easy-to-use keybindings for the commands to be used in Dired mode.
16971 16957
@@ -16987,21 +16973,21 @@ evaluate `image-dired-minor-mode'.
16987The mode's hook is called both when the mode is enabled and when 16973The mode's hook is called both when the mode is enabled and when
16988it is disabled. 16974it is disabled.
16989 16975
16990(fn &optional ARG)" t nil) 16976(fn &optional ARG)" t)
16991(autoload 'image-dired-display-thumbs-append "image-dired" "\ 16977(autoload 'image-dired-display-thumbs-append "image-dired" "\
16992Append thumbnails to `image-dired-thumbnail-buffer'." t nil) 16978Append thumbnails to `image-dired-thumbnail-buffer'." t)
16993(autoload 'image-dired-display-thumb "image-dired" "\ 16979(autoload 'image-dired-display-thumb "image-dired" "\
16994Shorthand for `image-dired-display-thumbs' with prefix argument." t nil) 16980Shorthand for `image-dired-display-thumbs' with prefix argument." t)
16995(autoload 'image-dired-dired-display-external "image-dired" "\ 16981(autoload 'image-dired-dired-display-external "image-dired" "\
16996Display file at point using an external viewer." t nil) 16982Display file at point using an external viewer." t)
16997(autoload 'image-dired-dired-display-image "image-dired" "\ 16983(autoload 'image-dired-dired-display-image "image-dired" "\
16998Display current image file. 16984Display current image file.
16999See documentation for `image-dired-display-image' for more information. 16985See documentation for `image-dired-display-image' for more information.
17000With prefix argument ARG, display image in its original size. 16986With prefix argument ARG, display image in its original size.
17001 16987
17002(fn &optional ARG)" t nil) 16988(fn &optional ARG)" t)
17003(autoload 'image-dired-dired-comment-files "image-dired" "\ 16989(autoload 'image-dired-dired-comment-files "image-dired" "\
17004Add comment to current or marked files in Dired." t nil) 16990Add comment to current or marked files in Dired." t)
17005(autoload 'image-dired-mark-tagged-files "image-dired" "\ 16991(autoload 'image-dired-mark-tagged-files "image-dired" "\
17006Use REGEXP to mark files with matching tag. 16992Use REGEXP to mark files with matching tag.
17007A `tag' is a keyword, a piece of meta data, associated with an 16993A `tag' is a keyword, a piece of meta data, associated with an
@@ -17010,15 +16996,15 @@ lets you input a regexp and this will be matched against all tags
17010on all image files in the database file. The files that have a 16996on all image files in the database file. The files that have a
17011matching tag will be marked in the Dired buffer. 16997matching tag will be marked in the Dired buffer.
17012 16998
17013(fn REGEXP)" t nil) 16999(fn REGEXP)" t)
17014(autoload 'image-dired-dired-edit-comment-and-tags "image-dired" "\ 17000(autoload 'image-dired-dired-edit-comment-and-tags "image-dired" "\
17015Edit comment and tags of current or marked image files. 17001Edit comment and tags of current or marked image files.
17016Edit comment and tags for all marked image files in an 17002Edit comment and tags for all marked image files in an
17017easy-to-use form." t nil) 17003easy-to-use form." t)
17018(autoload 'image-dired-bookmark-jump "image-dired" "\ 17004(autoload 'image-dired-bookmark-jump "image-dired" "\
17019Default bookmark handler for Image-Dired buffers. 17005Default bookmark handler for Image-Dired buffers.
17020 17006
17021(fn BOOKMARK)" nil nil) 17007(fn BOOKMARK)")
17022(define-obsolete-function-alias 'tumme #'image-dired "24.4") 17008(define-obsolete-function-alias 'tumme #'image-dired "24.4")
17023(define-obsolete-function-alias 'image-dired-setup-dired-keybindings #'image-dired-minor-mode "26.1") 17009(define-obsolete-function-alias 'image-dired-setup-dired-keybindings #'image-dired-minor-mode "26.1")
17024(register-definition-prefixes "image-dired" '("image-dired-")) 17010(register-definition-prefixes "image-dired" '("image-dired-"))
@@ -17047,14 +17033,14 @@ enabled, setting this variable directly does not take effect unless
17047the variable is set using \\[customize].") 17033the variable is set using \\[customize].")
17048(custom-autoload 'image-file-name-regexps "image-file" nil) 17034(custom-autoload 'image-file-name-regexps "image-file" nil)
17049(autoload 'image-file-name-regexp "image-file" "\ 17035(autoload 'image-file-name-regexp "image-file" "\
17050Return a regular expression matching image-file filenames." nil nil) 17036Return a regular expression matching image-file filenames.")
17051(autoload 'insert-image-file "image-file" "\ 17037(autoload 'insert-image-file "image-file" "\
17052Insert the image file FILE into the current buffer. 17038Insert the image file FILE into the current buffer.
17053Optional arguments VISIT, BEG, END, and REPLACE are interpreted 17039Optional arguments VISIT, BEG, END, and REPLACE are interpreted
17054as for the command `insert-file-contents'. Return list of 17040as for the command `insert-file-contents'. Return list of
17055absolute file name and number of characters inserted. 17041absolute file name and number of characters inserted.
17056 17042
17057(fn FILE &optional VISIT BEG END REPLACE)" nil nil) 17043(fn FILE &optional VISIT BEG END REPLACE)")
17058(defvar auto-image-file-mode nil "\ 17044(defvar auto-image-file-mode nil "\
17059Non-nil if Auto-Image-File mode is enabled. 17045Non-nil if Auto-Image-File mode is enabled.
17060See the `auto-image-file-mode' command 17046See the `auto-image-file-mode' command
@@ -17084,7 +17070,7 @@ evaluate `(default-value \\='auto-image-file-mode)'.
17084The mode's hook is called both when the mode is enabled and when 17070The mode's hook is called both when the mode is enabled and when
17085it is disabled. 17071it is disabled.
17086 17072
17087(fn &optional ARG)" t nil) 17073(fn &optional ARG)" t)
17088(register-definition-prefixes "image-file" '("image-file-")) 17074(register-definition-prefixes "image-file" '("image-file-"))
17089 17075
17090 17076
@@ -17096,7 +17082,7 @@ You can use \\<image-mode-map>\\[image-toggle-display] or \\[image-toggle-hex-di
17096as an image and display as text or hex. 17082as an image and display as text or hex.
17097 17083
17098Key bindings: 17084Key bindings:
17099\\{image-mode-map}" t nil) 17085\\{image-mode-map}" t)
17100(autoload 'image-minor-mode "image-mode" "\ 17086(autoload 'image-minor-mode "image-mode" "\
17101Toggle Image minor mode in this buffer. 17087Toggle Image minor mode in this buffer.
17102 17088
@@ -17118,15 +17104,15 @@ evaluate `image-minor-mode'.
17118The mode's hook is called both when the mode is enabled and when 17104The mode's hook is called both when the mode is enabled and when
17119it is disabled. 17105it is disabled.
17120 17106
17121(fn &optional ARG)" t nil) 17107(fn &optional ARG)" t)
17122(autoload 'image-mode-to-text "image-mode" "\ 17108(autoload 'image-mode-to-text "image-mode" "\
17123Set a non-image mode as major mode in combination with image minor mode. 17109Set a non-image mode as major mode in combination with image minor mode.
17124A non-mage major mode found from `auto-mode-alist' or fundamental mode 17110A non-mage major mode found from `auto-mode-alist' or fundamental mode
17125displays an image file as text." nil nil) 17111displays an image file as text.")
17126(autoload 'image-bookmark-jump "image-mode" "\ 17112(autoload 'image-bookmark-jump "image-mode" "\
17127 17113
17128 17114
17129(fn BMK)" nil nil) 17115(fn BMK)")
17130(register-definition-prefixes "image-mode" '("image-")) 17116(register-definition-prefixes "image-mode" '("image-"))
17131 17117
17132 17118
@@ -17251,17 +17237,17 @@ Add an `imenu' entry to the menu bar for the current buffer.
17251NAME is a string used to name the menu bar item. 17237NAME is a string used to name the menu bar item.
17252See the command `imenu' for more information. 17238See the command `imenu' for more information.
17253 17239
17254(fn NAME)" t nil) 17240(fn NAME)" t)
17255(autoload 'imenu-add-menubar-index "imenu" "\ 17241(autoload 'imenu-add-menubar-index "imenu" "\
17256Add an Imenu \"Index\" entry on the menu bar for the current buffer. 17242Add an Imenu \"Index\" entry on the menu bar for the current buffer.
17257 17243
17258A trivial interface to `imenu-add-to-menubar' suitable for use in a hook." t nil) 17244A trivial interface to `imenu-add-to-menubar' suitable for use in a hook." t)
17259(autoload 'imenu "imenu" "\ 17245(autoload 'imenu "imenu" "\
17260Jump to a place in the buffer chosen using a buffer menu or mouse menu. 17246Jump to a place in the buffer chosen using a buffer menu or mouse menu.
17261INDEX-ITEM specifies the position. See `imenu-choose-buffer-index' 17247INDEX-ITEM specifies the position. See `imenu-choose-buffer-index'
17262for more information. 17248for more information.
17263 17249
17264(fn INDEX-ITEM)" t nil) 17250(fn INDEX-ITEM)" t)
17265(register-definition-prefixes "imenu" '("imenu-")) 17251(register-definition-prefixes "imenu" '("imenu-"))
17266 17252
17267 17253
@@ -17275,23 +17261,23 @@ for more information.
17275(autoload 'indian-compose-region "ind-util" "\ 17261(autoload 'indian-compose-region "ind-util" "\
17276Compose the region according to `composition-function-table'. 17262Compose the region according to `composition-function-table'.
17277 17263
17278(fn FROM TO)" t nil) 17264(fn FROM TO)" t)
17279(autoload 'indian-compose-string "ind-util" "\ 17265(autoload 'indian-compose-string "ind-util" "\
17280 17266
17281 17267
17282(fn STRING)" nil nil) 17268(fn STRING)")
17283(autoload 'in-is13194-post-read-conversion "ind-util" "\ 17269(autoload 'in-is13194-post-read-conversion "ind-util" "\
17284 17270
17285 17271
17286(fn LEN)" nil nil) 17272(fn LEN)")
17287(autoload 'in-is13194-pre-write-conversion "ind-util" "\ 17273(autoload 'in-is13194-pre-write-conversion "ind-util" "\
17288 17274
17289 17275
17290(fn FROM TO)" nil nil) 17276(fn FROM TO)")
17291(autoload 'indian-2-column-to-ucs-region "ind-util" "\ 17277(autoload 'indian-2-column-to-ucs-region "ind-util" "\
17292Convert old Emacs Devanagari characters to UCS. 17278Convert old Emacs Devanagari characters to UCS.
17293 17279
17294(fn FROM TO)" t nil) 17280(fn FROM TO)" t)
17295(register-definition-prefixes "ind-util" '("combinatorial" "indian-" "is13194-")) 17281(register-definition-prefixes "ind-util" '("combinatorial" "indian-" "is13194-"))
17296 17282
17297 17283
@@ -17316,7 +17302,7 @@ quoted using shell quote syntax.
17316 17302
17317(Type \\[describe-mode] in the process buffer for a list of commands.) 17303(Type \\[describe-mode] in the process buffer for a list of commands.)
17318 17304
17319(fn CMD)" t nil) 17305(fn CMD)" t)
17320(defalias 'run-lisp 'inferior-lisp) 17306(defalias 'run-lisp 'inferior-lisp)
17321(register-definition-prefixes "inf-lisp" '("inferior-lisp-" "lisp-" "switch-to-lisp")) 17307(register-definition-prefixes "inf-lisp" '("inferior-lisp-" "lisp-" "switch-to-lisp"))
17322 17308
@@ -17342,7 +17328,7 @@ environment variable INFOPATH is set.")
17342(autoload 'info-other-window "info" "\ 17328(autoload 'info-other-window "info" "\
17343Like `info' but show the Info buffer in another window. 17329Like `info' but show the Info buffer in another window.
17344 17330
17345(fn &optional FILE-OR-NODE BUFFER)" t nil) 17331(fn &optional FILE-OR-NODE BUFFER)" t)
17346 (put 'info 'info-file (purecopy "emacs")) 17332 (put 'info 'info-file (purecopy "emacs"))
17347(autoload 'info "info" "\ 17333(autoload 'info "info" "\
17348Enter Info, the documentation browser. 17334Enter Info, the documentation browser.
@@ -17366,23 +17352,23 @@ in all the directories in that path.
17366 17352
17367See a list of available Info commands in `Info-mode'. 17353See a list of available Info commands in `Info-mode'.
17368 17354
17369(fn &optional FILE-OR-NODE BUFFER)" t nil) 17355(fn &optional FILE-OR-NODE BUFFER)" t)
17370(autoload 'info-emacs-manual "info" "\ 17356(autoload 'info-emacs-manual "info" "\
17371Display the Emacs manual in Info mode." t nil) 17357Display the Emacs manual in Info mode." t)
17372(autoload 'info-emacs-bug "info" "\ 17358(autoload 'info-emacs-bug "info" "\
17373Display the \"Reporting Bugs\" section of the Emacs manual in Info mode." t nil) 17359Display the \"Reporting Bugs\" section of the Emacs manual in Info mode." t)
17374(autoload 'info-standalone "info" "\ 17360(autoload 'info-standalone "info" "\
17375Run Emacs as a standalone Info reader. 17361Run Emacs as a standalone Info reader.
17376Usage: emacs -f info-standalone [filename] 17362Usage: emacs -f info-standalone [filename]
17377In standalone mode, \\<Info-mode-map>\\[quit-window] exits Emacs itself." nil nil) 17363In standalone mode, \\<Info-mode-map>\\[quit-window] exits Emacs itself.")
17378(autoload 'Info-on-current-buffer "info" "\ 17364(autoload 'Info-on-current-buffer "info" "\
17379Use Info mode to browse the current Info buffer. 17365Use Info mode to browse the current Info buffer.
17380With a prefix arg, this queries for the node name to visit first; 17366With a prefix arg, this queries for the node name to visit first;
17381otherwise, that defaults to `Top'. 17367otherwise, that defaults to `Top'.
17382 17368
17383(fn &optional NODENAME)" t nil) 17369(fn &optional NODENAME)" t)
17384(autoload 'Info-directory "info" "\ 17370(autoload 'Info-directory "info" "\
17385Go to the Info directory node." t nil) 17371Go to the Info directory node." t)
17386(autoload 'Info-index "info" "\ 17372(autoload 'Info-index "info" "\
17387Look up a string TOPIC in the index for this manual and go to that entry. 17373Look up a string TOPIC in the index for this manual and go to that entry.
17388If there are no exact matches to the specified topic, this chooses 17374If there are no exact matches to the specified topic, this chooses
@@ -17390,21 +17376,21 @@ the first match which is a case-insensitive substring of a topic.
17390Use the \\<Info-mode-map>\\[Info-index-next] command to see the other matches. 17376Use the \\<Info-mode-map>\\[Info-index-next] command to see the other matches.
17391Give an empty topic name to go to the Index node itself. 17377Give an empty topic name to go to the Index node itself.
17392 17378
17393(fn TOPIC)" t nil) 17379(fn TOPIC)" t)
17394(autoload 'info-apropos "info" "\ 17380(autoload 'info-apropos "info" "\
17395Search indices of all known Info files on your system for STRING. 17381Search indices of all known Info files on your system for STRING.
17396If REGEXP (interactively, the prefix), use a regexp match. 17382If REGEXP (interactively, the prefix), use a regexp match.
17397 17383
17398Display a menu of the possible matches. 17384Display a menu of the possible matches.
17399 17385
17400(fn STRING &optional REGEXP)" t nil) 17386(fn STRING &optional REGEXP)" t)
17401(autoload 'info-finder "info" "\ 17387(autoload 'info-finder "info" "\
17402Display descriptions of the keywords in the Finder virtual manual. 17388Display descriptions of the keywords in the Finder virtual manual.
17403In interactive use, a prefix argument directs this command to read 17389In interactive use, a prefix argument directs this command to read
17404a list of keywords separated by comma. After that, it displays a node 17390a list of keywords separated by comma. After that, it displays a node
17405with a list of packages that contain all specified keywords. 17391with a list of packages that contain all specified keywords.
17406 17392
17407(fn &optional KEYWORDS)" t nil) 17393(fn &optional KEYWORDS)" t)
17408(autoload 'Info-mode "info" "\ 17394(autoload 'Info-mode "info" "\
17409Info mode provides commands for browsing through the Info documentation tree. 17395Info mode provides commands for browsing through the Info documentation tree.
17410Documentation in Info is divided into \"nodes\", each of which discusses 17396Documentation in Info is divided into \"nodes\", each of which discusses
@@ -17468,7 +17454,7 @@ Advanced commands:
17468\\[universal-argument] \\[info] Move to new Info file with completion. 17454\\[universal-argument] \\[info] Move to new Info file with completion.
17469\\[universal-argument] N \\[info] Select Info buffer with prefix number in the name *info*<N>. 17455\\[universal-argument] N \\[info] Select Info buffer with prefix number in the name *info*<N>.
17470 17456
17471(fn)" t nil) 17457(fn)" t)
17472 (put 'Info-goto-emacs-command-node 'info-file (purecopy "emacs")) 17458 (put 'Info-goto-emacs-command-node 'info-file (purecopy "emacs"))
17473(autoload 'Info-goto-emacs-command-node "info" "\ 17459(autoload 'Info-goto-emacs-command-node "info" "\
17474Go to the Info node in the Emacs manual for command COMMAND. 17460Go to the Info node in the Emacs manual for command COMMAND.
@@ -17477,7 +17463,7 @@ or in another manual found via COMMAND's `info-file' property or
17477the variable `Info-file-list-for-emacs'. 17463the variable `Info-file-list-for-emacs'.
17478COMMAND must be a symbol or string. 17464COMMAND must be a symbol or string.
17479 17465
17480(fn COMMAND)" t nil) 17466(fn COMMAND)" t)
17481 (put 'Info-goto-emacs-key-command-node 'info-file (purecopy "emacs")) 17467 (put 'Info-goto-emacs-key-command-node 'info-file (purecopy "emacs"))
17482(autoload 'Info-goto-emacs-key-command-node "info" "\ 17468(autoload 'Info-goto-emacs-key-command-node "info" "\
17483Go to the node in the Emacs manual which describes the command bound to KEY. 17469Go to the node in the Emacs manual which describes the command bound to KEY.
@@ -17487,15 +17473,15 @@ The command is found by looking up in Emacs manual's indices
17487or in another manual found via COMMAND's `info-file' property or 17473or in another manual found via COMMAND's `info-file' property or
17488the variable `Info-file-list-for-emacs'. 17474the variable `Info-file-list-for-emacs'.
17489 17475
17490(fn KEY)" t nil) 17476(fn KEY)" t)
17491(autoload 'Info-speedbar-browser "info" "\ 17477(autoload 'Info-speedbar-browser "info" "\
17492Initialize speedbar to display an Info node browser. 17478Initialize speedbar to display an Info node browser.
17493This will add a speedbar major display mode." t nil) 17479This will add a speedbar major display mode." t)
17494(autoload 'Info-bookmark-jump "info" "\ 17480(autoload 'Info-bookmark-jump "info" "\
17495This implements the `handler' function interface for the record 17481This implements the `handler' function interface for the record
17496type returned by `Info-bookmark-make-record', which see. 17482type returned by `Info-bookmark-make-record', which see.
17497 17483
17498(fn BMK)" nil nil) 17484(fn BMK)")
17499(autoload 'info-display-manual "info" "\ 17485(autoload 'info-display-manual "info" "\
17500Display an Info buffer displaying MANUAL. 17486Display an Info buffer displaying MANUAL.
17501If there is an existing Info buffer for MANUAL, display it. 17487If there is an existing Info buffer for MANUAL, display it.
@@ -17503,7 +17489,7 @@ Otherwise, visit the manual in a new Info buffer. In interactive
17503use, a prefix argument directs this command to limit the 17489use, a prefix argument directs this command to limit the
17504completion alternatives to currently visited manuals. 17490completion alternatives to currently visited manuals.
17505 17491
17506(fn MANUAL)" t nil) 17492(fn MANUAL)" t)
17507(register-definition-prefixes "info" '("Info-" "info-")) 17493(register-definition-prefixes "info" '("Info-" "info-"))
17508 17494
17509 17495
@@ -17513,7 +17499,7 @@ completion alternatives to currently visited manuals.
17513Throw away all cached data. 17499Throw away all cached data.
17514This command is useful if the user wants to start at the beginning without 17500This command is useful if the user wants to start at the beginning without
17515quitting Emacs, for example, after some Info documents were updated on the 17501quitting Emacs, for example, after some Info documents were updated on the
17516system." t nil) 17502system." t)
17517 (put 'info-lookup-symbol 'info-file "emacs") 17503 (put 'info-lookup-symbol 'info-file "emacs")
17518(autoload 'info-lookup-symbol "info-look" "\ 17504(autoload 'info-lookup-symbol "info-look" "\
17519Look up and display documentation of SYMBOL in the relevant Info manual. 17505Look up and display documentation of SYMBOL in the relevant Info manual.
@@ -17533,7 +17519,7 @@ always prompts for MODE.
17533Is SAME-WINDOW, try to reuse the current window instead of 17519Is SAME-WINDOW, try to reuse the current window instead of
17534popping up a new one. 17520popping up a new one.
17535 17521
17536(fn SYMBOL &optional MODE SAME-WINDOW)" t nil) 17522(fn SYMBOL &optional MODE SAME-WINDOW)" t)
17537 (put 'info-lookup-file 'info-file "emacs") 17523 (put 'info-lookup-file 'info-file "emacs")
17538(autoload 'info-lookup-file "info-look" "\ 17524(autoload 'info-lookup-file "info-look" "\
17539Look up and display documentation of FILE in the relevant Info manual. 17525Look up and display documentation of FILE in the relevant Info manual.
@@ -17550,15 +17536,15 @@ mode doesn't have any Info manuals known to Emacs, the command will
17550prompt for MODE to use, with completion. With prefix arg, the command 17536prompt for MODE to use, with completion. With prefix arg, the command
17551always prompts for MODE. 17537always prompts for MODE.
17552 17538
17553(fn FILE &optional MODE)" t nil) 17539(fn FILE &optional MODE)" t)
17554(autoload 'info-complete-symbol "info-look" "\ 17540(autoload 'info-complete-symbol "info-look" "\
17555Perform completion on symbol preceding point. 17541Perform completion on symbol preceding point.
17556 17542
17557(fn &optional MODE)" t nil) 17543(fn &optional MODE)" t)
17558(autoload 'info-complete-file "info-look" "\ 17544(autoload 'info-complete-file "info-look" "\
17559Perform completion on file preceding point. 17545Perform completion on file preceding point.
17560 17546
17561(fn &optional MODE)" t nil) 17547(fn &optional MODE)" t)
17562(register-definition-prefixes "info-look" '("info-")) 17548(register-definition-prefixes "info-look" '("info-"))
17563 17549
17564 17550
@@ -17591,7 +17577,7 @@ not external references, which makes it rather easy for mistakes
17591to creep in or node name changes to go unnoticed. 17577to creep in or node name changes to go unnoticed.
17592`Info-validate' doesn't check external references either. 17578`Info-validate' doesn't check external references either.
17593 17579
17594(fn FILENAME)" t nil) 17580(fn FILENAME)" t)
17595(autoload 'info-xref-check-all "info-xref" "\ 17581(autoload 'info-xref-check-all "info-xref" "\
17596Check external references in all info documents in the info path. 17582Check external references in all info documents in the info path.
17597`Info-directory-list' and `Info-additional-directory-list' are 17583`Info-directory-list' and `Info-additional-directory-list' are
@@ -17603,7 +17589,7 @@ info files don't necessarily have a \".info\" extension and in
17603particular the Emacs manuals normally don't. If you have a 17589particular the Emacs manuals normally don't. If you have a
17604source code directory in `Info-directory-list' then a lot of 17590source code directory in `Info-directory-list' then a lot of
17605extraneous files might be read. This will be time consuming but 17591extraneous files might be read. This will be time consuming but
17606should be harmless." t nil) 17592should be harmless." t)
17607(autoload 'info-xref-check-all-custom "info-xref" "\ 17593(autoload 'info-xref-check-all-custom "info-xref" "\
17608Check info references in all customize groups and variables. 17594Check info references in all customize groups and variables.
17609Info references can be in `custom-manual' or `info-link' entries 17595Info references can be in `custom-manual' or `info-link' entries
@@ -17611,7 +17597,7 @@ of the `custom-links' for a variable.
17611 17597
17612Any `custom-load' autoloads in variables are loaded in order to 17598Any `custom-load' autoloads in variables are loaded in order to
17613get full link information. This will be a lot of Lisp packages 17599get full link information. This will be a lot of Lisp packages
17614and can take a long time." t nil) 17600and can take a long time." t)
17615(autoload 'info-xref-docstrings "info-xref" "\ 17601(autoload 'info-xref-docstrings "info-xref" "\
17616Check docstring info node references in source files. 17602Check docstring info node references in source files.
17617The given files are searched for docstring hyperlinks like 17603The given files are searched for docstring hyperlinks like
@@ -17633,7 +17619,7 @@ and links can be in the file commentary or elsewhere too. Even
17633.elc files can usually be checked successfully if you don't have 17619.elc files can usually be checked successfully if you don't have
17634the sources handy. 17620the sources handy.
17635 17621
17636(fn FILENAME-LIST)" t nil) 17622(fn FILENAME-LIST)" t)
17637(register-definition-prefixes "info-xref" '("info-xref-")) 17623(register-definition-prefixes "info-xref" '("info-xref-"))
17638 17624
17639 17625
@@ -17642,7 +17628,7 @@ the sources handy.
17642(autoload 'Info-tagify "informat" "\ 17628(autoload 'Info-tagify "informat" "\
17643Create or update Info file tag table in current buffer or in a region. 17629Create or update Info file tag table in current buffer or in a region.
17644 17630
17645(fn &optional INPUT-BUFFER-NAME)" t nil) 17631(fn &optional INPUT-BUFFER-NAME)" t)
17646(defvar Info-split-threshold 262144 "\ 17632(defvar Info-split-threshold 262144 "\
17647The number of characters by which `Info-split' splits an info file.") 17633The number of characters by which `Info-split' splits an info file.")
17648(custom-autoload 'Info-split-threshold "informat" t) 17634(custom-autoload 'Info-split-threshold "informat" t)
@@ -17658,15 +17644,15 @@ should be saved in place of the original visited file.
17658The subfiles are written in the same directory the original file is 17644The subfiles are written in the same directory the original file is
17659in, with names generated by appending `-' and a number to the original 17645in, with names generated by appending `-' and a number to the original
17660file name. The indirect file still functions as an Info file, but it 17646file name. The indirect file still functions as an Info file, but it
17661contains just the tag table and a directory of subfiles." t nil) 17647contains just the tag table and a directory of subfiles." t)
17662(autoload 'Info-validate "informat" "\ 17648(autoload 'Info-validate "informat" "\
17663Check current buffer for validity as an Info file. 17649Check current buffer for validity as an Info file.
17664Check that every node pointer points to an existing node." t nil) 17650Check that every node pointer points to an existing node." t)
17665(autoload 'batch-info-validate "informat" "\ 17651(autoload 'batch-info-validate "informat" "\
17666Run `Info-validate' on the files remaining on the command line. 17652Run `Info-validate' on the files remaining on the command line.
17667Must be used only with -batch, and kills Emacs on completion. 17653Must be used only with -batch, and kills Emacs on completion.
17668Each file will be processed even if an error occurred previously. 17654Each file will be processed even if an error occurred previously.
17669For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil) 17655For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"")
17670(register-definition-prefixes "informat" '("Info-validate-")) 17656(register-definition-prefixes "informat" '("Info-validate-"))
17671 17657
17672 17658
@@ -17697,15 +17683,15 @@ See Info node `(elisp)Defining Functions' for more details.
17697;;; Generated autoloads from international/isearch-x.el 17683;;; Generated autoloads from international/isearch-x.el
17698 17684
17699(autoload 'isearch-toggle-specified-input-method "isearch-x" "\ 17685(autoload 'isearch-toggle-specified-input-method "isearch-x" "\
17700Select an input method and turn it on in interactive search." t nil) 17686Select an input method and turn it on in interactive search." t)
17701(autoload 'isearch-toggle-input-method "isearch-x" "\ 17687(autoload 'isearch-toggle-input-method "isearch-x" "\
17702Toggle input method in interactive search." t nil) 17688Toggle input method in interactive search." t)
17703(autoload 'isearch-transient-input-method "isearch-x" "\ 17689(autoload 'isearch-transient-input-method "isearch-x" "\
17704Activate transient input method in interactive search." t nil) 17690Activate transient input method in interactive search." t)
17705(autoload 'isearch-process-search-multibyte-characters "isearch-x" "\ 17691(autoload 'isearch-process-search-multibyte-characters "isearch-x" "\
17706 17692
17707 17693
17708(fn LAST-CHAR &optional COUNT)" nil nil) 17694(fn LAST-CHAR &optional COUNT)")
17709(register-definition-prefixes "isearch-x" '("isearch-")) 17695(register-definition-prefixes "isearch-x" '("isearch-"))
17710 17696
17711 17697
@@ -17716,7 +17702,7 @@ Activate transient input method in interactive search." t nil)
17716Active isearchb mode for subsequent alphanumeric keystrokes. 17702Active isearchb mode for subsequent alphanumeric keystrokes.
17717Executing this command again will terminate the search; or, if 17703Executing this command again will terminate the search; or, if
17718the search has not yet begun, will toggle to the last buffer 17704the search has not yet begun, will toggle to the last buffer
17719accessed via isearchb." t nil) 17705accessed via isearchb." t)
17720(register-definition-prefixes "isearchb" '("isearchb")) 17706(register-definition-prefixes "isearchb" '("isearchb"))
17721 17707
17722 17708
@@ -17733,71 +17719,71 @@ Translate the region between FROM and TO using the table
17733`iso-spanish-trans-tab'. 17719`iso-spanish-trans-tab'.
17734Optional arg BUFFER is ignored (for use in `format-alist'). 17720Optional arg BUFFER is ignored (for use in `format-alist').
17735 17721
17736(fn FROM TO &optional BUFFER)" t nil) 17722(fn FROM TO &optional BUFFER)" t)
17737(autoload 'iso-german "iso-cvt" "\ 17723(autoload 'iso-german "iso-cvt" "\
17738Translate net conventions for German to ISO 8859-1. 17724Translate net conventions for German to ISO 8859-1.
17739Translate the region FROM and TO using the table 17725Translate the region FROM and TO using the table
17740`iso-german-trans-tab'. 17726`iso-german-trans-tab'.
17741Optional arg BUFFER is ignored (for use in `format-alist'). 17727Optional arg BUFFER is ignored (for use in `format-alist').
17742 17728
17743(fn FROM TO &optional BUFFER)" t nil) 17729(fn FROM TO &optional BUFFER)" t)
17744(autoload 'iso-iso2tex "iso-cvt" "\ 17730(autoload 'iso-iso2tex "iso-cvt" "\
17745Translate ISO 8859-1 characters to TeX sequences. 17731Translate ISO 8859-1 characters to TeX sequences.
17746Translate the region between FROM and TO using the table 17732Translate the region between FROM and TO using the table
17747`iso-iso2tex-trans-tab'. 17733`iso-iso2tex-trans-tab'.
17748Optional arg BUFFER is ignored (for use in `format-alist'). 17734Optional arg BUFFER is ignored (for use in `format-alist').
17749 17735
17750(fn FROM TO &optional BUFFER)" t nil) 17736(fn FROM TO &optional BUFFER)" t)
17751(autoload 'iso-tex2iso "iso-cvt" "\ 17737(autoload 'iso-tex2iso "iso-cvt" "\
17752Translate TeX sequences to ISO 8859-1 characters. 17738Translate TeX sequences to ISO 8859-1 characters.
17753Translate the region between FROM and TO using the table 17739Translate the region between FROM and TO using the table
17754`iso-tex2iso-trans-tab'. 17740`iso-tex2iso-trans-tab'.
17755Optional arg BUFFER is ignored (for use in `format-alist'). 17741Optional arg BUFFER is ignored (for use in `format-alist').
17756 17742
17757(fn FROM TO &optional BUFFER)" t nil) 17743(fn FROM TO &optional BUFFER)" t)
17758(autoload 'iso-gtex2iso "iso-cvt" "\ 17744(autoload 'iso-gtex2iso "iso-cvt" "\
17759Translate German TeX sequences to ISO 8859-1 characters. 17745Translate German TeX sequences to ISO 8859-1 characters.
17760Translate the region between FROM and TO using the table 17746Translate the region between FROM and TO using the table
17761`iso-gtex2iso-trans-tab'. 17747`iso-gtex2iso-trans-tab'.
17762Optional arg BUFFER is ignored (for use in `format-alist'). 17748Optional arg BUFFER is ignored (for use in `format-alist').
17763 17749
17764(fn FROM TO &optional BUFFER)" t nil) 17750(fn FROM TO &optional BUFFER)" t)
17765(autoload 'iso-iso2gtex "iso-cvt" "\ 17751(autoload 'iso-iso2gtex "iso-cvt" "\
17766Translate ISO 8859-1 characters to German TeX sequences. 17752Translate ISO 8859-1 characters to German TeX sequences.
17767Translate the region between FROM and TO using the table 17753Translate the region between FROM and TO using the table
17768`iso-iso2gtex-trans-tab'. 17754`iso-iso2gtex-trans-tab'.
17769Optional arg BUFFER is ignored (for use in `format-alist'). 17755Optional arg BUFFER is ignored (for use in `format-alist').
17770 17756
17771(fn FROM TO &optional BUFFER)" t nil) 17757(fn FROM TO &optional BUFFER)" t)
17772(autoload 'iso-iso2duden "iso-cvt" "\ 17758(autoload 'iso-iso2duden "iso-cvt" "\
17773Translate ISO 8859-1 characters to Duden sequences. 17759Translate ISO 8859-1 characters to Duden sequences.
17774Translate the region between FROM and TO using the table 17760Translate the region between FROM and TO using the table
17775`iso-iso2duden-trans-tab'. 17761`iso-iso2duden-trans-tab'.
17776Optional arg BUFFER is ignored (for use in `format-alist'). 17762Optional arg BUFFER is ignored (for use in `format-alist').
17777 17763
17778(fn FROM TO &optional BUFFER)" t nil) 17764(fn FROM TO &optional BUFFER)" t)
17779(autoload 'iso-iso2sgml "iso-cvt" "\ 17765(autoload 'iso-iso2sgml "iso-cvt" "\
17780Translate ISO 8859-1 characters in the region to SGML entities. 17766Translate ISO 8859-1 characters in the region to SGML entities.
17781Use entities from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\". 17767Use entities from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\".
17782Optional arg BUFFER is ignored (for use in `format-alist'). 17768Optional arg BUFFER is ignored (for use in `format-alist').
17783 17769
17784(fn FROM TO &optional BUFFER)" t nil) 17770(fn FROM TO &optional BUFFER)" t)
17785(autoload 'iso-sgml2iso "iso-cvt" "\ 17771(autoload 'iso-sgml2iso "iso-cvt" "\
17786Translate SGML entities in the region to ISO 8859-1 characters. 17772Translate SGML entities in the region to ISO 8859-1 characters.
17787Use entities from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\". 17773Use entities from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\".
17788Optional arg BUFFER is ignored (for use in `format-alist'). 17774Optional arg BUFFER is ignored (for use in `format-alist').
17789 17775
17790(fn FROM TO &optional BUFFER)" t nil) 17776(fn FROM TO &optional BUFFER)" t)
17791(autoload 'iso-cvt-read-only "iso-cvt" "\ 17777(autoload 'iso-cvt-read-only "iso-cvt" "\
17792Warn that format is read-only. 17778Warn that format is read-only.
17793 17779
17794(fn &rest IGNORE)" t nil) 17780(fn &rest IGNORE)" t)
17795(autoload 'iso-cvt-write-only "iso-cvt" "\ 17781(autoload 'iso-cvt-write-only "iso-cvt" "\
17796Warn that format is write-only. 17782Warn that format is write-only.
17797 17783
17798(fn &rest IGNORE)" t nil) 17784(fn &rest IGNORE)" t)
17799(autoload 'iso-cvt-define-menu "iso-cvt" "\ 17785(autoload 'iso-cvt-define-menu "iso-cvt" "\
17800Add submenus to the File menu, to convert to and from various formats." t nil) 17786Add submenus to the File menu, to convert to and from various formats." t)
17801(register-definition-prefixes "iso-cvt" '("iso-")) 17787(register-definition-prefixes "iso-cvt" '("iso-"))
17802 17788
17803 17789
@@ -17869,12 +17855,12 @@ nil word is correct or spelling is accepted.
17869(\"word\" arg) word is hand entered. 17855(\"word\" arg) word is hand entered.
17870quit spell session exited. 17856quit spell session exited.
17871 17857
17872(fn &optional FOLLOWING QUIETLY CONTINUE REGION)" t nil) 17858(fn &optional FOLLOWING QUIETLY CONTINUE REGION)" t)
17873(autoload 'ispell-pdict-save "ispell" "\ 17859(autoload 'ispell-pdict-save "ispell" "\
17874Check to see if the personal dictionary has been modified. 17860Check to see if the personal dictionary has been modified.
17875If so, ask if it needs to be saved. 17861If so, ask if it needs to be saved.
17876 17862
17877(fn &optional NO-QUERY FORCE-SAVE)" t nil) 17863(fn &optional NO-QUERY FORCE-SAVE)" t)
17878(autoload 'ispell-help "ispell" "\ 17864(autoload 'ispell-help "ispell" "\
17879Display a list of the options available when a misspelling is encountered. 17865Display a list of the options available when a misspelling is encountered.
17880 17866
@@ -17897,13 +17883,13 @@ Selections are:
17897\\`m' Place typed-in value in personal dictionary, then recheck current word. 17883\\`m' Place typed-in value in personal dictionary, then recheck current word.
17898\\`C-l' Redraw screen. 17884\\`C-l' Redraw screen.
17899\\`C-r' Recursive edit. 17885\\`C-r' Recursive edit.
17900\\`C-z' Suspend Emacs or iconify frame." nil nil) 17886\\`C-z' Suspend Emacs or iconify frame.")
17901(autoload 'ispell-kill-ispell "ispell" "\ 17887(autoload 'ispell-kill-ispell "ispell" "\
17902Kill current Ispell process (so that you may start a fresh one). 17888Kill current Ispell process (so that you may start a fresh one).
17903With NO-ERROR, just return non-nil if there was no Ispell running. 17889With NO-ERROR, just return non-nil if there was no Ispell running.
17904With CLEAR, buffer session localwords are cleaned. 17890With CLEAR, buffer session localwords are cleaned.
17905 17891
17906(fn &optional NO-ERROR CLEAR)" t nil) 17892(fn &optional NO-ERROR CLEAR)" t)
17907(autoload 'ispell-change-dictionary "ispell" "\ 17893(autoload 'ispell-change-dictionary "ispell" "\
17908Change to dictionary DICT for Ispell. 17894Change to dictionary DICT for Ispell.
17909With a prefix arg, set it \"globally\", for all buffers. 17895With a prefix arg, set it \"globally\", for all buffers.
@@ -17911,7 +17897,7 @@ Without a prefix arg, set it \"locally\", just for this buffer.
17911 17897
17912By just answering RET you can find out what the current dictionary is. 17898By just answering RET you can find out what the current dictionary is.
17913 17899
17914(fn DICT &optional ARG)" t nil) 17900(fn DICT &optional ARG)" t)
17915(autoload 'ispell-region "ispell" "\ 17901(autoload 'ispell-region "ispell" "\
17916Interactively check a region for spelling errors. 17902Interactively check a region for spelling errors.
17917Leave the mark at the last misspelled word that the user was queried about. 17903Leave the mark at the last misspelled word that the user was queried about.
@@ -17919,7 +17905,7 @@ Leave the mark at the last misspelled word that the user was queried about.
17919Return nil if spell session was terminated, otherwise returns shift offset 17905Return nil if spell session was terminated, otherwise returns shift offset
17920amount for last line processed. 17906amount for last line processed.
17921 17907
17922(fn REG-START REG-END &optional RECHECKP SHIFT)" t nil) 17908(fn REG-START REG-END &optional RECHECKP SHIFT)" t)
17923(autoload 'ispell-comments-and-strings "ispell" "\ 17909(autoload 'ispell-comments-and-strings "ispell" "\
17924Check comments and strings in the current buffer for spelling errors. 17910Check comments and strings in the current buffer for spelling errors.
17925If called interactively with an active region, check only comments and 17911If called interactively with an active region, check only comments and
@@ -17927,19 +17913,19 @@ strings in the region.
17927When called from Lisp, START and END buffer positions can be provided 17913When called from Lisp, START and END buffer positions can be provided
17928to limit the check. 17914to limit the check.
17929 17915
17930(fn &optional START END)" t nil) 17916(fn &optional START END)" t)
17931(autoload 'ispell-comment-or-string-at-point "ispell" "\ 17917(autoload 'ispell-comment-or-string-at-point "ispell" "\
17932Check the comment or string containing point for spelling errors." t nil) 17918Check the comment or string containing point for spelling errors." t)
17933(autoload 'ispell-buffer "ispell" "\ 17919(autoload 'ispell-buffer "ispell" "\
17934Check the current buffer for spelling errors interactively. 17920Check the current buffer for spelling errors interactively.
17935Leave the mark at the last misspelled word that the user was queried about." t nil) 17921Leave the mark at the last misspelled word that the user was queried about." t)
17936(autoload 'ispell-buffer-with-debug "ispell" "\ 17922(autoload 'ispell-buffer-with-debug "ispell" "\
17937`ispell-buffer' with some output sent to `ispell-debug-buffer'. 17923`ispell-buffer' with some output sent to `ispell-debug-buffer'.
17938If APPEND is non-nil, don't erase previous debugging output. 17924If APPEND is non-nil, don't erase previous debugging output.
17939 17925
17940(fn &optional APPEND)" t nil) 17926(fn &optional APPEND)" t)
17941(autoload 'ispell-continue "ispell" "\ 17927(autoload 'ispell-continue "ispell" "\
17942Continue a halted spelling session beginning with the current word." t nil) 17928Continue a halted spelling session beginning with the current word." t)
17943(autoload 'ispell-complete-word "ispell" "\ 17929(autoload 'ispell-complete-word "ispell" "\
17944Try to complete the word before or at point. 17930Try to complete the word before or at point.
17945If optional INTERIOR-FRAG is non-nil, then the word may be a character 17931If optional INTERIOR-FRAG is non-nil, then the word may be a character
@@ -17947,9 +17933,9 @@ sequence inside of a word.
17947 17933
17948Standard ispell choices are then available. 17934Standard ispell choices are then available.
17949 17935
17950(fn &optional INTERIOR-FRAG)" t nil) 17936(fn &optional INTERIOR-FRAG)" t)
17951(autoload 'ispell-complete-word-interior-frag "ispell" "\ 17937(autoload 'ispell-complete-word-interior-frag "ispell" "\
17952Completes word matching character sequence inside a word." t nil) 17938Completes word matching character sequence inside a word." t)
17953(autoload 'ispell "ispell" "\ 17939(autoload 'ispell "ispell" "\
17954Interactively check a region or buffer for spelling errors. 17940Interactively check a region or buffer for spelling errors.
17955If `transient-mark-mode' is on, and a region is active, spell-check 17941If `transient-mark-mode' is on, and a region is active, spell-check
@@ -17958,7 +17944,7 @@ that region. Otherwise spell-check the buffer.
17958Ispell dictionaries are not distributed with Emacs. If you are 17944Ispell dictionaries are not distributed with Emacs. If you are
17959looking for a dictionary, please see the distribution of the GNU ispell 17945looking for a dictionary, please see the distribution of the GNU ispell
17960program, or do an Internet search; there are various dictionaries 17946program, or do an Internet search; there are various dictionaries
17961available on the net." t nil) 17947available on the net." t)
17962(autoload 'ispell-minor-mode "ispell" "\ 17948(autoload 'ispell-minor-mode "ispell" "\
17963Toggle last-word spell checking (Ispell minor mode). 17949Toggle last-word spell checking (Ispell minor mode).
17964 17950
@@ -17987,7 +17973,7 @@ evaluate `ispell-minor-mode'.
17987The mode's hook is called both when the mode is enabled and when 17973The mode's hook is called both when the mode is enabled and when
17988it is disabled. 17974it is disabled.
17989 17975
17990(fn &optional ARG)" t nil) 17976(fn &optional ARG)" t)
17991(autoload 'ispell-message "ispell" "\ 17977(autoload 'ispell-message "ispell" "\
17992Check the spelling of a mail message or news post. 17978Check the spelling of a mail message or news post.
17993Don't check spelling of message headers except the Subject field. 17979Don't check spelling of message headers except the Subject field.
@@ -18006,7 +17992,7 @@ in your init file:
18006 17992
18007You can bind this to the key C-c i in GNUS or mail by adding to 17993You can bind this to the key C-c i in GNUS or mail by adding to
18008`news-reply-mode-hook' or `mail-mode-hook' the following lambda expression: 17994`news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
18009 (lambda () (local-set-key \"\\C-ci\" \\='ispell-message))" t nil) 17995 (lambda () (local-set-key \"\\C-ci\" \\='ispell-message))" t)
18010(register-definition-prefixes "ispell" '("check-ispell-version" "ispell-")) 17996(register-definition-prefixes "ispell" '("check-ispell-version" "ispell-"))
18011 17997
18012 17998
@@ -18022,7 +18008,7 @@ You can bind this to the key C-c i in GNUS or mail by adding to
18022 18008
18023;;; Generated autoloads from language/japan-util.el 18009;;; Generated autoloads from language/japan-util.el
18024 18010
18025(autoload 'setup-japanese-environment-internal "japan-util" nil nil nil) 18011(autoload 'setup-japanese-environment-internal "japan-util")
18026(autoload 'japanese-katakana "japan-util" "\ 18012(autoload 'japanese-katakana "japan-util" "\
18027Convert argument to Katakana and return that. 18013Convert argument to Katakana and return that.
18028The argument may be a character or string. The result has the same type. 18014The argument may be a character or string. The result has the same type.
@@ -18032,55 +18018,55 @@ Optional argument HANKAKU t means to convert to `hankaku' Katakana
18032may be a string even if OBJ is a character if two Katakanas are 18018may be a string even if OBJ is a character if two Katakanas are
18033necessary to represent OBJ. 18019necessary to represent OBJ.
18034 18020
18035(fn OBJ &optional HANKAKU)" nil nil) 18021(fn OBJ &optional HANKAKU)")
18036(autoload 'japanese-hiragana "japan-util" "\ 18022(autoload 'japanese-hiragana "japan-util" "\
18037Convert argument to Hiragana and return that. 18023Convert argument to Hiragana and return that.
18038The argument may be a character or string. The result has the same type. 18024The argument may be a character or string. The result has the same type.
18039The argument object is not altered--the value is a copy. 18025The argument object is not altered--the value is a copy.
18040 18026
18041(fn OBJ)" nil nil) 18027(fn OBJ)")
18042(autoload 'japanese-hankaku "japan-util" "\ 18028(autoload 'japanese-hankaku "japan-util" "\
18043Convert argument to `hankaku' and return that. 18029Convert argument to `hankaku' and return that.
18044The argument may be a character or string. The result has the same type. 18030The argument may be a character or string. The result has the same type.
18045The argument object is not altered--the value is a copy. 18031The argument object is not altered--the value is a copy.
18046Optional argument ASCII-ONLY non-nil means to return only ASCII character. 18032Optional argument ASCII-ONLY non-nil means to return only ASCII character.
18047 18033
18048(fn OBJ &optional ASCII-ONLY)" nil nil) 18034(fn OBJ &optional ASCII-ONLY)")
18049(autoload 'japanese-zenkaku "japan-util" "\ 18035(autoload 'japanese-zenkaku "japan-util" "\
18050Convert argument to `zenkaku' and return that. 18036Convert argument to `zenkaku' and return that.
18051The argument may be a character or string. The result has the same type. 18037The argument may be a character or string. The result has the same type.
18052The argument object is not altered--the value is a copy. 18038The argument object is not altered--the value is a copy.
18053 18039
18054(fn OBJ)" nil nil) 18040(fn OBJ)")
18055(autoload 'japanese-katakana-region "japan-util" "\ 18041(autoload 'japanese-katakana-region "japan-util" "\
18056Convert Japanese `hiragana' chars in the region to `katakana' chars. 18042Convert Japanese `hiragana' chars in the region to `katakana' chars.
18057Optional argument HANKAKU t means to convert to `hankaku katakana' character 18043Optional argument HANKAKU t means to convert to `hankaku katakana' character
18058of which charset is `japanese-jisx0201-kana'. 18044of which charset is `japanese-jisx0201-kana'.
18059 18045
18060(fn FROM TO &optional HANKAKU)" t nil) 18046(fn FROM TO &optional HANKAKU)" t)
18061(autoload 'japanese-hiragana-region "japan-util" "\ 18047(autoload 'japanese-hiragana-region "japan-util" "\
18062Convert Japanese `katakana' chars in the region to `hiragana' chars. 18048Convert Japanese `katakana' chars in the region to `hiragana' chars.
18063 18049
18064(fn FROM TO)" t nil) 18050(fn FROM TO)" t)
18065(autoload 'japanese-hankaku-region "japan-util" "\ 18051(autoload 'japanese-hankaku-region "japan-util" "\
18066Convert Japanese `zenkaku' chars in the region to `hankaku' chars. 18052Convert Japanese `zenkaku' chars in the region to `hankaku' chars.
18067`Zenkaku' chars belong to `japanese-jisx0208' 18053`Zenkaku' chars belong to `japanese-jisx0208'
18068`Hankaku' chars belong to `ascii' or `japanese-jisx0201-kana'. 18054`Hankaku' chars belong to `ascii' or `japanese-jisx0201-kana'.
18069Optional argument ASCII-ONLY non-nil means to convert only to ASCII char. 18055Optional argument ASCII-ONLY non-nil means to convert only to ASCII char.
18070 18056
18071(fn FROM TO &optional ASCII-ONLY)" t nil) 18057(fn FROM TO &optional ASCII-ONLY)" t)
18072(autoload 'japanese-zenkaku-region "japan-util" "\ 18058(autoload 'japanese-zenkaku-region "japan-util" "\
18073Convert hankaku' chars in the region to Japanese `zenkaku' chars. 18059Convert hankaku' chars in the region to Japanese `zenkaku' chars.
18074`Zenkaku' chars belong to `japanese-jisx0208' 18060`Zenkaku' chars belong to `japanese-jisx0208'
18075`Hankaku' chars belong to `ascii' or `japanese-jisx0201-kana'. 18061`Hankaku' chars belong to `ascii' or `japanese-jisx0201-kana'.
18076Optional argument KATAKANA-ONLY non-nil means to convert only KATAKANA char. 18062Optional argument KATAKANA-ONLY non-nil means to convert only KATAKANA char.
18077 18063
18078(fn FROM TO &optional KATAKANA-ONLY)" t nil) 18064(fn FROM TO &optional KATAKANA-ONLY)" t)
18079(autoload 'read-hiragana-string "japan-util" "\ 18065(autoload 'read-hiragana-string "japan-util" "\
18080Read a Hiragana string from the minibuffer, prompting with string PROMPT. 18066Read a Hiragana string from the minibuffer, prompting with string PROMPT.
18081If non-nil, second arg INITIAL-INPUT is a string to insert before reading. 18067If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
18082 18068
18083(fn PROMPT &optional INITIAL-INPUT)" nil nil) 18069(fn PROMPT &optional INITIAL-INPUT)")
18084(register-definition-prefixes "japan-util" '("japanese-")) 18070(register-definition-prefixes "japan-util" '("japanese-"))
18085 18071
18086 18072
@@ -18113,12 +18099,12 @@ It is not recommended to set this variable permanently to anything but nil.")
18113(autoload 'jka-compr-handler "jka-compr" "\ 18099(autoload 'jka-compr-handler "jka-compr" "\
18114 18100
18115 18101
18116(fn OPERATION &rest ARGS)" nil nil) 18102(fn OPERATION &rest ARGS)")
18117(autoload 'jka-compr-uninstall "jka-compr" "\ 18103(autoload 'jka-compr-uninstall "jka-compr" "\
18118Uninstall jka-compr. 18104Uninstall jka-compr.
18119This removes the entries in `file-name-handler-alist' and `auto-mode-alist' 18105This removes the entries in `file-name-handler-alist' and `auto-mode-alist'
18120and `inhibit-local-variables-suffixes' that were added 18106and `inhibit-local-variables-suffixes' that were added
18121by `jka-compr-install'." nil nil) 18107by `jka-compr-install'.")
18122(register-definition-prefixes "jka-compr" '("compression-error" "jka-compr-")) 18108(register-definition-prefixes "jka-compr" '("compression-error" "jka-compr-"))
18123 18109
18124 18110
@@ -18128,7 +18114,11 @@ by `jka-compr-install'." nil nil)
18128(autoload 'js-mode "js" "\ 18114(autoload 'js-mode "js" "\
18129Major mode for editing JavaScript. 18115Major mode for editing JavaScript.
18130 18116
18131(fn)" t nil) 18117(fn)" t)
18118(autoload 'js-json-mode "js" "\
18119
18120
18121(fn)" t)
18132(autoload 'js-jsx-mode "js" "\ 18122(autoload 'js-jsx-mode "js" "\
18133Major mode for editing JavaScript+JSX. 18123Major mode for editing JavaScript+JSX.
18134 18124
@@ -18142,7 +18132,7 @@ could set `js-jsx-syntax' to t in your init file, or in a
18142`js-jsx-enable' in `js-mode-hook'. You may be better served by 18132`js-jsx-enable' in `js-mode-hook'. You may be better served by
18143one of the aforementioned options instead of using this mode. 18133one of the aforementioned options instead of using this mode.
18144 18134
18145(fn)" t nil) 18135(fn)" t)
18146 (defalias 'javascript-mode 'js-mode) 18136 (defalias 'javascript-mode 'js-mode)
18147(dolist (name (list "node" "nodejs" "gjs" "rhino")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'js-mode))) 18137(dolist (name (list "node" "nodejs" "gjs" "rhino")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'js-mode)))
18148(register-definition-prefixes "js" '("js-")) 18138(register-definition-prefixes "js" '("js-"))
@@ -18207,7 +18197,7 @@ keys are bound.
18207If SETUP is `numeric' and the optional fourth argument DECIMAL is non-nil, 18197If SETUP is `numeric' and the optional fourth argument DECIMAL is non-nil,
18208the decimal key on the keypad is mapped to DECIMAL instead of `.' 18198the decimal key on the keypad is mapped to DECIMAL instead of `.'
18209 18199
18210(fn SETUP &optional NUMLOCK SHIFT DECIMAL)" nil nil) 18200(fn SETUP &optional NUMLOCK SHIFT DECIMAL)")
18211 18201
18212 18202
18213;;; Generated autoloads from international/kinsoku.el 18203;;; Generated autoloads from international/kinsoku.el
@@ -18226,7 +18216,7 @@ shorter.
18226in one place, and is used for the text processing described above in 18216in one place, and is used for the text processing described above in
18227the context of text formatting. 18217the context of text formatting.
18228 18218
18229(fn LINEBEG)" nil nil) 18219(fn LINEBEG)")
18230(register-definition-prefixes "kinsoku" '("kinsoku-")) 18220(register-definition-prefixes "kinsoku" '("kinsoku-"))
18231 18221
18232 18222
@@ -18246,7 +18236,7 @@ positions FROM and TO (integers or markers) specifying the target region.
18246When it returns, the point is at the tail of the selected conversion, 18236When it returns, the point is at the tail of the selected conversion,
18247and the return value is the length of the conversion. 18237and the return value is the length of the conversion.
18248 18238
18249(fn FROM TO)" t nil) 18239(fn FROM TO)" t)
18250(register-definition-prefixes "kkc" '("kkc-")) 18240(register-definition-prefixes "kkc" '("kkc-"))
18251 18241
18252 18242
@@ -18284,7 +18274,7 @@ Use \\[kmacro-name-last-macro] to give it a name that will remain valid even
18284after another macro is defined. 18274after another macro is defined.
18285Use \\[kmacro-bind-to-key] to bind it to a key sequence. 18275Use \\[kmacro-bind-to-key] to bind it to a key sequence.
18286 18276
18287(fn ARG)" t nil) 18277(fn ARG)" t)
18288(autoload 'kmacro-end-macro "kmacro" "\ 18278(autoload 'kmacro-end-macro "kmacro" "\
18289Finish defining a keyboard macro. 18279Finish defining a keyboard macro.
18290The definition was started by \\[kmacro-start-macro]. 18280The definition was started by \\[kmacro-start-macro].
@@ -18296,7 +18286,7 @@ With numeric arg, repeat macro now that many times,
18296counting the definition just completed as the first repetition. 18286counting the definition just completed as the first repetition.
18297An argument of zero means repeat until error. 18287An argument of zero means repeat until error.
18298 18288
18299(fn ARG)" t nil) 18289(fn ARG)" t)
18300(autoload 'kmacro-call-macro "kmacro" "\ 18290(autoload 'kmacro-call-macro "kmacro" "\
18301Call the keyboard MACRO that you defined with \\[kmacro-start-macro]. 18291Call the keyboard MACRO that you defined with \\[kmacro-start-macro].
18302A prefix argument serves as a repeat count. Zero means repeat until error. 18292A prefix argument serves as a repeat count. Zero means repeat until error.
@@ -18310,7 +18300,7 @@ for details on how to adjust or disable this behavior.
18310To give a macro a name so you can call it even after defining others, 18300To give a macro a name so you can call it even after defining others,
18311use \\[kmacro-name-last-macro]. 18301use \\[kmacro-name-last-macro].
18312 18302
18313(fn ARG &optional NO-REPEAT END-MACRO MACRO)" t nil) 18303(fn ARG &optional NO-REPEAT END-MACRO MACRO)" t)
18314(autoload 'kmacro-start-macro-or-insert-counter "kmacro" "\ 18304(autoload 'kmacro-start-macro-or-insert-counter "kmacro" "\
18315Record subsequent keyboard input, defining a keyboard macro. 18305Record subsequent keyboard input, defining a keyboard macro.
18316The commands are recorded even as they are executed. 18306The commands are recorded even as they are executed.
@@ -18332,13 +18322,13 @@ The macro counter can be set directly via \\[kmacro-set-counter] and \\[kmacro-a
18332The format of the inserted value of the counter can be controlled 18322The format of the inserted value of the counter can be controlled
18333via \\[kmacro-set-format]. 18323via \\[kmacro-set-format].
18334 18324
18335(fn ARG)" t nil) 18325(fn ARG)" t)
18336(autoload 'kmacro-end-or-call-macro "kmacro" "\ 18326(autoload 'kmacro-end-or-call-macro "kmacro" "\
18337End kbd macro if currently being defined; else call last kbd macro. 18327End kbd macro if currently being defined; else call last kbd macro.
18338With numeric prefix ARG, repeat macro that many times. 18328With numeric prefix ARG, repeat macro that many times.
18339With \\[universal-argument], call second macro in macro ring. 18329With \\[universal-argument], call second macro in macro ring.
18340 18330
18341(fn ARG &optional NO-REPEAT)" t nil) 18331(fn ARG &optional NO-REPEAT)" t)
18342(autoload 'kmacro-end-and-call-macro "kmacro" "\ 18332(autoload 'kmacro-end-and-call-macro "kmacro" "\
18343Call last keyboard macro, ending it first if currently being defined. 18333Call last keyboard macro, ending it first if currently being defined.
18344With numeric prefix ARG, repeat macro that many times. 18334With numeric prefix ARG, repeat macro that many times.
@@ -18347,21 +18337,21 @@ Zero argument means repeat until there is an error.
18347To give a macro a name, so you can call it even after defining other 18337To give a macro a name, so you can call it even after defining other
18348macros, use \\[kmacro-name-last-macro]. 18338macros, use \\[kmacro-name-last-macro].
18349 18339
18350(fn ARG &optional NO-REPEAT)" t nil) 18340(fn ARG &optional NO-REPEAT)" t)
18351(autoload 'kmacro-end-call-mouse "kmacro" "\ 18341(autoload 'kmacro-end-call-mouse "kmacro" "\
18352Move point to the position clicked with the mouse and call last kbd macro. 18342Move point to the position clicked with the mouse and call last kbd macro.
18353If kbd macro currently being defined end it before activating it. 18343If kbd macro currently being defined end it before activating it.
18354 18344
18355(fn EVENT)" t nil) 18345(fn EVENT)" t)
18356(autoload 'kmacro "kmacro" "\ 18346(autoload 'kmacro "kmacro" "\
18357Create a `kmacro' for macro bound to symbol or key. 18347Create a `kmacro' for macro bound to symbol or key.
18358KEYS should be a vector or a string that obeys `key-valid-p'. 18348KEYS should be a vector or a string that obeys `key-valid-p'.
18359 18349
18360(fn KEYS &optional COUNTER FORMAT)" nil nil) 18350(fn KEYS &optional COUNTER FORMAT)")
18361(autoload 'kmacro-lambda-form "kmacro" "\ 18351(autoload 'kmacro-lambda-form "kmacro" "\
18362 18352
18363 18353
18364(fn MAC &optional COUNTER FORMAT)" nil nil) 18354(fn MAC &optional COUNTER FORMAT)")
18365(make-obsolete 'kmacro-lambda-form 'kmacro "29.1") 18355(make-obsolete 'kmacro-lambda-form 'kmacro "29.1")
18366(autoload 'kmacro-name-last-macro "kmacro" "\ 18356(autoload 'kmacro-name-last-macro "kmacro" "\
18367Assign a name to the last keyboard macro defined. 18357Assign a name to the last keyboard macro defined.
@@ -18369,7 +18359,7 @@ Argument SYMBOL is the name to define.
18369The symbol's function definition becomes the keyboard macro string. 18359The symbol's function definition becomes the keyboard macro string.
18370Such a \"function\" cannot be called from Lisp, but it is a valid editor command. 18360Such a \"function\" cannot be called from Lisp, but it is a valid editor command.
18371 18361
18372(fn SYMBOL)" t nil) 18362(fn SYMBOL)" t)
18373(register-definition-prefixes "kmacro" '("kmacro-")) 18363(register-definition-prefixes "kmacro" '("kmacro-"))
18374 18364
18375 18365
@@ -18378,7 +18368,7 @@ Such a \"function\" cannot be called from Lisp, but it is a valid editor command
18378(defvar default-korean-keyboard (purecopy (if (string-search "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ 18368(defvar default-korean-keyboard (purecopy (if (string-search "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\
18379The kind of Korean keyboard for Korean (Hangul) input method. 18369The kind of Korean keyboard for Korean (Hangul) input method.
18380\"\" for 2, \"3\" for 3, and \"3f\" for 3f.") 18370\"\" for 2, \"3\" for 3, and \"3f\" for 3f.")
18381(autoload 'setup-korean-environment-internal "korea-util" nil nil nil) 18371(autoload 'setup-korean-environment-internal "korea-util")
18382(register-definition-prefixes "korea-util" '("exit-korean-environment" "isearch-" "korean-key-bindings" "quail-hangul-switch-" "toggle-korean-input-method")) 18372(register-definition-prefixes "korea-util" '("exit-korean-environment" "isearch-" "korean-key-bindings" "quail-hangul-switch-" "toggle-korean-input-method"))
18383 18373
18384 18374
@@ -18392,7 +18382,7 @@ The kind of Korean keyboard for Korean (Hangul) input method.
18392(autoload 'lao-compose-string "lao-util" "\ 18382(autoload 'lao-compose-string "lao-util" "\
18393 18383
18394 18384
18395(fn STR)" nil nil) 18385(fn STR)")
18396(autoload 'lao-transcribe-single-roman-syllable-to-lao "lao-util" "\ 18386(autoload 'lao-transcribe-single-roman-syllable-to-lao "lao-util" "\
18397Transcribe a Romanized Lao syllable in the region FROM and TO to Lao string. 18387Transcribe a Romanized Lao syllable in the region FROM and TO to Lao string.
18398Only the first syllable is transcribed. 18388Only the first syllable is transcribed.
@@ -18403,19 +18393,19 @@ LAO-STRING is the Lao character transcription of it.
18403Optional 3rd arg STR, if non-nil, is a string to search for Roman Lao 18393Optional 3rd arg STR, if non-nil, is a string to search for Roman Lao
18404syllable. In that case, FROM and TO are indexes to STR. 18394syllable. In that case, FROM and TO are indexes to STR.
18405 18395
18406(fn FROM TO &optional STR)" nil nil) 18396(fn FROM TO &optional STR)")
18407(autoload 'lao-transcribe-roman-to-lao-string "lao-util" "\ 18397(autoload 'lao-transcribe-roman-to-lao-string "lao-util" "\
18408Transcribe Romanized Lao string STR to Lao character string. 18398Transcribe Romanized Lao string STR to Lao character string.
18409 18399
18410(fn STR)" nil nil) 18400(fn STR)")
18411(autoload 'lao-composition-function "lao-util" "\ 18401(autoload 'lao-composition-function "lao-util" "\
18412 18402
18413 18403
18414(fn GSTRING DIRECTION)" nil nil) 18404(fn GSTRING DIRECTION)")
18415(autoload 'lao-compose-region "lao-util" "\ 18405(autoload 'lao-compose-region "lao-util" "\
18416 18406
18417 18407
18418(fn FROM TO)" t nil) 18408(fn FROM TO)" t)
18419(register-definition-prefixes "lao-util" '("lao-")) 18409(register-definition-prefixes "lao-util" '("lao-"))
18420 18410
18421 18411
@@ -18430,18 +18420,18 @@ Used by the function `latexenc-find-file-coding-system'.")
18430Return the corresponding coding-system for the specified input encoding. 18420Return the corresponding coding-system for the specified input encoding.
18431Return nil if no matching coding system can be found. 18421Return nil if no matching coding system can be found.
18432 18422
18433(fn INPUTENC)" nil nil) 18423(fn INPUTENC)")
18434(autoload 'latexenc-coding-system-to-inputenc "latexenc" "\ 18424(autoload 'latexenc-coding-system-to-inputenc "latexenc" "\
18435Return the corresponding input encoding for the specified coding system. 18425Return the corresponding input encoding for the specified coding system.
18436Return nil if no matching input encoding can be found. 18426Return nil if no matching input encoding can be found.
18437 18427
18438(fn CS)" nil nil) 18428(fn CS)")
18439(autoload 'latexenc-find-file-coding-system "latexenc" "\ 18429(autoload 'latexenc-find-file-coding-system "latexenc" "\
18440Determine the coding system of a LaTeX file if it uses \"inputenc.sty\". 18430Determine the coding system of a LaTeX file if it uses \"inputenc.sty\".
18441The mapping from LaTeX's \"inputenc.sty\" encoding names to Emacs 18431The mapping from LaTeX's \"inputenc.sty\" encoding names to Emacs
18442coding system names is determined from `latex-inputenc-coding-alist'. 18432coding system names is determined from `latex-inputenc-coding-alist'.
18443 18433
18444(fn ARG-LIST)" nil nil) 18434(fn ARG-LIST)")
18445(register-definition-prefixes "latexenc" '("latexenc-dont-use-")) 18435(register-definition-prefixes "latexenc" '("latexenc-dont-use-"))
18446 18436
18447 18437
@@ -18469,7 +18459,7 @@ must be in `latin1-display-sets'. With no arguments, reset the
18469display for all of `latin1-display-sets'. See also 18459display for all of `latin1-display-sets'. See also
18470`latin1-display-setup'. 18460`latin1-display-setup'.
18471 18461
18472(fn &rest SETS)" nil nil) 18462(fn &rest SETS)")
18473(defvar latin1-display-ucs-per-lynx nil "\ 18463(defvar latin1-display-ucs-per-lynx nil "\
18474Set up Latin-1/ASCII display for Unicode characters. 18464Set up Latin-1/ASCII display for Unicode characters.
18475This uses the transliterations of the Lynx browser. The display isn't 18465This uses the transliterations of the Lynx browser. The display isn't
@@ -18486,7 +18476,7 @@ use either \\[customize] or the function `latin1-display'.")
18486(autoload 'ld-script-mode "ld-script" "\ 18476(autoload 'ld-script-mode "ld-script" "\
18487A major mode to edit GNU ld script files. 18477A major mode to edit GNU ld script files.
18488 18478
18489(fn)" t nil) 18479(fn)" t)
18490(register-definition-prefixes "ld-script" '("ld-script-")) 18480(register-definition-prefixes "ld-script" '("ld-script-"))
18491 18481
18492 18482
@@ -18512,7 +18502,7 @@ Major mode for editing Less files (http://lesscss.org/).
18512Special commands: 18502Special commands:
18513\\{less-css-mode-map} 18503\\{less-css-mode-map}
18514 18504
18515(fn)" t nil) 18505(fn)" t)
18516(register-definition-prefixes "less-css-mode" '("less-css-")) 18506(register-definition-prefixes "less-css-mode" '("less-css-"))
18517 18507
18518 18508
@@ -18575,7 +18565,7 @@ generations (the default is `life-step-time').
18575When called from Lisp, optional argument STEP-TIME is the time to 18565When called from Lisp, optional argument STEP-TIME is the time to
18576sleep in seconds. 18566sleep in seconds.
18577 18567
18578(fn &optional STEP-TIME)" t nil) 18568(fn &optional STEP-TIME)" t)
18579(register-definition-prefixes "life" '("life-")) 18569(register-definition-prefixes "life" '("life-"))
18580 18570
18581 18571
@@ -18604,7 +18594,7 @@ evaluate `linum-mode'.
18604The mode's hook is called both when the mode is enabled and when 18594The mode's hook is called both when the mode is enabled and when
18605it is disabled. 18595it is disabled.
18606 18596
18607(fn &optional ARG)" t nil) 18597(fn &optional ARG)" t)
18608(put 'global-linum-mode 'globalized-minor-mode t) 18598(put 'global-linum-mode 'globalized-minor-mode t)
18609(defvar global-linum-mode nil "\ 18599(defvar global-linum-mode nil "\
18610Non-nil if Global Linum mode is enabled. 18600Non-nil if Global Linum mode is enabled.
@@ -18627,7 +18617,7 @@ Linum mode is enabled in all buffers where `linum-on' would do it.
18627 18617
18628See `linum-mode' for more information on Linum mode. 18618See `linum-mode' for more information on Linum mode.
18629 18619
18630(fn &optional ARG)" t nil) 18620(fn &optional ARG)" t)
18631(register-definition-prefixes "linum" '("linum-")) 18621(register-definition-prefixes "linum" '("linum-"))
18632 18622
18633 18623
@@ -18659,24 +18649,30 @@ binds `generated-autoload-file' as a file-local variable, write
18659its autoloads into the specified file instead. 18649its autoloads into the specified file instead.
18660 18650
18661The function does NOT recursively descend into subdirectories of the 18651The function does NOT recursively descend into subdirectories of the
18662directory or directories specified. 18652directory or directories specified by DIRS.
18663 18653
18664If EXTRA-DATA, include this string at the start of the generated 18654Optional argument EXCLUDED-FILES, if non-nil, should be a list of
18665file. This will also force generation of OUTPUT-FILE even if 18655files, such as preloaded files, whose autoloads should not be written
18666there are no autoloads to put into the file. 18656to OUTPUT-FILE.
18667 18657
18668If INCLUDE-PACKAGE-VERSION, include package version data. 18658If EXTRA-DATA is non-nil, it should be a string; include that string
18659at the beginning of the generated file. This will also force the
18660generation of OUTPUT-FILE even if there are no autoloads to put into
18661that file.
18669 18662
18670If GENERATE-FULL, don't update, but regenerate all the loaddefs files. 18663If INCLUDE-PACKAGE-VERSION is non-nil, include package version data.
18671 18664
18672(fn DIR OUTPUT-FILE &optional EXCLUDED-FILES EXTRA-DATA INCLUDE-PACKAGE-VERSION GENERATE-FULL)" nil nil) 18665If GENERATE-FULL is non-nil, regenerate all the loaddefs files anew,
18666instead of just updating them with the new/changed autoloads.
18667
18668(fn DIR OUTPUT-FILE &optional EXCLUDED-FILES EXTRA-DATA INCLUDE-PACKAGE-VERSION GENERATE-FULL)")
18673(autoload 'loaddefs-generate-batch "loaddefs-gen" "\ 18669(autoload 'loaddefs-generate-batch "loaddefs-gen" "\
18674Generate loaddefs.el files in batch mode. 18670Generate loaddefs.el files in batch mode.
18675This scans for ;;;###autoload forms and related things. 18671This scans for ;;;###autoload forms and related things.
18676 18672
18677The first element on the command line should be the (main) 18673The first element on the command line should be the (main)
18678loaddefs.el output file, and the rest are the directories to 18674loaddefs.el output file, and the rest are the directories to
18679use." nil nil) 18675use.")
18680(register-definition-prefixes "loaddefs-gen" '("autoload-" "generated-autoload-" "loaddefs-generate--" "no-update-autoloads")) 18676(register-definition-prefixes "loaddefs-gen" '("autoload-" "generated-autoload-" "loaddefs-generate--" "no-update-autoloads"))
18681 18677
18682 18678
@@ -18705,7 +18701,7 @@ definitions in the variable `unload-function-defs-list' and could
18705remove symbols from it in the event that the package has done 18701remove symbols from it in the event that the package has done
18706something strange, such as redefining an Emacs function. 18702something strange, such as redefining an Emacs function.
18707 18703
18708(fn FEATURE &optional FORCE)" t nil) 18704(fn FEATURE &optional FORCE)" t)
18709(register-definition-prefixes "loadhist" '("feature-" "file-" "loadhist-" "read-feature" "unload-")) 18705(register-definition-prefixes "loadhist" '("feature-" "file-" "loadhist-" "read-feature" "unload-"))
18710 18706
18711 18707
@@ -18742,7 +18738,7 @@ the docstring of that function for its meaning.
18742After preparing the results buffer, this runs `dired-mode-hook' and 18738After preparing the results buffer, this runs `dired-mode-hook' and
18743then `locate-post-command-hook'. 18739then `locate-post-command-hook'.
18744 18740
18745(fn SEARCH-STRING &optional FILTER ARG)" t nil) 18741(fn SEARCH-STRING &optional FILTER ARG)" t)
18746(autoload 'locate-with-filter "locate" "\ 18742(autoload 'locate-with-filter "locate" "\
18747Run the executable program `locate' with a filter. 18743Run the executable program `locate' with a filter.
18748This function is similar to the function `locate', which see. 18744This function is similar to the function `locate', which see.
@@ -18758,7 +18754,7 @@ ARG is the interactive prefix arg, which has the same effect as in `locate'.
18758When called from Lisp, this function is identical with `locate', 18754When called from Lisp, this function is identical with `locate',
18759except that FILTER is not optional. 18755except that FILTER is not optional.
18760 18756
18761(fn SEARCH-STRING FILTER &optional ARG)" t nil) 18757(fn SEARCH-STRING FILTER &optional ARG)" t)
18762(register-definition-prefixes "locate" '("locate-")) 18758(register-definition-prefixes "locate" '("locate-"))
18763 18759
18764 18760
@@ -18788,7 +18784,7 @@ If BUFFER is non-nil, `log-edit' will switch to that buffer, use it
18788to edit the log message and go back to the current buffer when 18784to edit the log message and go back to the current buffer when
18789done. Otherwise, this function will use the current buffer. 18785done. Otherwise, this function will use the current buffer.
18790 18786
18791(fn CALLBACK &optional SETUP PARAMS BUFFER MODE &rest IGNORE)" nil nil) 18787(fn CALLBACK &optional SETUP PARAMS BUFFER MODE &rest IGNORE)")
18792(register-definition-prefixes "log-edit" '("log-edit-")) 18788(register-definition-prefixes "log-edit" '("log-edit-"))
18793 18789
18794 18790
@@ -18797,7 +18793,7 @@ done. Otherwise, this function will use the current buffer.
18797(autoload 'log-view-mode "log-view" "\ 18793(autoload 'log-view-mode "log-view" "\
18798Major mode for browsing CVS log output. 18794Major mode for browsing CVS log output.
18799 18795
18800(fn)" t nil) 18796(fn)" t)
18801(register-definition-prefixes "log-view" '("log-view-")) 18797(register-definition-prefixes "log-view" '("log-view-"))
18802 18798
18803 18799
@@ -18842,7 +18838,7 @@ argument.")
18842(autoload 'lpr-buffer "lpr" "\ 18838(autoload 'lpr-buffer "lpr" "\
18843Print buffer contents without pagination or page headers. 18839Print buffer contents without pagination or page headers.
18844See the variables `lpr-switches' and `lpr-command' 18840See the variables `lpr-switches' and `lpr-command'
18845for customization of the printer command." t nil) 18841for customization of the printer command." t)
18846(autoload 'print-buffer "lpr" "\ 18842(autoload 'print-buffer "lpr" "\
18847Paginate and print buffer contents. 18843Paginate and print buffer contents.
18848 18844
@@ -18855,13 +18851,13 @@ Otherwise, the switches in `lpr-headers-switches' are used
18855in the print command itself; we expect them to request pagination. 18851in the print command itself; we expect them to request pagination.
18856 18852
18857See the variables `lpr-switches' and `lpr-command' 18853See the variables `lpr-switches' and `lpr-command'
18858for further customization of the printer command." t nil) 18854for further customization of the printer command." t)
18859(autoload 'lpr-region "lpr" "\ 18855(autoload 'lpr-region "lpr" "\
18860Print region contents without pagination or page headers. 18856Print region contents without pagination or page headers.
18861See the variables `lpr-switches' and `lpr-command' 18857See the variables `lpr-switches' and `lpr-command'
18862for customization of the printer command. 18858for customization of the printer command.
18863 18859
18864(fn START END)" t nil) 18860(fn START END)" t)
18865(autoload 'print-region "lpr" "\ 18861(autoload 'print-region "lpr" "\
18866Paginate and print the region contents. 18862Paginate and print the region contents.
18867 18863
@@ -18876,7 +18872,7 @@ in the print command itself; we expect them to request pagination.
18876See the variables `lpr-switches' and `lpr-command' 18872See the variables `lpr-switches' and `lpr-command'
18877for further customization of the printer command. 18873for further customization of the printer command.
18878 18874
18879(fn START END)" t nil) 18875(fn START END)" t)
18880(register-definition-prefixes "lpr" '("lpr-" "print")) 18876(register-definition-prefixes "lpr" '("lpr-" "print"))
18881 18877
18882 18878
@@ -18901,7 +18897,7 @@ Display the quarters of the moon for last month, this month, and next month.
18901If called with an optional prefix argument ARG, prompts for month and year. 18897If called with an optional prefix argument ARG, prompts for month and year.
18902This function is suitable for execution in an init file. 18898This function is suitable for execution in an init file.
18903 18899
18904(fn &optional ARG)" t nil) 18900(fn &optional ARG)" t)
18905(register-definition-prefixes "lunar" '("calendar-lunar-phases" "diary-lunar-phases" "eclipse-check" "lunar-")) 18901(register-definition-prefixes "lunar" '("calendar-lunar-phases" "diary-lunar-phases" "eclipse-check" "lunar-"))
18906 18902
18907 18903
@@ -18910,7 +18906,7 @@ This function is suitable for execution in an init file.
18910(autoload 'm4-mode "m4-mode" "\ 18906(autoload 'm4-mode "m4-mode" "\
18911A major mode to edit m4 macro files. 18907A major mode to edit m4 macro files.
18912 18908
18913(fn)" t nil) 18909(fn)" t)
18914(register-definition-prefixes "m4-mode" '("m4-")) 18910(register-definition-prefixes "m4-mode" '("m4-"))
18915 18911
18916 18912
@@ -18932,7 +18928,7 @@ bindings.
18932To save a kbd macro, visit a file of Lisp code such as your `~/.emacs', 18928To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
18933use this command, and then save the file. 18929use this command, and then save the file.
18934 18930
18935(fn MACRONAME &optional KEYS)" t nil) 18931(fn MACRONAME &optional KEYS)" t)
18936(autoload 'kbd-macro-query "macros" "\ 18932(autoload 'kbd-macro-query "macros" "\
18937Query user during kbd macro execution. 18933Query user during kbd macro execution.
18938 18934
@@ -18951,7 +18947,7 @@ Your options are: \\<query-replace-map>
18951\\[recenter] Redisplay the screen, then ask again. 18947\\[recenter] Redisplay the screen, then ask again.
18952\\[edit] Enter recursive edit; ask again when you exit from that. 18948\\[edit] Enter recursive edit; ask again when you exit from that.
18953 18949
18954(fn FLAG)" t nil) 18950(fn FLAG)" t)
18955(autoload 'apply-macro-to-region-lines "macros" "\ 18951(autoload 'apply-macro-to-region-lines "macros" "\
18956Apply last keyboard macro to all lines in the region. 18952Apply last keyboard macro to all lines in the region.
18957For each line that begins in the region, move to the beginning of 18953For each line that begins in the region, move to the beginning of
@@ -18993,7 +18989,7 @@ and write a macro to massage a word into a table entry:
18993and then select the region of un-tablified names and use 18989and then select the region of un-tablified names and use
18994`\\[apply-macro-to-region-lines]' to build the table from the names. 18990`\\[apply-macro-to-region-lines]' to build the table from the names.
18995 18991
18996(fn TOP BOTTOM &optional MACRO)" t nil) 18992(fn TOP BOTTOM &optional MACRO)" t)
18997 (define-key ctl-x-map "q" 'kbd-macro-query) 18993 (define-key ctl-x-map "q" 'kbd-macro-query)
18998(register-definition-prefixes "macros" '("macro")) 18994(register-definition-prefixes "macros" '("macro"))
18999 18995
@@ -19028,19 +19024,19 @@ non-display use, you should probably use
19028than `mail-header-parse-address', but does less post-processing 19024than `mail-header-parse-address', but does less post-processing
19029to the results. 19025to the results.
19030 19026
19031(fn ADDRESS &optional ALL)" nil nil) 19027(fn ADDRESS &optional ALL)")
19032(autoload 'what-domain "mail-extr" "\ 19028(autoload 'what-domain "mail-extr" "\
19033Convert mail domain DOMAIN to the country it corresponds to. 19029Convert mail domain DOMAIN to the country it corresponds to.
19034 19030
19035(fn DOMAIN)" t nil) 19031(fn DOMAIN)" t)
19036(register-definition-prefixes "mail-extr" '("mail-extr-")) 19032(register-definition-prefixes "mail-extr" '("mail-extr-"))
19037 19033
19038 19034
19039;;; Generated autoloads from mail/mail-hist.el 19035;;; Generated autoloads from mail/mail-hist.el
19040 19036
19041(autoload 'mail-hist-define-keys "mail-hist" "\ 19037(autoload 'mail-hist-define-keys "mail-hist" "\
19042Define keys for accessing mail header history. For use in hooks." nil nil) 19038Define keys for accessing mail header history. For use in hooks.")
19043(autoload 'mail-hist-enable "mail-hist" nil nil nil) 19039(autoload 'mail-hist-enable "mail-hist")
19044(defvar mail-hist-keep-history t "\ 19040(defvar mail-hist-keep-history t "\
19045Non-nil means keep a history for headers and text of outgoing mail.") 19041Non-nil means keep a history for headers and text of outgoing mail.")
19046(custom-autoload 'mail-hist-keep-history "mail-hist" t) 19042(custom-autoload 'mail-hist-keep-history "mail-hist" t)
@@ -19049,7 +19045,7 @@ Put headers and contents of this message into mail header history.
19049Each header has its own independent history, as does the body of the 19045Each header has its own independent history, as does the body of the
19050message. 19046message.
19051 19047
19052This function normally would be called when the message is sent." nil nil) 19048This function normally would be called when the message is sent.")
19053(register-definition-prefixes "mail-hist" '("mail-hist-")) 19049(register-definition-prefixes "mail-hist" '("mail-hist-"))
19054 19050
19055 19051
@@ -19086,7 +19082,7 @@ also the To field, unless this would leave an empty To field.")
19086(autoload 'mail-file-babyl-p "mail-utils" "\ 19082(autoload 'mail-file-babyl-p "mail-utils" "\
19087Return non-nil if FILE is a Babyl file. 19083Return non-nil if FILE is a Babyl file.
19088 19084
19089(fn FILE)" nil nil) 19085(fn FILE)")
19090(autoload 'mail-quote-printable "mail-utils" "\ 19086(autoload 'mail-quote-printable "mail-utils" "\
19091Convert a string to the \"quoted printable\" Q encoding if necessary. 19087Convert a string to the \"quoted printable\" Q encoding if necessary.
19092If the string contains only ASCII characters and no troublesome ones, 19088If the string contains only ASCII characters and no troublesome ones,
@@ -19095,19 +19091,19 @@ we return it unconverted.
19095If the optional argument WRAPPER is non-nil, 19091If the optional argument WRAPPER is non-nil,
19096we add the wrapper characters =?ISO-8859-1?Q?....?=. 19092we add the wrapper characters =?ISO-8859-1?Q?....?=.
19097 19093
19098(fn STRING &optional WRAPPER)" nil nil) 19094(fn STRING &optional WRAPPER)")
19099(autoload 'mail-quote-printable-region "mail-utils" "\ 19095(autoload 'mail-quote-printable-region "mail-utils" "\
19100Convert the region to the \"quoted printable\" Q encoding. 19096Convert the region to the \"quoted printable\" Q encoding.
19101If the optional argument WRAPPER is non-nil, 19097If the optional argument WRAPPER is non-nil,
19102we add the wrapper characters =?ISO-8859-1?Q?....?=. 19098we add the wrapper characters =?ISO-8859-1?Q?....?=.
19103 19099
19104(fn BEG END &optional WRAPPER)" t nil) 19100(fn BEG END &optional WRAPPER)" t)
19105(autoload 'mail-unquote-printable "mail-utils" "\ 19101(autoload 'mail-unquote-printable "mail-utils" "\
19106Undo the \"quoted printable\" encoding. 19102Undo the \"quoted printable\" encoding.
19107If the optional argument WRAPPER is non-nil, 19103If the optional argument WRAPPER is non-nil,
19108we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=. 19104we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=.
19109 19105
19110(fn STRING &optional WRAPPER)" nil nil) 19106(fn STRING &optional WRAPPER)")
19111(autoload 'mail-unquote-printable-region "mail-utils" "\ 19107(autoload 'mail-unquote-printable-region "mail-utils" "\
19112Undo the \"quoted printable\" encoding in buffer from BEG to END. 19108Undo the \"quoted printable\" encoding in buffer from BEG to END.
19113If the optional argument WRAPPER is non-nil, 19109If the optional argument WRAPPER is non-nil,
@@ -19119,7 +19115,7 @@ If UNIBYTE is non-nil, insert converted characters as unibyte.
19119That is useful if you are going to character code decoding afterward, 19115That is useful if you are going to character code decoding afterward,
19120as Rmail does. 19116as Rmail does.
19121 19117
19122(fn BEG END &optional WRAPPER NOERROR UNIBYTE)" t nil) 19118(fn BEG END &optional WRAPPER NOERROR UNIBYTE)" t)
19123(autoload 'mail-fetch-field "mail-utils" "\ 19119(autoload 'mail-fetch-field "mail-utils" "\
19124Return the value of the header field whose type is FIELD-NAME. 19120Return the value of the header field whose type is FIELD-NAME.
19125If second arg LAST is non-nil, use the last field of type FIELD-NAME. 19121If second arg LAST is non-nil, use the last field of type FIELD-NAME.
@@ -19130,7 +19126,7 @@ included in the result.
19130The buffer should be narrowed to just the header, else false 19126The buffer should be narrowed to just the header, else false
19131matches may be returned from the message body. 19127matches may be returned from the message body.
19132 19128
19133(fn FIELD-NAME &optional LAST ALL LIST DELETE)" nil nil) 19129(fn FIELD-NAME &optional LAST ALL LIST DELETE)")
19134(register-definition-prefixes "mail-utils" '("mail-")) 19130(register-definition-prefixes "mail-utils" '("mail-"))
19135 19131
19136 19132
@@ -19166,14 +19162,14 @@ evaluate `(default-value \\='mail-abbrevs-mode)'.
19166The mode's hook is called both when the mode is enabled and when 19162The mode's hook is called both when the mode is enabled and when
19167it is disabled. 19163it is disabled.
19168 19164
19169(fn &optional ARG)" t nil) 19165(fn &optional ARG)" t)
19170(autoload 'mail-abbrevs-setup "mailabbrev" "\ 19166(autoload 'mail-abbrevs-setup "mailabbrev" "\
19171Initialize use of the `mailabbrev' package." nil nil) 19167Initialize use of the `mailabbrev' package.")
19172(autoload 'build-mail-abbrevs "mailabbrev" "\ 19168(autoload 'build-mail-abbrevs "mailabbrev" "\
19173Read mail aliases from personal mail alias file and set `mail-abbrevs'. 19169Read mail aliases from personal mail alias file and set `mail-abbrevs'.
19174By default this is the file specified by `mail-personal-alias-file'. 19170By default this is the file specified by `mail-personal-alias-file'.
19175 19171
19176(fn &optional FILE RECURSIVEP)" nil nil) 19172(fn &optional FILE RECURSIVEP)")
19177(autoload 'define-mail-abbrev "mailabbrev" "\ 19173(autoload 'define-mail-abbrev "mailabbrev" "\
19178Define NAME as a mail alias abbrev that translates to DEFINITION. 19174Define NAME as a mail alias abbrev that translates to DEFINITION.
19179If DEFINITION contains multiple addresses, separate them with commas. 19175If DEFINITION contains multiple addresses, separate them with commas.
@@ -19183,7 +19179,7 @@ from a mailrc file. In that case, addresses are separated with
19183spaces and addresses with embedded spaces are surrounded by 19179spaces and addresses with embedded spaces are surrounded by
19184double-quotes. 19180double-quotes.
19185 19181
19186(fn NAME DEFINITION &optional FROM-MAILRC-FILE)" t nil) 19182(fn NAME DEFINITION &optional FROM-MAILRC-FILE)" t)
19187(register-definition-prefixes "mailabbrev" '("mail-" "merge-mail-abbrevs" "rebuild-mail-abbrevs")) 19183(register-definition-prefixes "mailabbrev" '("mail-" "merge-mail-abbrevs" "rebuild-mail-abbrevs"))
19188 19184
19189 19185
@@ -19207,7 +19203,7 @@ their `Resent-' variants.
19207Optional second arg EXCLUDE may be a regular expression defining text to be 19203Optional second arg EXCLUDE may be a regular expression defining text to be
19208removed from alias expansions. 19204removed from alias expansions.
19209 19205
19210(fn BEG END &optional EXCLUDE)" t nil) 19206(fn BEG END &optional EXCLUDE)" t)
19211(autoload 'define-mail-alias "mailalias" "\ 19207(autoload 'define-mail-alias "mailalias" "\
19212Define NAME as a mail alias that translates to DEFINITION. 19208Define NAME as a mail alias that translates to DEFINITION.
19213This means that sending a message to NAME will actually send to DEFINITION. 19209This means that sending a message to NAME will actually send to DEFINITION.
@@ -19217,10 +19213,10 @@ If FROM-MAILRC-FILE is non-nil, then addresses in DEFINITION
19217can be separated by spaces; an address can contain spaces 19213can be separated by spaces; an address can contain spaces
19218if it is quoted with double-quotes. 19214if it is quoted with double-quotes.
19219 19215
19220(fn NAME DEFINITION &optional FROM-MAILRC-FILE)" t nil) 19216(fn NAME DEFINITION &optional FROM-MAILRC-FILE)" t)
19221(autoload 'mail-completion-at-point-function "mailalias" "\ 19217(autoload 'mail-completion-at-point-function "mailalias" "\
19222Compute completion data for mail aliases. 19218Compute completion data for mail aliases.
19223For use on `completion-at-point-functions'." nil nil) 19219For use on `completion-at-point-functions'.")
19224(register-definition-prefixes "mailalias" '("build-mail-aliases" "mail-")) 19220(register-definition-prefixes "mailalias" '("build-mail-aliases" "mail-"))
19225 19221
19226 19222
@@ -19230,7 +19226,7 @@ For use on `completion-at-point-functions'." nil nil)
19230Return a file name extension based on a MIME-TYPE. 19226Return a file name extension based on a MIME-TYPE.
19231For instance, `image/png' will result in `png'. 19227For instance, `image/png' will result in `png'.
19232 19228
19233(fn MIME-TYPE)" nil nil) 19229(fn MIME-TYPE)")
19234(register-definition-prefixes "mailcap" '("mailcap-")) 19230(register-definition-prefixes "mailcap" '("mailcap-"))
19235 19231
19236 19232
@@ -19239,7 +19235,7 @@ For instance, `image/png' will result in `png'.
19239(autoload 'mailclient-send-it "mailclient" "\ 19235(autoload 'mailclient-send-it "mailclient" "\
19240Pass current buffer on to the system's mail client. 19236Pass current buffer on to the system's mail client.
19241Suitable value for `send-mail-function'. 19237Suitable value for `send-mail-function'.
19242The mail client is taken to be the handler of mailto URLs." nil nil) 19238The mail client is taken to be the handler of mailto URLs.")
19243(register-definition-prefixes "mailclient" '("mailclient-")) 19239(register-definition-prefixes "mailclient" '("mailclient-"))
19244 19240
19245 19241
@@ -19255,36 +19251,36 @@ Call Mairix with SEARCH.
19255If THREADS is non-nil, also display whole threads of found 19251If THREADS is non-nil, also display whole threads of found
19256messages. Results will be put into the default search file. 19252messages. Results will be put into the default search file.
19257 19253
19258(fn SEARCH THREADS)" t nil) 19254(fn SEARCH THREADS)" t)
19259(autoload 'mairix-use-saved-search "mairix" "\ 19255(autoload 'mairix-use-saved-search "mairix" "\
19260Use a saved search for querying Mairix." t nil) 19256Use a saved search for querying Mairix." t)
19261(autoload 'mairix-edit-saved-searches-customize "mairix" "\ 19257(autoload 'mairix-edit-saved-searches-customize "mairix" "\
19262Edit the list of saved searches in a customization buffer." t nil) 19258Edit the list of saved searches in a customization buffer." t)
19263(autoload 'mairix-search-from-this-article "mairix" "\ 19259(autoload 'mairix-search-from-this-article "mairix" "\
19264Search messages from sender of the current article. 19260Search messages from sender of the current article.
19265This is effectively a shortcut for calling `mairix-search' with 19261This is effectively a shortcut for calling `mairix-search' with
19266f:current_from. If prefix THREADS is non-nil, include whole 19262f:current_from. If prefix THREADS is non-nil, include whole
19267threads. 19263threads.
19268 19264
19269(fn THREADS)" t nil) 19265(fn THREADS)" t)
19270(autoload 'mairix-search-thread-this-article "mairix" "\ 19266(autoload 'mairix-search-thread-this-article "mairix" "\
19271Search thread for the current article. 19267Search thread for the current article.
19272This is effectively a shortcut for calling `mairix-search' 19268This is effectively a shortcut for calling `mairix-search'
19273with m:msgid of the current article and enabled threads." t nil) 19269with m:msgid of the current article and enabled threads." t)
19274(autoload 'mairix-widget-search-based-on-article "mairix" "\ 19270(autoload 'mairix-widget-search-based-on-article "mairix" "\
19275Create mairix query based on current article using widgets." t nil) 19271Create mairix query based on current article using widgets." t)
19276(autoload 'mairix-edit-saved-searches "mairix" "\ 19272(autoload 'mairix-edit-saved-searches "mairix" "\
19277Edit current mairix searches." t nil) 19273Edit current mairix searches." t)
19278(autoload 'mairix-widget-search "mairix" "\ 19274(autoload 'mairix-widget-search "mairix" "\
19279Create mairix query interactively using graphical widgets. 19275Create mairix query interactively using graphical widgets.
19280MVALUES may contain values from current article. 19276MVALUES may contain values from current article.
19281 19277
19282(fn &optional MVALUES)" t nil) 19278(fn &optional MVALUES)" t)
19283(autoload 'mairix-update-database "mairix" "\ 19279(autoload 'mairix-update-database "mairix" "\
19284Call mairix for updating the database for SERVERS. 19280Call mairix for updating the database for SERVERS.
19285Mairix will be called asynchronously unless 19281Mairix will be called asynchronously unless
19286`mairix-synchronous-update' is t. Mairix will be called with 19282`mairix-synchronous-update' is t. Mairix will be called with
19287`mairix-update-options'." t nil) 19283`mairix-update-options'." t)
19288(register-definition-prefixes "mairix" '("mairix-")) 19284(register-definition-prefixes "mairix" '("mairix-"))
19289 19285
19290 19286
@@ -19385,27 +19381,27 @@ Makefile mode can be configured by modifying the following variables:
19385 on one of those in the minibuffer whenever you enter a `.'. 19381 on one of those in the minibuffer whenever you enter a `.'.
19386 at the beginning of a line in Makefile mode. 19382 at the beginning of a line in Makefile mode.
19387 19383
19388(fn)" t nil) 19384(fn)" t)
19389(autoload 'makefile-automake-mode "make-mode" "\ 19385(autoload 'makefile-automake-mode "make-mode" "\
19390An adapted `makefile-mode' that knows about automake. 19386An adapted `makefile-mode' that knows about automake.
19391 19387
19392(fn)" t nil) 19388(fn)" t)
19393(autoload 'makefile-gmake-mode "make-mode" "\ 19389(autoload 'makefile-gmake-mode "make-mode" "\
19394An adapted `makefile-mode' that knows about gmake. 19390An adapted `makefile-mode' that knows about gmake.
19395 19391
19396(fn)" t nil) 19392(fn)" t)
19397(autoload 'makefile-makepp-mode "make-mode" "\ 19393(autoload 'makefile-makepp-mode "make-mode" "\
19398An adapted `makefile-mode' that knows about makepp. 19394An adapted `makefile-mode' that knows about makepp.
19399 19395
19400(fn)" t nil) 19396(fn)" t)
19401(autoload 'makefile-bsdmake-mode "make-mode" "\ 19397(autoload 'makefile-bsdmake-mode "make-mode" "\
19402An adapted `makefile-mode' that knows about BSD make. 19398An adapted `makefile-mode' that knows about BSD make.
19403 19399
19404(fn)" t nil) 19400(fn)" t)
19405(autoload 'makefile-imake-mode "make-mode" "\ 19401(autoload 'makefile-imake-mode "make-mode" "\
19406An adapted `makefile-mode' that knows about imake. 19402An adapted `makefile-mode' that knows about imake.
19407 19403
19408(fn)" t nil) 19404(fn)" t)
19409(register-definition-prefixes "make-mode" '("makefile-")) 19405(register-definition-prefixes "make-mode" '("makefile-"))
19410 19406
19411 19407
@@ -19419,14 +19415,6 @@ An adapted `makefile-mode' that knows about imake.
19419(register-definition-prefixes "makeinfo" '("makeinfo-")) 19415(register-definition-prefixes "makeinfo" '("makeinfo-"))
19420 19416
19421 19417
19422;;; Generated autoloads from makesum.el
19423
19424(autoload 'make-command-summary "makesum" "\
19425Make a summary of current key bindings in the buffer *Summary*.
19426Previous contents of that buffer are killed first." t nil)
19427(register-definition-prefixes "makesum" '("double-column"))
19428
19429
19430;;; Generated autoloads from man.el 19418;;; Generated autoloads from man.el
19431 19419
19432(defalias 'manual-entry 'man) 19420(defalias 'manual-entry 'man)
@@ -19471,19 +19459,19 @@ Note that in some cases you will need to use \\[quoted-insert] to quote the
19471SPC character in the above examples, because this command attempts 19459SPC character in the above examples, because this command attempts
19472to auto-complete your input based on the installed manual pages. 19460to auto-complete your input based on the installed manual pages.
19473 19461
19474(fn MAN-ARGS)" t nil) 19462(fn MAN-ARGS)" t)
19475(autoload 'man-follow "man" "\ 19463(autoload 'man-follow "man" "\
19476Get a Un*x manual page of the item under point and put it in a buffer. 19464Get a Un*x manual page of the item under point and put it in a buffer.
19477 19465
19478(fn MAN-ARGS)" '(man-common) nil) 19466(fn MAN-ARGS)" '(man-common))
19479(autoload 'Man-bookmark-jump "man" "\ 19467(autoload 'Man-bookmark-jump "man" "\
19480Default bookmark handler for Man buffers. 19468Default bookmark handler for Man buffers.
19481 19469
19482(fn BOOKMARK)" nil nil) 19470(fn BOOKMARK)")
19483(autoload 'Man-context-menu "man" "\ 19471(autoload 'Man-context-menu "man" "\
19484Populate MENU with commands that open a man page at point. 19472Populate MENU with commands that open a man page at point.
19485 19473
19486(fn MENU CLICK)" nil nil) 19474(fn MENU CLICK)")
19487(register-definition-prefixes "man" '("Man-" "man")) 19475(register-definition-prefixes "man" '("Man-" "man"))
19488 19476
19489 19477
@@ -19526,7 +19514,7 @@ evaluate `master-mode'.
19526The mode's hook is called both when the mode is enabled and when 19514The mode's hook is called both when the mode is enabled and when
19527it is disabled. 19515it is disabled.
19528 19516
19529(fn &optional ARG)" t nil) 19517(fn &optional ARG)" t)
19530(register-definition-prefixes "master" '("master-")) 19518(register-definition-prefixes "master" '("master-"))
19531 19519
19532 19520
@@ -19563,7 +19551,7 @@ evaluate `(default-value \\='minibuffer-depth-indicate-mode)'.
19563The mode's hook is called both when the mode is enabled and when 19551The mode's hook is called both when the mode is enabled and when
19564it is disabled. 19552it is disabled.
19565 19553
19566(fn &optional ARG)" t nil) 19554(fn &optional ARG)" t)
19567(register-definition-prefixes "mb-depth" '("minibuffer-depth-")) 19555(register-definition-prefixes "mb-depth" '("minibuffer-depth-"))
19568 19556
19569 19557
@@ -19579,7 +19567,7 @@ Generate a report of how Emacs is using memory.
19579 19567
19580This report is approximate, and will commonly over-count memory 19568This report is approximate, and will commonly over-count memory
19581usage by variables, because shared data structures will usually 19569usage by variables, because shared data structures will usually
19582by counted more than once." t nil) 19570by counted more than once." t)
19583(register-definition-prefixes "memory-report" '("memory-report-")) 19571(register-definition-prefixes "memory-report" '("memory-report-"))
19584 19572
19585 19573
@@ -19592,96 +19580,96 @@ Like `text-mode', but with these additional commands:
19592 19580
19593\\{message-mode-map} 19581\\{message-mode-map}
19594 19582
19595(fn)" t nil) 19583(fn)" t)
19596(autoload 'message-mail "message" "\ 19584(autoload 'message-mail "message" "\
19597Start editing a mail message to be sent. 19585Start editing a mail message to be sent.
19598OTHER-HEADERS is an alist of header/value pairs. CONTINUE says whether 19586OTHER-HEADERS is an alist of header/value pairs. CONTINUE says whether
19599to continue editing a message already being composed. SWITCH-FUNCTION 19587to continue editing a message already being composed. SWITCH-FUNCTION
19600is a function used to switch to and display the mail buffer. 19588is a function used to switch to and display the mail buffer.
19601 19589
19602(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS RETURN-ACTION &rest _)" t nil) 19590(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS RETURN-ACTION &rest _)" t)
19603(autoload 'message-news "message" "\ 19591(autoload 'message-news "message" "\
19604Start editing a news article to be sent. 19592Start editing a news article to be sent.
19605 19593
19606(fn &optional NEWSGROUPS SUBJECT)" t nil) 19594(fn &optional NEWSGROUPS SUBJECT)" t)
19607(autoload 'message-reply "message" "\ 19595(autoload 'message-reply "message" "\
19608Start editing a reply to the article in the current buffer. 19596Start editing a reply to the article in the current buffer.
19609 19597
19610(fn &optional TO-ADDRESS WIDE SWITCH-FUNCTION)" t nil) 19598(fn &optional TO-ADDRESS WIDE SWITCH-FUNCTION)" t)
19611(autoload 'message-wide-reply "message" "\ 19599(autoload 'message-wide-reply "message" "\
19612Make a \"wide\" reply to the message in the current buffer. 19600Make a \"wide\" reply to the message in the current buffer.
19613 19601
19614(fn &optional TO-ADDRESS)" t nil) 19602(fn &optional TO-ADDRESS)" t)
19615(autoload 'message-followup "message" "\ 19603(autoload 'message-followup "message" "\
19616Follow up to the message in the current buffer. 19604Follow up to the message in the current buffer.
19617If TO-NEWSGROUPS, use that as the new Newsgroups line. 19605If TO-NEWSGROUPS, use that as the new Newsgroups line.
19618 19606
19619(fn &optional TO-NEWSGROUPS)" t nil) 19607(fn &optional TO-NEWSGROUPS)" t)
19620(autoload 'message-cancel-news "message" "\ 19608(autoload 'message-cancel-news "message" "\
19621Cancel an article you posted. 19609Cancel an article you posted.
19622If ARG, allow editing of the cancellation message. 19610If ARG, allow editing of the cancellation message.
19623 19611
19624(fn &optional ARG)" t nil) 19612(fn &optional ARG)" t)
19625(autoload 'message-supersede "message" "\ 19613(autoload 'message-supersede "message" "\
19626Start composing a message to supersede the current message. 19614Start composing a message to supersede the current message.
19627This is done simply by taking the old article and adding a Supersedes 19615This is done simply by taking the old article and adding a Supersedes
19628header line with the old Message-ID." t nil) 19616header line with the old Message-ID." t)
19629(autoload 'message-recover "message" "\ 19617(autoload 'message-recover "message" "\
19630Reread contents of current buffer from its last auto-save file." t nil) 19618Reread contents of current buffer from its last auto-save file." t)
19631(autoload 'message-forward "message" "\ 19619(autoload 'message-forward "message" "\
19632Forward the current message via mail. 19620Forward the current message via mail.
19633Optional NEWS will use news to forward instead of mail. 19621Optional NEWS will use news to forward instead of mail.
19634Optional DIGEST will use digest to forward. 19622Optional DIGEST will use digest to forward.
19635 19623
19636(fn &optional NEWS DIGEST)" t nil) 19624(fn &optional NEWS DIGEST)" t)
19637(autoload 'message-forward-make-body "message" "\ 19625(autoload 'message-forward-make-body "message" "\
19638 19626
19639 19627
19640(fn FORWARD-BUFFER &optional DIGEST)" nil nil) 19628(fn FORWARD-BUFFER &optional DIGEST)")
19641(autoload 'message-forward-rmail-make-body "message" "\ 19629(autoload 'message-forward-rmail-make-body "message" "\
19642 19630
19643 19631
19644(fn FORWARD-BUFFER)" nil nil) 19632(fn FORWARD-BUFFER)")
19645(autoload 'message-insinuate-rmail "message" "\ 19633(autoload 'message-insinuate-rmail "message" "\
19646Let RMAIL use message to forward." t nil) 19634Let RMAIL use message to forward." t)
19647(autoload 'message-resend "message" "\ 19635(autoload 'message-resend "message" "\
19648Resend the current article to ADDRESS. 19636Resend the current article to ADDRESS.
19649 19637
19650(fn ADDRESS)" t nil) 19638(fn ADDRESS)" t)
19651(autoload 'message-bounce "message" "\ 19639(autoload 'message-bounce "message" "\
19652Re-mail the current message. 19640Re-mail the current message.
19653This only makes sense if the current message is a bounce message that 19641This only makes sense if the current message is a bounce message that
19654contains some mail you have written which has been bounced back to 19642contains some mail you have written which has been bounced back to
19655you." t nil) 19643you." t)
19656(autoload 'message-mail-other-window "message" "\ 19644(autoload 'message-mail-other-window "message" "\
19657Like `message-mail' command, but display mail buffer in another window. 19645Like `message-mail' command, but display mail buffer in another window.
19658 19646
19659(fn &optional TO SUBJECT)" t nil) 19647(fn &optional TO SUBJECT)" t)
19660(autoload 'message-mail-other-frame "message" "\ 19648(autoload 'message-mail-other-frame "message" "\
19661Like `message-mail' command, but display mail buffer in another frame. 19649Like `message-mail' command, but display mail buffer in another frame.
19662 19650
19663(fn &optional TO SUBJECT)" t nil) 19651(fn &optional TO SUBJECT)" t)
19664(autoload 'message-news-other-window "message" "\ 19652(autoload 'message-news-other-window "message" "\
19665Start editing a news article to be sent. 19653Start editing a news article to be sent.
19666 19654
19667(fn &optional NEWSGROUPS SUBJECT)" t nil) 19655(fn &optional NEWSGROUPS SUBJECT)" t)
19668(autoload 'message-news-other-frame "message" "\ 19656(autoload 'message-news-other-frame "message" "\
19669Start editing a news article to be sent. 19657Start editing a news article to be sent.
19670 19658
19671(fn &optional NEWSGROUPS SUBJECT)" t nil) 19659(fn &optional NEWSGROUPS SUBJECT)" t)
19672(autoload 'message-bold-region "message" "\ 19660(autoload 'message-bold-region "message" "\
19673Bold all nonblank characters in the region. 19661Bold all nonblank characters in the region.
19674Works by overstriking characters. 19662Works by overstriking characters.
19675Called from program, takes two arguments START and END 19663Called from program, takes two arguments START and END
19676which specify the range to operate on. 19664which specify the range to operate on.
19677 19665
19678(fn START END)" t nil) 19666(fn START END)" t)
19679(autoload 'message-unbold-region "message" "\ 19667(autoload 'message-unbold-region "message" "\
19680Remove all boldness (overstruck characters) in the region. 19668Remove all boldness (overstruck characters) in the region.
19681Called from program, takes two arguments START and END 19669Called from program, takes two arguments START and END
19682which specify the range to operate on. 19670which specify the range to operate on.
19683 19671
19684(fn START END)" t nil) 19672(fn START END)" t)
19685(autoload 'message-mailto "message" "\ 19673(autoload 'message-mailto "message" "\
19686Command to parse command line mailto: links. 19674Command to parse command line mailto: links.
19687This is meant to be used for MIME handlers: Setting the handler 19675This is meant to be used for MIME handlers: Setting the handler
@@ -19689,7 +19677,7 @@ for \"x-scheme-handler/mailto;\" to \"emacs -f message-mailto %u\"
19689will then start up Emacs ready to compose mail. For emacsclient use 19677will then start up Emacs ready to compose mail. For emacsclient use
19690 emacsclient -e \\='(message-mailto \"%u\")' 19678 emacsclient -e \\='(message-mailto \"%u\")'
19691 19679
19692(fn &optional URL)" t nil) 19680(fn &optional URL)" t)
19693(register-definition-prefixes "message" '("message-")) 19681(register-definition-prefixes "message" '("message-"))
19694 19682
19695 19683
@@ -19699,11 +19687,11 @@ will then start up Emacs ready to compose mail. For emacsclient use
19699(autoload 'metafont-mode "meta-mode" "\ 19687(autoload 'metafont-mode "meta-mode" "\
19700Major mode for editing Metafont sources. 19688Major mode for editing Metafont sources.
19701 19689
19702(fn)" t nil) 19690(fn)" t)
19703(autoload 'metapost-mode "meta-mode" "\ 19691(autoload 'metapost-mode "meta-mode" "\
19704Major mode for editing MetaPost sources. 19692Major mode for editing MetaPost sources.
19705 19693
19706(fn)" t nil) 19694(fn)" t)
19707(register-definition-prefixes "meta-mode" '("meta")) 19695(register-definition-prefixes "meta-mode" '("meta"))
19708 19696
19709 19697
@@ -19726,10 +19714,10 @@ Major mode for editing MetaPost sources.
19726 19714
19727(autoload 'mh-smail "mh-comp" "\ 19715(autoload 'mh-smail "mh-comp" "\
19728Compose a message with the MH mail system. 19716Compose a message with the MH mail system.
19729See `mh-send' for more details on composing mail." t nil) 19717See `mh-send' for more details on composing mail." t)
19730(autoload 'mh-smail-other-window "mh-comp" "\ 19718(autoload 'mh-smail-other-window "mh-comp" "\
19731Compose a message with the MH mail system in other window. 19719Compose a message with the MH mail system in other window.
19732See `mh-send' for more details on composing mail." t nil) 19720See `mh-send' for more details on composing mail." t)
19733(autoload 'mh-smail-batch "mh-comp" "\ 19721(autoload 'mh-smail-batch "mh-comp" "\
19734Compose a message with the MH mail system. 19722Compose a message with the MH mail system.
19735 19723
@@ -19743,7 +19731,7 @@ SUBJECT, and OTHER-HEADERS. Additional arguments are IGNORED.
19743This function remains for Emacs 21 compatibility. New 19731This function remains for Emacs 21 compatibility. New
19744applications should use `mh-user-agent-compose'. 19732applications should use `mh-user-agent-compose'.
19745 19733
19746(fn &optional TO SUBJECT OTHER-HEADERS &rest IGNORED)" nil nil) 19734(fn &optional TO SUBJECT OTHER-HEADERS &rest IGNORED)")
19747(define-mail-user-agent 'mh-e-user-agent 'mh-user-agent-compose 'mh-send-letter 'mh-fully-kill-draft 'mh-before-send-letter-hook) 19735(define-mail-user-agent 'mh-e-user-agent 'mh-user-agent-compose 'mh-send-letter 'mh-fully-kill-draft 'mh-before-send-letter-hook)
19748(autoload 'mh-user-agent-compose "mh-comp" "\ 19736(autoload 'mh-user-agent-compose "mh-comp" "\
19749Set up mail composition draft with the MH mail system. 19737Set up mail composition draft with the MH mail system.
@@ -19761,7 +19749,7 @@ are strings.
19761 19749
19762Any additional arguments are IGNORED. 19750Any additional arguments are IGNORED.
19763 19751
19764(fn &optional TO SUBJECT OTHER-HEADERS &rest IGNORED)" nil nil) 19752(fn &optional TO SUBJECT OTHER-HEADERS &rest IGNORED)")
19765(autoload 'mh-send-letter "mh-comp" "\ 19753(autoload 'mh-send-letter "mh-comp" "\
19766Save draft and send message. 19754Save draft and send message.
19767 19755
@@ -19787,22 +19775,17 @@ use `mh-send-prog' to tell MH-E the name.
19787The hook `mh-annotate-msg-hook' is run after annotating the 19775The hook `mh-annotate-msg-hook' is run after annotating the
19788message and scan line. 19776message and scan line.
19789 19777
19790(fn &optional ARG)" t nil) 19778(fn &optional ARG)" t)
19791(autoload 'mh-fully-kill-draft "mh-comp" "\ 19779(autoload 'mh-fully-kill-draft "mh-comp" "\
19792Quit editing and delete draft message. 19780Quit editing and delete draft message.
19793 19781
19794If for some reason you are not happy with the draft, you can use 19782If for some reason you are not happy with the draft, you can use
19795this command to kill the draft buffer and delete the draft 19783this command to kill the draft buffer and delete the draft
19796message. Use the command \\[kill-buffer] if you don't want to 19784message. Use the command \\[kill-buffer] if you don't want to
19797delete the draft message." t nil) 19785delete the draft message." t)
19798(register-definition-prefixes "mh-comp" '("mh-")) 19786(register-definition-prefixes "mh-comp" '("mh-"))
19799 19787
19800 19788
19801;;; Generated autoloads from mh-e/mh-compat.el
19802
19803(register-definition-prefixes "mh-compat" '("mh-"))
19804
19805
19806;;; Generated autoloads from mh-e/mh-e.el 19789;;; Generated autoloads from mh-e/mh-e.el
19807 19790
19808(push (purecopy '(mh-e 8 6 -4)) package--builtin-versions) 19791(push (purecopy '(mh-e 8 6 -4)) package--builtin-versions)
@@ -19810,7 +19793,7 @@ delete the draft message." t nil)
19810(put 'mh-lib 'risky-local-variable t) 19793(put 'mh-lib 'risky-local-variable t)
19811(put 'mh-lib-progs 'risky-local-variable t) 19794(put 'mh-lib-progs 'risky-local-variable t)
19812(autoload 'mh-version "mh-e" "\ 19795(autoload 'mh-version "mh-e" "\
19813Display version information about MH-E and the MH mail handling system." t nil) 19796Display version information about MH-E and the MH mail handling system." t)
19814(register-definition-prefixes "mh-e" '("defcustom-mh" "defface-mh" "defgroup-mh" "mh-")) 19797(register-definition-prefixes "mh-e" '("defcustom-mh" "defface-mh" "defgroup-mh" "mh-"))
19815 19798
19816 19799
@@ -19823,7 +19806,7 @@ Scan an MH folder if ARG is non-nil.
19823This function is an entry point to MH-E, the Emacs interface to 19806This function is an entry point to MH-E, the Emacs interface to
19824the MH mail system. 19807the MH mail system.
19825 19808
19826(fn &optional ARG)" t nil) 19809(fn &optional ARG)" t)
19827(autoload 'mh-nmail "mh-folder" "\ 19810(autoload 'mh-nmail "mh-folder" "\
19828Check for new mail in inbox folder. 19811Check for new mail in inbox folder.
19829Scan an MH folder if ARG is non-nil. 19812Scan an MH folder if ARG is non-nil.
@@ -19831,7 +19814,7 @@ Scan an MH folder if ARG is non-nil.
19831This function is an entry point to MH-E, the Emacs interface to 19814This function is an entry point to MH-E, the Emacs interface to
19832the MH mail system. 19815the MH mail system.
19833 19816
19834(fn &optional ARG)" t nil) 19817(fn &optional ARG)" t)
19835(autoload 'mh-folder-mode "mh-folder" "\ 19818(autoload 'mh-folder-mode "mh-folder" "\
19836Major MH-E mode for \"editing\" an MH folder scan listing.\\<mh-folder-mode-map> 19819Major MH-E mode for \"editing\" an MH folder scan listing.\\<mh-folder-mode-map>
19837 19820
@@ -19888,7 +19871,7 @@ perform the operation on all messages in that region.
19888 19871
19889\\{mh-folder-mode-map} 19872\\{mh-folder-mode-map}
19890 19873
19891(fn)" t nil) 19874(fn)" t)
19892(register-definition-prefixes "mh-folder" '("mh-")) 19875(register-definition-prefixes "mh-folder" '("mh-"))
19893 19876
19894 19877
@@ -19986,7 +19969,7 @@ Code inside a <script> element is indented using the rules from
19986`js-mode'; and code inside a <style> element is indented using 19969`js-mode'; and code inside a <style> element is indented using
19987the rules from `css-mode'. 19970the rules from `css-mode'.
19988 19971
19989(fn)" t nil) 19972(fn)" t)
19990(register-definition-prefixes "mhtml-mode" '("mhtml-")) 19973(register-definition-prefixes "mhtml-mode" '("mhtml-"))
19991 19974
19992 19975
@@ -20017,7 +20000,7 @@ evaluate `(default-value \\='midnight-mode)'.
20017The mode's hook is called both when the mode is enabled and when 20000The mode's hook is called both when the mode is enabled and when
20018it is disabled. 20001it is disabled.
20019 20002
20020(fn &optional ARG)" t nil) 20003(fn &optional ARG)" t)
20021(autoload 'clean-buffer-list "midnight" "\ 20004(autoload 'clean-buffer-list "midnight" "\
20022Kill old buffers that have not been displayed recently. 20005Kill old buffers that have not been displayed recently.
20023The relevant variables are `clean-buffer-list-delay-general', 20006The relevant variables are `clean-buffer-list-delay-general',
@@ -20028,13 +20011,13 @@ The relevant variables are `clean-buffer-list-delay-general',
20028While processing buffers, this procedure displays messages containing 20011While processing buffers, this procedure displays messages containing
20029the current date/time, buffer name, how many seconds ago it was 20012the current date/time, buffer name, how many seconds ago it was
20030displayed (can be nil if the buffer was never displayed) and its 20013displayed (can be nil if the buffer was never displayed) and its
20031lifetime, i.e., its \"age\" when it will be purged." t nil) 20014lifetime, i.e., its \"age\" when it will be purged." t)
20032(autoload 'midnight-delay-set "midnight" "\ 20015(autoload 'midnight-delay-set "midnight" "\
20033Modify `midnight-timer' according to `midnight-delay'. 20016Modify `midnight-timer' according to `midnight-delay'.
20034Sets the first argument SYMB (which must be symbol `midnight-delay') 20017Sets the first argument SYMB (which must be symbol `midnight-delay')
20035to its second argument TM. 20018to its second argument TM.
20036 20019
20037(fn SYMB TM)" nil nil) 20020(fn SYMB TM)")
20038(register-definition-prefixes "midnight" '("clean-buffer-list-" "midnight-")) 20021(register-definition-prefixes "midnight" '("clean-buffer-list-" "midnight-"))
20039 20022
20040 20023
@@ -20073,7 +20056,7 @@ evaluate `(default-value \\='minibuffer-electric-default-mode)'.
20073The mode's hook is called both when the mode is enabled and when 20056The mode's hook is called both when the mode is enabled and when
20074it is disabled. 20057it is disabled.
20075 20058
20076(fn &optional ARG)" t nil) 20059(fn &optional ARG)" t)
20077(register-definition-prefixes "minibuf-eldef" '("minibuf")) 20060(register-definition-prefixes "minibuf-eldef" '("minibuf"))
20078 20061
20079 20062
@@ -20087,13 +20070,13 @@ The characters copied are inserted in the buffer before point.
20087 20070
20088Also see the `duplicate-line' command. 20071Also see the `duplicate-line' command.
20089 20072
20090(fn &optional ARG)" t nil) 20073(fn &optional ARG)" t)
20091(autoload 'duplicate-line "misc" "\ 20074(autoload 'duplicate-line "misc" "\
20092Duplicate the current line N times. 20075Duplicate the current line N times.
20093Interactively, N is the prefix numeric argument, and defaults to 1. 20076Interactively, N is the prefix numeric argument, and defaults to 1.
20094Also see the `copy-from-above-command' command. 20077Also see the `copy-from-above-command' command.
20095 20078
20096(fn &optional N)" t nil) 20079(fn &optional N)" t)
20097(autoload 'duplicate-dwim "misc" "\ 20080(autoload 'duplicate-dwim "misc" "\
20098Duplicate the current line or region N times. 20081Duplicate the current line or region N times.
20099If the region is inactive, duplicate the current line (like `duplicate-line'). 20082If the region is inactive, duplicate the current line (like `duplicate-line').
@@ -20101,7 +20084,7 @@ Otherwise, duplicate the region, which remains active afterwards.
20101If the region is rectangular, duplicate on its right-hand side. 20084If the region is rectangular, duplicate on its right-hand side.
20102Interactively, N is the prefix numeric argument, and defaults to 1. 20085Interactively, N is the prefix numeric argument, and defaults to 1.
20103 20086
20104(fn &optional N)" t nil) 20087(fn &optional N)" t)
20105(autoload 'zap-up-to-char "misc" "\ 20088(autoload 'zap-up-to-char "misc" "\
20106Kill up to, but not including ARGth occurrence of CHAR. 20089Kill up to, but not including ARGth occurrence of CHAR.
20107When run interactively, the argument INTERACTIVE is non-nil. 20090When run interactively, the argument INTERACTIVE is non-nil.
@@ -20111,25 +20094,25 @@ Ignores CHAR at point.
20111If called interactively, do a case sensitive search if CHAR 20094If called interactively, do a case sensitive search if CHAR
20112is an upper-case character. 20095is an upper-case character.
20113 20096
20114(fn ARG CHAR &optional INTERACTIVE)" t nil) 20097(fn ARG CHAR &optional INTERACTIVE)" t)
20115(autoload 'mark-beginning-of-buffer "misc" "\ 20098(autoload 'mark-beginning-of-buffer "misc" "\
20116Set mark at the beginning of the buffer." t nil) 20099Set mark at the beginning of the buffer." t)
20117(autoload 'mark-end-of-buffer "misc" "\ 20100(autoload 'mark-end-of-buffer "misc" "\
20118Set mark at the end of the buffer." t nil) 20101Set mark at the end of the buffer." t)
20119(autoload 'upcase-char "misc" "\ 20102(autoload 'upcase-char "misc" "\
20120Uppercasify ARG chars starting from point. Point doesn't move. 20103Uppercasify ARG chars starting from point. Point doesn't move.
20121 20104
20122(fn ARG)" t nil) 20105(fn ARG)" t)
20123(autoload 'forward-to-word "misc" "\ 20106(autoload 'forward-to-word "misc" "\
20124Move forward until encountering the beginning of a word. 20107Move forward until encountering the beginning of a word.
20125With argument, do this that many times. 20108With argument, do this that many times.
20126 20109
20127(fn ARG)" t nil) 20110(fn ARG)" t)
20128(autoload 'backward-to-word "misc" "\ 20111(autoload 'backward-to-word "misc" "\
20129Move backward until encountering the end of a word. 20112Move backward until encountering the end of a word.
20130With argument, do this that many times. 20113With argument, do this that many times.
20131 20114
20132(fn ARG)" t nil) 20115(fn ARG)" t)
20133(autoload 'butterfly "misc" "\ 20116(autoload 'butterfly "misc" "\
20134Use butterflies to flip the desired bit on the drive platter. 20117Use butterflies to flip the desired bit on the drive platter.
20135Open hands and let the delicate wings flap once. The disturbance 20118Open hands and let the delicate wings flap once. The disturbance
@@ -20138,7 +20121,7 @@ upper atmosphere. These cause momentary pockets of higher-pressure
20138air to form, which act as lenses that deflect incoming cosmic rays, 20121air to form, which act as lenses that deflect incoming cosmic rays,
20139focusing them to strike the drive platter and flip the desired bit. 20122focusing them to strike the drive platter and flip the desired bit.
20140You can type \\`M-x butterfly C-M-c' to run it. This is a permuted 20123You can type \\`M-x butterfly C-M-c' to run it. This is a permuted
20141variation of `C-x M-c M-butterfly' from url `https://xkcd.com/378/'." t nil) 20124variation of `C-x M-c M-butterfly' from url `https://xkcd.com/378/'." t)
20142(autoload 'list-dynamic-libraries "misc" "\ 20125(autoload 'list-dynamic-libraries "misc" "\
20143Display a list of all dynamic libraries known to Emacs. 20126Display a list of all dynamic libraries known to Emacs.
20144(These are the libraries listed in `dynamic-library-alist'.) 20127(These are the libraries listed in `dynamic-library-alist'.)
@@ -20148,7 +20131,7 @@ Optional argument BUFFER specifies a buffer to use, instead of
20148\"*Dynamic Libraries*\". 20131\"*Dynamic Libraries*\".
20149The return value is always nil. 20132The return value is always nil.
20150 20133
20151(fn &optional LOADED-ONLY-P BUFFER)" t nil) 20134(fn &optional LOADED-ONLY-P BUFFER)" t)
20152(register-definition-prefixes "misc" '("list-dynamic-libraries--")) 20135(register-definition-prefixes "misc" '("list-dynamic-libraries--"))
20153 20136
20154 20137
@@ -20190,9 +20173,9 @@ This is nil if Isearch is not currently searching more than one buffer.")
20190Sequence of files visited by multiple file buffers Isearch.") 20173Sequence of files visited by multiple file buffers Isearch.")
20191(autoload 'multi-isearch-setup "misearch" "\ 20174(autoload 'multi-isearch-setup "misearch" "\
20192Set up isearch to search multiple buffers. 20175Set up isearch to search multiple buffers.
20193Intended to be added to `isearch-mode-hook'." nil nil) 20176Intended to be added to `isearch-mode-hook'.")
20194(autoload 'multi-isearch-switch-buffer "misearch" "\ 20177(autoload 'multi-isearch-switch-buffer "misearch" "\
20195Switch to the next buffer in multi-buffer search." nil nil) 20178Switch to the next buffer in multi-buffer search.")
20196(autoload 'multi-isearch-buffers "misearch" "\ 20179(autoload 'multi-isearch-buffers "misearch" "\
20197Start multi-buffer Isearch on a list of BUFFERS. 20180Start multi-buffer Isearch on a list of BUFFERS.
20198This list can contain live buffers or their names. 20181This list can contain live buffers or their names.
@@ -20200,7 +20183,7 @@ Interactively read buffer names to search, one by one, ended with RET.
20200With a prefix argument, ask for a regexp, and search in buffers 20183With a prefix argument, ask for a regexp, and search in buffers
20201whose names match the specified regexp. 20184whose names match the specified regexp.
20202 20185
20203(fn BUFFERS)" t nil) 20186(fn BUFFERS)" t)
20204(autoload 'multi-isearch-buffers-regexp "misearch" "\ 20187(autoload 'multi-isearch-buffers-regexp "misearch" "\
20205Start multi-buffer regexp Isearch on a list of BUFFERS. 20188Start multi-buffer regexp Isearch on a list of BUFFERS.
20206This list can contain live buffers or their names. 20189This list can contain live buffers or their names.
@@ -20208,7 +20191,7 @@ Interactively read buffer names to search, one by one, ended with RET.
20208With a prefix argument, ask for a regexp, and search in buffers 20191With a prefix argument, ask for a regexp, and search in buffers
20209whose names match the specified regexp. 20192whose names match the specified regexp.
20210 20193
20211(fn BUFFERS)" t nil) 20194(fn BUFFERS)" t)
20212(autoload 'multi-isearch-files "misearch" "\ 20195(autoload 'multi-isearch-files "misearch" "\
20213Start multi-buffer Isearch on a list of FILES. 20196Start multi-buffer Isearch on a list of FILES.
20214Relative file names in this list are expanded to absolute 20197Relative file names in this list are expanded to absolute
@@ -20217,7 +20200,7 @@ Interactively read file names to search, one by one, ended with RET.
20217With a prefix argument, ask for a wildcard, and search in file buffers 20200With a prefix argument, ask for a wildcard, and search in file buffers
20218whose file names match the specified wildcard. 20201whose file names match the specified wildcard.
20219 20202
20220(fn FILES)" t nil) 20203(fn FILES)" t)
20221(autoload 'multi-isearch-files-regexp "misearch" "\ 20204(autoload 'multi-isearch-files-regexp "misearch" "\
20222Start multi-buffer regexp Isearch on a list of FILES. 20205Start multi-buffer regexp Isearch on a list of FILES.
20223Relative file names in this list are expanded to absolute 20206Relative file names in this list are expanded to absolute
@@ -20226,7 +20209,7 @@ Interactively read file names to search, one by one, ended with RET.
20226With a prefix argument, ask for a wildcard, and search in file buffers 20209With a prefix argument, ask for a wildcard, and search in file buffers
20227whose file names match the specified wildcard. 20210whose file names match the specified wildcard.
20228 20211
20229(fn FILES)" t nil) 20212(fn FILES)" t)
20230(register-definition-prefixes "misearch" '("misearch-unload-function" "multi-isearch-")) 20213(register-definition-prefixes "misearch" '("misearch-unload-function" "multi-isearch-"))
20231 20214
20232 20215
@@ -20236,7 +20219,7 @@ whose file names match the specified wildcard.
20236(autoload 'mixal-mode "mixal-mode" "\ 20219(autoload 'mixal-mode "mixal-mode" "\
20237Major mode for the mixal asm language. 20220Major mode for the mixal asm language.
20238 20221
20239(fn)" t nil) 20222(fn)" t)
20240(register-definition-prefixes "mixal-mode" '("mixal-")) 20223(register-definition-prefixes "mixal-mode" '("mixal-"))
20241 20224
20242 20225
@@ -20261,7 +20244,7 @@ Major mode for the mixal asm language.
20261(autoload 'mm-default-file-type "mm-encode" "\ 20244(autoload 'mm-default-file-type "mm-encode" "\
20262Return a default content type for FILE. 20245Return a default content type for FILE.
20263 20246
20264(fn FILE)" nil nil) 20247(fn FILE)")
20265(register-definition-prefixes "mm-encode" '("mm-")) 20248(register-definition-prefixes "mm-encode" '("mm-"))
20266 20249
20267 20250
@@ -20270,14 +20253,14 @@ Return a default content type for FILE.
20270(autoload 'mm-extern-cache-contents "mm-extern" "\ 20253(autoload 'mm-extern-cache-contents "mm-extern" "\
20271Put the external-body part of HANDLE into its cache. 20254Put the external-body part of HANDLE into its cache.
20272 20255
20273(fn HANDLE)" nil nil) 20256(fn HANDLE)")
20274(autoload 'mm-inline-external-body "mm-extern" "\ 20257(autoload 'mm-inline-external-body "mm-extern" "\
20275Show the external-body part of HANDLE. 20258Show the external-body part of HANDLE.
20276This function replaces the buffer of HANDLE with a buffer contains 20259This function replaces the buffer of HANDLE with a buffer contains
20277the entire message. 20260the entire message.
20278If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. 20261If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing.
20279 20262
20280(fn HANDLE &optional NO-DISPLAY)" nil nil) 20263(fn HANDLE &optional NO-DISPLAY)")
20281(register-definition-prefixes "mm-extern" '("mm-extern-")) 20264(register-definition-prefixes "mm-extern" '("mm-extern-"))
20282 20265
20283 20266
@@ -20289,7 +20272,7 @@ This function replaces the buffer of HANDLE with a buffer contains
20289the entire message. 20272the entire message.
20290If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. 20273If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing.
20291 20274
20292(fn HANDLE &optional NO-DISPLAY)" nil nil) 20275(fn HANDLE &optional NO-DISPLAY)")
20293(register-definition-prefixes "mm-partial" '("mm-partial-find-parts")) 20276(register-definition-prefixes "mm-partial" '("mm-partial-find-parts"))
20294 20277
20295 20278
@@ -20299,11 +20282,11 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing.
20299Insert file contents of URL. 20282Insert file contents of URL.
20300If `mm-url-use-external' is non-nil, use `mm-url-program'. 20283If `mm-url-use-external' is non-nil, use `mm-url-program'.
20301 20284
20302(fn URL)" nil nil) 20285(fn URL)")
20303(autoload 'mm-url-insert-file-contents-external "mm-url" "\ 20286(autoload 'mm-url-insert-file-contents-external "mm-url" "\
20304Insert file contents of URL using `mm-url-program'. 20287Insert file contents of URL using `mm-url-program'.
20305 20288
20306(fn URL)" nil nil) 20289(fn URL)")
20307(register-definition-prefixes "mm-url" '("mm-url-")) 20290(register-definition-prefixes "mm-url" '("mm-url-"))
20308 20291
20309 20292
@@ -20320,12 +20303,12 @@ The optional NOHEADER means there's no header in the buffer.
20320MIME-TYPE specifies a MIME type and parameters, which defaults to the 20303MIME-TYPE specifies a MIME type and parameters, which defaults to the
20321value of `mm-uu-text-plain-type'. 20304value of `mm-uu-text-plain-type'.
20322 20305
20323(fn &optional NOHEADER MIME-TYPE)" nil nil) 20306(fn &optional NOHEADER MIME-TYPE)")
20324(autoload 'mm-uu-dissect-text-parts "mm-uu" "\ 20307(autoload 'mm-uu-dissect-text-parts "mm-uu" "\
20325Dissect text parts and put uu handles into HANDLE. 20308Dissect text parts and put uu handles into HANDLE.
20326Assume text has been decoded if DECODED is non-nil. 20309Assume text has been decoded if DECODED is non-nil.
20327 20310
20328(fn HANDLE &optional DECODED)" nil nil) 20311(fn HANDLE &optional DECODED)")
20329(register-definition-prefixes "mm-uu" '("mm-")) 20312(register-definition-prefixes "mm-uu" '("mm-"))
20330 20313
20331 20314
@@ -20337,7 +20320,7 @@ Assume text has been decoded if DECODED is non-nil.
20337;;; Generated autoloads from gnus/mml.el 20320;;; Generated autoloads from gnus/mml.el
20338 20321
20339(autoload 'mml-to-mime "mml" "\ 20322(autoload 'mml-to-mime "mml" "\
20340Translate the current buffer from MML to MIME." nil nil) 20323Translate the current buffer from MML to MIME.")
20341(autoload 'mml-attach-file "mml" "\ 20324(autoload 'mml-attach-file "mml" "\
20342Attach a file to the outgoing MIME message. 20325Attach a file to the outgoing MIME message.
20343The file is not inserted or encoded until you send the message with 20326The file is not inserted or encoded until you send the message with
@@ -20357,7 +20340,7 @@ If given a prefix interactively, no prompting will be done for
20357the TYPE, DESCRIPTION or DISPOSITION values. Instead defaults 20340the TYPE, DESCRIPTION or DISPOSITION values. Instead defaults
20358will be computed and used. 20341will be computed and used.
20359 20342
20360(fn FILE &optional TYPE DESCRIPTION DISPOSITION)" t nil) 20343(fn FILE &optional TYPE DESCRIPTION DISPOSITION)" t)
20361(register-definition-prefixes "mml" '("mime-to-mml" "mml-")) 20344(register-definition-prefixes "mml" '("mime-to-mml" "mml-"))
20362 20345
20363 20346
@@ -20376,11 +20359,11 @@ will be computed and used.
20376(autoload 'mml1991-encrypt "mml1991" "\ 20359(autoload 'mml1991-encrypt "mml1991" "\
20377 20360
20378 20361
20379(fn CONT &optional SIGN)" nil nil) 20362(fn CONT &optional SIGN)")
20380(autoload 'mml1991-sign "mml1991" "\ 20363(autoload 'mml1991-sign "mml1991" "\
20381 20364
20382 20365
20383(fn CONT)" nil nil) 20366(fn CONT)")
20384(register-definition-prefixes "mml1991" '("mml1991-")) 20367(register-definition-prefixes "mml1991" '("mml1991-"))
20385 20368
20386 20369
@@ -20389,28 +20372,28 @@ will be computed and used.
20389(autoload 'mml2015-decrypt "mml2015" "\ 20372(autoload 'mml2015-decrypt "mml2015" "\
20390 20373
20391 20374
20392(fn HANDLE CTL)" nil nil) 20375(fn HANDLE CTL)")
20393(autoload 'mml2015-decrypt-test "mml2015" "\ 20376(autoload 'mml2015-decrypt-test "mml2015" "\
20394 20377
20395 20378
20396(fn HANDLE CTL)" nil nil) 20379(fn HANDLE CTL)")
20397(autoload 'mml2015-verify "mml2015" "\ 20380(autoload 'mml2015-verify "mml2015" "\
20398 20381
20399 20382
20400(fn HANDLE CTL)" nil nil) 20383(fn HANDLE CTL)")
20401(autoload 'mml2015-verify-test "mml2015" "\ 20384(autoload 'mml2015-verify-test "mml2015" "\
20402 20385
20403 20386
20404(fn HANDLE CTL)" nil nil) 20387(fn HANDLE CTL)")
20405(autoload 'mml2015-encrypt "mml2015" "\ 20388(autoload 'mml2015-encrypt "mml2015" "\
20406 20389
20407 20390
20408(fn CONT &optional SIGN)" nil nil) 20391(fn CONT &optional SIGN)")
20409(autoload 'mml2015-sign "mml2015" "\ 20392(autoload 'mml2015-sign "mml2015" "\
20410 20393
20411 20394
20412(fn CONT)" nil nil) 20395(fn CONT)")
20413(autoload 'mml2015-self-encrypt "mml2015" nil nil nil) 20396(autoload 'mml2015-self-encrypt "mml2015")
20414(register-definition-prefixes "mml2015" '("mml2015-")) 20397(register-definition-prefixes "mml2015" '("mml2015-"))
20415 20398
20416 20399
@@ -20457,7 +20440,7 @@ followed by the first character of the construct.
20457 `m2-compile-command' holds the command to compile a Modula-2 program. 20440 `m2-compile-command' holds the command to compile a Modula-2 program.
20458 `m2-link-command' holds the command to link a Modula-2 program. 20441 `m2-link-command' holds the command to link a Modula-2 program.
20459 20442
20460(fn)" t nil) 20443(fn)" t)
20461(register-definition-prefixes "modula2" '("m2-" "m3-font-lock-keywords")) 20444(register-definition-prefixes "modula2" '("m2-" "m3-font-lock-keywords"))
20462 20445
20463 20446
@@ -20467,19 +20450,19 @@ followed by the first character of the construct.
20467Convert plain text in region to Morse code. 20450Convert plain text in region to Morse code.
20468See <https://en.wikipedia.org/wiki/Morse_code>. 20451See <https://en.wikipedia.org/wiki/Morse_code>.
20469 20452
20470(fn BEG END)" t nil) 20453(fn BEG END)" t)
20471(autoload 'unmorse-region "morse" "\ 20454(autoload 'unmorse-region "morse" "\
20472Convert Morse coded text in region to plain text. 20455Convert Morse coded text in region to plain text.
20473 20456
20474(fn BEG END)" t nil) 20457(fn BEG END)" t)
20475(autoload 'nato-region "morse" "\ 20458(autoload 'nato-region "morse" "\
20476Convert plain text in region to NATO spelling alphabet. 20459Convert plain text in region to NATO spelling alphabet.
20477 20460
20478(fn BEG END)" t nil) 20461(fn BEG END)" t)
20479(autoload 'denato-region "morse" "\ 20462(autoload 'denato-region "morse" "\
20480Convert NATO spelling alphabet text in region to plain text. 20463Convert NATO spelling alphabet text in region to plain text.
20481 20464
20482(fn BEG END)" t nil) 20465(fn BEG END)" t)
20483(register-definition-prefixes "morse" '("morse-code" "nato-alphabet")) 20466(register-definition-prefixes "morse" '("morse-code" "nato-alphabet"))
20484 20467
20485 20468
@@ -20512,7 +20495,7 @@ hemisphere you're in.)
20512To test this function, evaluate: 20495To test this function, evaluate:
20513 (global-set-key [down-mouse-2] \\='mouse-drag-throw) 20496 (global-set-key [down-mouse-2] \\='mouse-drag-throw)
20514 20497
20515(fn START-EVENT)" t nil) 20498(fn START-EVENT)" t)
20516(autoload 'mouse-drag-drag "mouse-drag" "\ 20499(autoload 'mouse-drag-drag "mouse-drag" "\
20517\"Drag\" the page according to a mouse drag. 20500\"Drag\" the page according to a mouse drag.
20518 20501
@@ -20529,21 +20512,21 @@ middle button in Tk text widgets.
20529To test this function, evaluate: 20512To test this function, evaluate:
20530 (global-set-key [down-mouse-2] \\='mouse-drag-drag) 20513 (global-set-key [down-mouse-2] \\='mouse-drag-drag)
20531 20514
20532(fn START-EVENT)" t nil) 20515(fn START-EVENT)" t)
20533(register-definition-prefixes "mouse-drag" '("mouse-")) 20516(register-definition-prefixes "mouse-drag" '("mouse-"))
20534 20517
20535 20518
20536;;; Generated autoloads from mpc.el 20519;;; Generated autoloads from mpc.el
20537 20520
20538(autoload 'mpc "mpc" "\ 20521(autoload 'mpc "mpc" "\
20539Main entry point for MPC." t nil) 20522Main entry point for MPC." t)
20540(register-definition-prefixes "mpc" '("mpc-")) 20523(register-definition-prefixes "mpc" '("mpc-"))
20541 20524
20542 20525
20543;;; Generated autoloads from play/mpuz.el 20526;;; Generated autoloads from play/mpuz.el
20544 20527
20545(autoload 'mpuz "mpuz" "\ 20528(autoload 'mpuz "mpuz" "\
20546Multiplication puzzle with GNU Emacs." t nil) 20529Multiplication puzzle with GNU Emacs." t)
20547(register-definition-prefixes "mpuz" '("mpuz-")) 20530(register-definition-prefixes "mpuz" '("mpuz-"))
20548 20531
20549 20532
@@ -20582,7 +20565,7 @@ evaluate `(default-value \\='msb-mode)'.
20582The mode's hook is called both when the mode is enabled and when 20565The mode's hook is called both when the mode is enabled and when
20583it is disabled. 20566it is disabled.
20584 20567
20585(fn &optional ARG)" t nil) 20568(fn &optional ARG)" t)
20586(register-definition-prefixes "msb" '("mouse-select-buffer" "msb")) 20569(register-definition-prefixes "msb" '("mouse-select-buffer" "msb"))
20587 20570
20588 20571
@@ -20592,7 +20575,7 @@ it is disabled.
20592Show the list of non-empty spool files in the *spools* buffer. 20575Show the list of non-empty spool files in the *spools* buffer.
20593Buffer is not displayed if SHOW is non-nil. 20576Buffer is not displayed if SHOW is non-nil.
20594 20577
20595(fn &optional NOSHOW)" t nil) 20578(fn &optional NOSHOW)" t)
20596(register-definition-prefixes "mspools" '("mspools-")) 20579(register-definition-prefixes "mspools" '("mspools-"))
20597 20580
20598 20581
@@ -20610,7 +20593,7 @@ ISO-2022-based coding systems.
20610With prefix ARG, the output format gets more cryptic, 20593With prefix ARG, the output format gets more cryptic,
20611but still shows the full information. 20594but still shows the full information.
20612 20595
20613(fn ARG)" t nil) 20596(fn ARG)" t)
20614(autoload 'read-charset "mule-diag" "\ 20597(autoload 'read-charset "mule-diag" "\
20615Read a character set from the minibuffer, prompting with string PROMPT. 20598Read a character set from the minibuffer, prompting with string PROMPT.
20616It must be an Emacs character set listed in the variable `charset-list'. 20599It must be an Emacs character set listed in the variable `charset-list'.
@@ -20621,19 +20604,19 @@ INITIAL-INPUT, if non-nil, is a string inserted in the minibuffer initially.
20621See the documentation of the function `completing-read' for the detailed 20604See the documentation of the function `completing-read' for the detailed
20622meanings of these arguments. 20605meanings of these arguments.
20623 20606
20624(fn PROMPT &optional DEFAULT-VALUE INITIAL-INPUT)" nil nil) 20607(fn PROMPT &optional DEFAULT-VALUE INITIAL-INPUT)")
20625(autoload 'list-charset-chars "mule-diag" "\ 20608(autoload 'list-charset-chars "mule-diag" "\
20626Display a list of characters in character set CHARSET. 20609Display a list of characters in character set CHARSET.
20627 20610
20628(fn CHARSET)" t nil) 20611(fn CHARSET)" t)
20629(autoload 'describe-character-set "mule-diag" "\ 20612(autoload 'describe-character-set "mule-diag" "\
20630Display information about built-in character set CHARSET. 20613Display information about built-in character set CHARSET.
20631 20614
20632(fn CHARSET)" t nil) 20615(fn CHARSET)" t)
20633(autoload 'describe-coding-system "mule-diag" "\ 20616(autoload 'describe-coding-system "mule-diag" "\
20634Display information about CODING-SYSTEM. 20617Display information about CODING-SYSTEM.
20635 20618
20636(fn CODING-SYSTEM)" t nil) 20619(fn CODING-SYSTEM)" t)
20637(autoload 'describe-current-coding-system-briefly "mule-diag" "\ 20620(autoload 'describe-current-coding-system-briefly "mule-diag" "\
20638Display coding systems currently used in a brief format in echo area. 20621Display coding systems currently used in a brief format in echo area.
20639 20622
@@ -20655,9 +20638,9 @@ in place of `..':
20655 `default-process-coding-system' for read 20638 `default-process-coding-system' for read
20656 eol-type of `default-process-coding-system' for read 20639 eol-type of `default-process-coding-system' for read
20657 `default-process-coding-system' for write 20640 `default-process-coding-system' for write
20658 eol-type of `default-process-coding-system'" t nil) 20641 eol-type of `default-process-coding-system'" t)
20659(autoload 'describe-current-coding-system "mule-diag" "\ 20642(autoload 'describe-current-coding-system "mule-diag" "\
20660Display coding systems currently used, in detail." t nil) 20643Display coding systems currently used, in detail." t)
20661(autoload 'list-coding-systems "mule-diag" "\ 20644(autoload 'list-coding-systems "mule-diag" "\
20662Display a list of all coding systems. 20645Display a list of all coding systems.
20663This shows the mnemonic letter, name, and description of each coding system. 20646This shows the mnemonic letter, name, and description of each coding system.
@@ -20665,40 +20648,40 @@ This shows the mnemonic letter, name, and description of each coding system.
20665With prefix ARG, the output format gets more cryptic, 20648With prefix ARG, the output format gets more cryptic,
20666but still contains full information about each coding system. 20649but still contains full information about each coding system.
20667 20650
20668(fn &optional ARG)" t nil) 20651(fn &optional ARG)" t)
20669(autoload 'list-coding-categories "mule-diag" "\ 20652(autoload 'list-coding-categories "mule-diag" "\
20670Display a list of all coding categories." nil nil) 20653Display a list of all coding categories.")
20671(autoload 'describe-font "mule-diag" "\ 20654(autoload 'describe-font "mule-diag" "\
20672Display information about a font whose name is FONTNAME. 20655Display information about a font whose name is FONTNAME.
20673 20656
20674(fn FONTNAME)" t nil) 20657(fn FONTNAME)" t)
20675(autoload 'describe-fontset "mule-diag" "\ 20658(autoload 'describe-fontset "mule-diag" "\
20676Display information about FONTSET. 20659Display information about FONTSET.
20677This shows which font is used for which character(s). 20660This shows which font is used for which character(s).
20678 20661
20679(fn FONTSET)" t nil) 20662(fn FONTSET)" t)
20680(autoload 'list-fontsets "mule-diag" "\ 20663(autoload 'list-fontsets "mule-diag" "\
20681Display a list of all fontsets. 20664Display a list of all fontsets.
20682This shows the name, size, and style of each fontset. 20665This shows the name, size, and style of each fontset.
20683With prefix arg, also list the fonts contained in each fontset; 20666With prefix arg, also list the fonts contained in each fontset;
20684see the function `describe-fontset' for the format of the list. 20667see the function `describe-fontset' for the format of the list.
20685 20668
20686(fn ARG)" t nil) 20669(fn ARG)" t)
20687(autoload 'list-input-methods "mule-diag" "\ 20670(autoload 'list-input-methods "mule-diag" "\
20688Display information about all input methods." t nil) 20671Display information about all input methods." t)
20689(autoload 'mule-diag "mule-diag" "\ 20672(autoload 'mule-diag "mule-diag" "\
20690Display diagnosis of the multilingual environment (Mule). 20673Display diagnosis of the multilingual environment (Mule).
20691 20674
20692This shows various information related to the current multilingual 20675This shows various information related to the current multilingual
20693environment, including lists of input methods, coding systems, 20676environment, including lists of input methods, coding systems,
20694character sets, and fontsets (if Emacs is running under a window 20677character sets, and fontsets (if Emacs is running under a window
20695system which uses fontsets)." t nil) 20678system which uses fontsets)." t)
20696(autoload 'font-show-log "mule-diag" "\ 20679(autoload 'font-show-log "mule-diag" "\
20697Show log of font listing and opening. 20680Show log of font listing and opening.
20698Prefix arg LIMIT says how many fonts to show for each listing. 20681Prefix arg LIMIT says how many fonts to show for each listing.
20699The default is 20. If LIMIT is negative, do not limit the listing. 20682The default is 20. If LIMIT is negative, do not limit the listing.
20700 20683
20701(fn &optional LIMIT)" t nil) 20684(fn &optional LIMIT)" t)
20702(register-definition-prefixes "mule-diag" '("charset-history" "describe-font-internal" "insert-section" "list-" "mule--kbd-at" "print-" "sort-listed-character-sets")) 20685(register-definition-prefixes "mule-diag" '("charset-history" "describe-font-internal" "insert-section" "list-" "mule--kbd-at" "print-" "sort-listed-character-sets"))
20703 20686
20704 20687
@@ -20707,7 +20690,7 @@ The default is 20. If LIMIT is negative, do not limit the listing.
20707(autoload 'store-substring "mule-util" "\ 20690(autoload 'store-substring "mule-util" "\
20708Embed OBJ (string or character) at index IDX of STRING. 20691Embed OBJ (string or character) at index IDX of STRING.
20709 20692
20710(fn STRING IDX OBJ)" nil nil) 20693(fn STRING IDX OBJ)")
20711(autoload 'truncate-string-to-width "mule-util" "\ 20694(autoload 'truncate-string-to-width "mule-util" "\
20712Truncate string STR to end at column END-COLUMN. 20695Truncate string STR to end at column END-COLUMN.
20713The optional 3rd arg START-COLUMN, if non-nil, specifies the starting 20696The optional 3rd arg START-COLUMN, if non-nil, specifies the starting
@@ -20741,7 +20724,7 @@ If ELLIPSIS-TEXT-PROPERTY is non-nil, a too-long string will not
20741be truncated, but instead the elided parts will be covered by a 20724be truncated, but instead the elided parts will be covered by a
20742`display' text property showing the ellipsis. 20725`display' text property showing the ellipsis.
20743 20726
20744(fn STR END-COLUMN &optional START-COLUMN PADDING ELLIPSIS ELLIPSIS-TEXT-PROPERTY)" nil nil) 20727(fn STR END-COLUMN &optional START-COLUMN PADDING ELLIPSIS ELLIPSIS-TEXT-PROPERTY)")
20745(defsubst nested-alist-p (obj) "\ 20728(defsubst nested-alist-p (obj) "\
20746Return t if OBJ is a nested alist. 20729Return t if OBJ is a nested alist.
20747 20730
@@ -20760,7 +20743,7 @@ Optional 5th argument BRANCHES if non-nil is branches for a keyseq
20760longer than KEYSEQ. 20743longer than KEYSEQ.
20761See the documentation of `nested-alist-p' for more detail. 20744See the documentation of `nested-alist-p' for more detail.
20762 20745
20763(fn KEYSEQ ENTRY ALIST &optional LEN BRANCHES)" nil nil) 20746(fn KEYSEQ ENTRY ALIST &optional LEN BRANCHES)")
20764(autoload 'lookup-nested-alist "mule-util" "\ 20747(autoload 'lookup-nested-alist "mule-util" "\
20765Look up key sequence KEYSEQ in nested alist ALIST. Return the definition. 20748Look up key sequence KEYSEQ in nested alist ALIST. Return the definition.
20766Optional 3rd argument LEN specifies the length of KEYSEQ. 20749Optional 3rd argument LEN specifies the length of KEYSEQ.
@@ -20773,23 +20756,23 @@ If ALIST is not deep enough for KEYSEQ, return number which is
20773Optional 5th argument NIL-FOR-TOO-LONG non-nil means return nil 20756Optional 5th argument NIL-FOR-TOO-LONG non-nil means return nil
20774 even if ALIST is not deep enough. 20757 even if ALIST is not deep enough.
20775 20758
20776(fn KEYSEQ ALIST &optional LEN START NIL-FOR-TOO-LONG)" nil nil) 20759(fn KEYSEQ ALIST &optional LEN START NIL-FOR-TOO-LONG)")
20777(autoload 'coding-system-post-read-conversion "mule-util" "\ 20760(autoload 'coding-system-post-read-conversion "mule-util" "\
20778Return the value of CODING-SYSTEM's `post-read-conversion' property. 20761Return the value of CODING-SYSTEM's `post-read-conversion' property.
20779 20762
20780(fn CODING-SYSTEM)" nil nil) 20763(fn CODING-SYSTEM)")
20781(autoload 'coding-system-pre-write-conversion "mule-util" "\ 20764(autoload 'coding-system-pre-write-conversion "mule-util" "\
20782Return the value of CODING-SYSTEM's `pre-write-conversion' property. 20765Return the value of CODING-SYSTEM's `pre-write-conversion' property.
20783 20766
20784(fn CODING-SYSTEM)" nil nil) 20767(fn CODING-SYSTEM)")
20785(autoload 'coding-system-translation-table-for-decode "mule-util" "\ 20768(autoload 'coding-system-translation-table-for-decode "mule-util" "\
20786Return the value of CODING-SYSTEM's `decode-translation-table' property. 20769Return the value of CODING-SYSTEM's `decode-translation-table' property.
20787 20770
20788(fn CODING-SYSTEM)" nil nil) 20771(fn CODING-SYSTEM)")
20789(autoload 'coding-system-translation-table-for-encode "mule-util" "\ 20772(autoload 'coding-system-translation-table-for-encode "mule-util" "\
20790Return the value of CODING-SYSTEM's `encode-translation-table' property. 20773Return the value of CODING-SYSTEM's `encode-translation-table' property.
20791 20774
20792(fn CODING-SYSTEM)" nil nil) 20775(fn CODING-SYSTEM)")
20793(autoload 'with-coding-priority "mule-util" "\ 20776(autoload 'with-coding-priority "mule-util" "\
20794Execute BODY like `progn' with CODING-SYSTEMS at the front of priority list. 20777Execute BODY like `progn' with CODING-SYSTEMS at the front of priority list.
20795CODING-SYSTEMS is a list of coding systems. See `set-coding-system-priority'. 20778CODING-SYSTEMS is a list of coding systems. See `set-coding-system-priority'.
@@ -20803,7 +20786,7 @@ Detect a coding system for the text between FROM and TO with LANG-ENV.
20803The detection takes into account the coding system priorities for the 20786The detection takes into account the coding system priorities for the
20804language environment LANG-ENV. 20787language environment LANG-ENV.
20805 20788
20806(fn FROM TO LANG-ENV)" nil nil) 20789(fn FROM TO LANG-ENV)")
20807(autoload 'filepos-to-bufferpos "mule-util" "\ 20790(autoload 'filepos-to-bufferpos "mule-util" "\
20808Try to return the buffer position corresponding to a particular file position. 20791Try to return the buffer position corresponding to a particular file position.
20809The file position is given as a (0-based) BYTE count. 20792The file position is given as a (0-based) BYTE count.
@@ -20818,7 +20801,7 @@ QUALITY can be:
20818 EOL format is not yet decided.) 20801 EOL format is not yet decided.)
20819 nil, in which case we may return nil rather than an approximation. 20802 nil, in which case we may return nil rather than an approximation.
20820 20803
20821(fn BYTE &optional QUALITY CODING-SYSTEM)" nil nil) 20804(fn BYTE &optional QUALITY CODING-SYSTEM)")
20822(autoload 'bufferpos-to-filepos "mule-util" "\ 20805(autoload 'bufferpos-to-filepos "mule-util" "\
20823Try to return the file byte corresponding to a particular buffer POSITION. 20806Try to return the file byte corresponding to a particular buffer POSITION.
20824Value is the file position given as a (0-based) byte count. 20807Value is the file position given as a (0-based) byte count.
@@ -20833,7 +20816,7 @@ QUALITY can be:
20833 EOL format is not yet decided.) 20816 EOL format is not yet decided.)
20834 nil, in which case we may return nil rather than an approximation. 20817 nil, in which case we may return nil rather than an approximation.
20835 20818
20836(fn POSITION &optional QUALITY CODING-SYSTEM)" nil nil) 20819(fn POSITION &optional QUALITY CODING-SYSTEM)")
20837(register-definition-prefixes "mule-util" '("filepos-to-bufferpos--dos" "truncate-string-ellipsis")) 20820(register-definition-prefixes "mule-util" '("filepos-to-bufferpos--dos" "truncate-string-ellipsis"))
20838 20821
20839 20822
@@ -20851,7 +20834,7 @@ List all values in the \"multisession\" database.
20851If CHOOSE-STORAGE (interactively, the prefix), query for the 20834If CHOOSE-STORAGE (interactively, the prefix), query for the
20852storage method to list. 20835storage method to list.
20853 20836
20854(fn &optional CHOOSE-STORAGE)" t nil) 20837(fn &optional CHOOSE-STORAGE)" t)
20855(register-definition-prefixes "multisession" '("multisession-")) 20838(register-definition-prefixes "multisession" '("multisession-"))
20856 20839
20857 20840
@@ -20882,32 +20865,32 @@ evaluate `(default-value \\='mouse-wheel-mode)'.
20882The mode's hook is called both when the mode is enabled and when 20865The mode's hook is called both when the mode is enabled and when
20883it is disabled. 20866it is disabled.
20884 20867
20885(fn &optional ARG)" t nil) 20868(fn &optional ARG)" t)
20886(register-definition-prefixes "mwheel" '("mouse-wheel-" "mwheel-")) 20869(register-definition-prefixes "mwheel" '("mouse-wheel-" "mwheel-"))
20887 20870
20888 20871
20889;;; Generated autoloads from net/net-utils.el 20872;;; Generated autoloads from net/net-utils.el
20890 20873
20891(autoload 'ifconfig "net-utils" "\ 20874(autoload 'ifconfig "net-utils" "\
20892Run `ifconfig-program' and display diagnostic output." t nil) 20875Run `ifconfig-program' and display diagnostic output." t)
20893(autoload 'iwconfig "net-utils" "\ 20876(autoload 'iwconfig "net-utils" "\
20894Run `iwconfig-program' and display diagnostic output." t nil) 20877Run `iwconfig-program' and display diagnostic output." t)
20895(autoload 'netstat "net-utils" "\ 20878(autoload 'netstat "net-utils" "\
20896Run `netstat-program' and display diagnostic output." t nil) 20879Run `netstat-program' and display diagnostic output." t)
20897(autoload 'arp "net-utils" "\ 20880(autoload 'arp "net-utils" "\
20898Run `arp-program' and display diagnostic output." t nil) 20881Run `arp-program' and display diagnostic output." t)
20899(autoload 'route "net-utils" "\ 20882(autoload 'route "net-utils" "\
20900Run `route-program' and display diagnostic output." t nil) 20883Run `route-program' and display diagnostic output." t)
20901(autoload 'traceroute "net-utils" "\ 20884(autoload 'traceroute "net-utils" "\
20902Run `traceroute-program' for TARGET. 20885Run `traceroute-program' for TARGET.
20903 20886
20904(fn TARGET)" t nil) 20887(fn TARGET)" t)
20905(autoload 'ping "net-utils" "\ 20888(autoload 'ping "net-utils" "\
20906Ping HOST. 20889Ping HOST.
20907If your system's ping continues until interrupted, you can try setting 20890If your system's ping continues until interrupted, you can try setting
20908`ping-program-options'. 20891`ping-program-options'.
20909 20892
20910(fn HOST)" t nil) 20893(fn HOST)" t)
20911(autoload 'nslookup-host "net-utils" "\ 20894(autoload 'nslookup-host "net-utils" "\
20912Look up the DNS information for HOST (name or IP address). 20895Look up the DNS information for HOST (name or IP address).
20913Optional argument NAME-SERVER says which server to use for 20896Optional argument NAME-SERVER says which server to use for
@@ -20920,7 +20903,7 @@ See also: `nslookup-host-ipv4', `nslookup-host-ipv6' for
20920non-interactive versions of this function more suitable for use 20903non-interactive versions of this function more suitable for use
20921in Lisp code. 20904in Lisp code.
20922 20905
20923(fn HOST &optional NAME-SERVER)" t nil) 20906(fn HOST &optional NAME-SERVER)" t)
20924(autoload 'nslookup-host-ipv4 "net-utils" "\ 20907(autoload 'nslookup-host-ipv4 "net-utils" "\
20925Return the IPv4 address for HOST (name or IP address). 20908Return the IPv4 address for HOST (name or IP address).
20926Optional argument NAME-SERVER says which server to use for DNS 20909Optional argument NAME-SERVER says which server to use for DNS
@@ -20932,7 +20915,7 @@ vector of octets.
20932 20915
20933This command uses `nslookup-program' to look up DNS records. 20916This command uses `nslookup-program' to look up DNS records.
20934 20917
20935(fn HOST &optional NAME-SERVER FORMAT)" nil nil) 20918(fn HOST &optional NAME-SERVER FORMAT)")
20936(autoload 'nslookup-host-ipv6 "net-utils" "\ 20919(autoload 'nslookup-host-ipv6 "net-utils" "\
20937Return the IPv6 address for HOST (name or IP address). 20920Return the IPv6 address for HOST (name or IP address).
20938Optional argument NAME-SERVER says which server to use for DNS 20921Optional argument NAME-SERVER says which server to use for DNS
@@ -20944,9 +20927,9 @@ vector of hextets.
20944 20927
20945This command uses `nslookup-program' to look up DNS records. 20928This command uses `nslookup-program' to look up DNS records.
20946 20929
20947(fn HOST &optional NAME-SERVER FORMAT)" nil nil) 20930(fn HOST &optional NAME-SERVER FORMAT)")
20948(autoload 'nslookup "net-utils" "\ 20931(autoload 'nslookup "net-utils" "\
20949Run `nslookup-program'." t nil) 20932Run `nslookup-program'." t)
20950(autoload 'dns-lookup-host "net-utils" "\ 20933(autoload 'dns-lookup-host "net-utils" "\
20951Look up the DNS information for HOST (name or IP address). 20934Look up the DNS information for HOST (name or IP address).
20952Optional argument NAME-SERVER says which server to use for 20935Optional argument NAME-SERVER says which server to use for
@@ -20955,7 +20938,7 @@ Interactively, prompt for NAME-SERVER if invoked with prefix argument.
20955 20938
20956This command uses `dns-lookup-program' for looking up the DNS information. 20939This command uses `dns-lookup-program' for looking up the DNS information.
20957 20940
20958(fn HOST &optional NAME-SERVER)" t nil) 20941(fn HOST &optional NAME-SERVER)" t)
20959(autoload 'run-dig "net-utils" "\ 20942(autoload 'run-dig "net-utils" "\
20960Look up DNS information for HOST (name or IP address). 20943Look up DNS information for HOST (name or IP address).
20961Optional argument NAME-SERVER says which server to use for 20944Optional argument NAME-SERVER says which server to use for
@@ -20964,35 +20947,35 @@ Interactively, prompt for NAME-SERVER if invoked with prefix argument.
20964 20947
20965This command uses `dig-program' for looking up the DNS information. 20948This command uses `dig-program' for looking up the DNS information.
20966 20949
20967(fn HOST &optional NAME-SERVER)" t nil) 20950(fn HOST &optional NAME-SERVER)" t)
20968(make-obsolete 'run-dig 'dig "29.1") 20951(make-obsolete 'run-dig 'dig "29.1")
20969(autoload 'ftp "net-utils" "\ 20952(autoload 'ftp "net-utils" "\
20970Run `ftp-program' to connect to HOST. 20953Run `ftp-program' to connect to HOST.
20971 20954
20972(fn HOST)" t nil) 20955(fn HOST)" t)
20973(autoload 'finger "net-utils" "\ 20956(autoload 'finger "net-utils" "\
20974Finger USER on HOST. 20957Finger USER on HOST.
20975This command uses `finger-X.500-host-regexps' 20958This command uses `finger-X.500-host-regexps'
20976and `network-connection-service-alist', which see. 20959and `network-connection-service-alist', which see.
20977 20960
20978(fn USER HOST)" t nil) 20961(fn USER HOST)" t)
20979(autoload 'whois "net-utils" "\ 20962(autoload 'whois "net-utils" "\
20980Send SEARCH-STRING to server defined by the `whois-server-name' variable. 20963Send SEARCH-STRING to server defined by the `whois-server-name' variable.
20981If `whois-guess-server' is non-nil, then try to deduce the correct server 20964If `whois-guess-server' is non-nil, then try to deduce the correct server
20982from SEARCH-STRING. With argument, prompt for whois server. 20965from SEARCH-STRING. With argument, prompt for whois server.
20983The port is deduced from `network-connection-service-alist'. 20966The port is deduced from `network-connection-service-alist'.
20984 20967
20985(fn ARG SEARCH-STRING)" t nil) 20968(fn ARG SEARCH-STRING)" t)
20986(autoload 'whois-reverse-lookup "net-utils" nil t nil) 20969(autoload 'whois-reverse-lookup "net-utils" nil t)
20987(autoload 'network-connection-to-service "net-utils" "\ 20970(autoload 'network-connection-to-service "net-utils" "\
20988Open a network connection to SERVICE on HOST. 20971Open a network connection to SERVICE on HOST.
20989This command uses `network-connection-service-alist', which see. 20972This command uses `network-connection-service-alist', which see.
20990 20973
20991(fn HOST SERVICE)" t nil) 20974(fn HOST SERVICE)" t)
20992(autoload 'network-connection "net-utils" "\ 20975(autoload 'network-connection "net-utils" "\
20993Open a network connection to HOST on PORT. 20976Open a network connection to HOST on PORT.
20994 20977
20995(fn HOST PORT)" t nil) 20978(fn HOST PORT)" t)
20996(register-definition-prefixes "net-utils" '("arp-program" "dns-lookup-program" "finger-X.500-host-regexps" "ftp-" "ifconfig-program" "ipconfig" "iwconfig-program" "net" "nslookup-" "ping-program" "route-program" "run-network-program" "smbclient" "traceroute-program" "whois-")) 20979(register-definition-prefixes "net-utils" '("arp-program" "dns-lookup-program" "finger-X.500-host-regexps" "ftp-" "ifconfig-program" "ipconfig" "iwconfig-program" "net" "nslookup-" "ping-program" "route-program" "run-network-program" "smbclient" "traceroute-program" "whois-"))
20997 20980
20998 20981
@@ -21104,7 +21087,7 @@ type (either `gnutls-x509pki' or `gnutls-anon'), and the
21104remaining elements should be a keyword list accepted by 21087remaining elements should be a keyword list accepted by
21105gnutls-boot (as returned by `gnutls-boot-parameters'). 21088gnutls-boot (as returned by `gnutls-boot-parameters').
21106 21089
21107(fn NAME BUFFER HOST SERVICE &rest PARAMETERS)" nil nil) 21090(fn NAME BUFFER HOST SERVICE &rest PARAMETERS)")
21108(define-obsolete-function-alias 'open-protocol-stream #'open-network-stream "26.1") 21091(define-obsolete-function-alias 'open-protocol-stream #'open-network-stream "26.1")
21109(register-definition-prefixes "network-stream" '("network-stream-")) 21092(register-definition-prefixes "network-stream" '("network-stream-"))
21110 21093
@@ -21114,7 +21097,7 @@ gnutls-boot (as returned by `gnutls-boot-parameters').
21114(autoload 'newsticker-running-p "newst-backend" "\ 21097(autoload 'newsticker-running-p "newst-backend" "\
21115Check whether newsticker is running. 21098Check whether newsticker is running.
21116Return t if newsticker is running, nil otherwise. Newsticker is 21099Return t if newsticker is running, nil otherwise. Newsticker is
21117considered to be running if the newsticker timer list is not empty." nil nil) 21100considered to be running if the newsticker timer list is not empty.")
21118(autoload 'newsticker-start "newst-backend" "\ 21101(autoload 'newsticker-start "newst-backend" "\
21119Start the newsticker. 21102Start the newsticker.
21120Start the timers for display and retrieval. If the newsticker, i.e. the 21103Start the timers for display and retrieval. If the newsticker, i.e. the
@@ -21122,21 +21105,21 @@ timers, are running already a warning message is printed unless
21122DO-NOT-COMPLAIN-IF-RUNNING is not nil. 21105DO-NOT-COMPLAIN-IF-RUNNING is not nil.
21123Run `newsticker-start-hook' if newsticker was not running already. 21106Run `newsticker-start-hook' if newsticker was not running already.
21124 21107
21125(fn &optional DO-NOT-COMPLAIN-IF-RUNNING)" t nil) 21108(fn &optional DO-NOT-COMPLAIN-IF-RUNNING)" t)
21126(register-definition-prefixes "newst-backend" '("newsticker-")) 21109(register-definition-prefixes "newst-backend" '("newsticker-"))
21127 21110
21128 21111
21129;;; Generated autoloads from net/newst-plainview.el 21112;;; Generated autoloads from net/newst-plainview.el
21130 21113
21131(autoload 'newsticker-plainview "newst-plainview" "\ 21114(autoload 'newsticker-plainview "newst-plainview" "\
21132Start newsticker plainview." t nil) 21115Start newsticker plainview." t)
21133(register-definition-prefixes "newst-plainview" '("newsticker-")) 21116(register-definition-prefixes "newst-plainview" '("newsticker-"))
21134 21117
21135 21118
21136;;; Generated autoloads from net/newst-reader.el 21119;;; Generated autoloads from net/newst-reader.el
21137 21120
21138(autoload 'newsticker-show-news "newst-reader" "\ 21121(autoload 'newsticker-show-news "newst-reader" "\
21139Start reading news. You may want to bind this to a key." t nil) 21122Start reading news. You may want to bind this to a key." t)
21140(register-definition-prefixes "newst-reader" '("newsticker-")) 21123(register-definition-prefixes "newst-reader" '("newsticker-"))
21141 21124
21142 21125
@@ -21146,18 +21129,18 @@ Start reading news. You may want to bind this to a key." t nil)
21146Check whether newsticker's actual ticker is running. 21129Check whether newsticker's actual ticker is running.
21147Return t if ticker is running, nil otherwise. Newsticker is 21130Return t if ticker is running, nil otherwise. Newsticker is
21148considered to be running if the newsticker timer list is not 21131considered to be running if the newsticker timer list is not
21149empty." nil nil) 21132empty.")
21150(autoload 'newsticker-start-ticker "newst-ticker" "\ 21133(autoload 'newsticker-start-ticker "newst-ticker" "\
21151Start newsticker's ticker (but not the news retrieval). 21134Start newsticker's ticker (but not the news retrieval).
21152Start display timer for the actual ticker if wanted and not 21135Start display timer for the actual ticker if wanted and not
21153running already." t nil) 21136running already." t)
21154(register-definition-prefixes "newst-ticker" '("newsticker-")) 21137(register-definition-prefixes "newst-ticker" '("newsticker-"))
21155 21138
21156 21139
21157;;; Generated autoloads from net/newst-treeview.el 21140;;; Generated autoloads from net/newst-treeview.el
21158 21141
21159(autoload 'newsticker-treeview "newst-treeview" "\ 21142(autoload 'newsticker-treeview "newst-treeview" "\
21160Start newsticker treeview." t nil) 21143Start newsticker treeview." t)
21161(register-definition-prefixes "newst-treeview" '("newsticker-")) 21144(register-definition-prefixes "newst-treeview" '("newsticker-"))
21162 21145
21163 21146
@@ -21181,7 +21164,7 @@ Start newsticker treeview." t nil)
21181(autoload 'nndiary-generate-nov-databases "nndiary" "\ 21164(autoload 'nndiary-generate-nov-databases "nndiary" "\
21182Generate NOV databases in all nndiary directories. 21165Generate NOV databases in all nndiary directories.
21183 21166
21184(fn &optional SERVER)" t nil) 21167(fn &optional SERVER)" t)
21185(register-definition-prefixes "nndiary" '("nndiary-")) 21168(register-definition-prefixes "nndiary" '("nndiary-"))
21186 21169
21187 21170
@@ -21199,7 +21182,7 @@ as the last checked definition, if t or `first', add as the
21199first definition, and if any other symbol, add after that 21182first definition, and if any other symbol, add after that
21200symbol in the alist. 21183symbol in the alist.
21201 21184
21202(fn DEFINITION &optional POSITION)" nil nil) 21185(fn DEFINITION &optional POSITION)")
21203(register-definition-prefixes "nndoc" '("nndoc-")) 21186(register-definition-prefixes "nndoc" '("nndoc-"))
21204 21187
21205 21188
@@ -21217,7 +21200,7 @@ symbol in the alist.
21217 21200
21218(autoload 'nnfolder-generate-active-file "nnfolder" "\ 21201(autoload 'nnfolder-generate-active-file "nnfolder" "\
21219Look for mbox folders in the nnfolder directory and make them into groups. 21202Look for mbox folders in the nnfolder directory and make them into groups.
21220This command does not work if you use short group names." t nil) 21203This command does not work if you use short group names." t)
21221(register-definition-prefixes "nnfolder" '("nnfolder-")) 21204(register-definition-prefixes "nnfolder" '("nnfolder-"))
21222 21205
21223 21206
@@ -21266,7 +21249,7 @@ This command does not work if you use short group names." t nil)
21266(autoload 'nnml-generate-nov-databases "nnml" "\ 21249(autoload 'nnml-generate-nov-databases "nnml" "\
21267Generate NOV databases in all nnml directories. 21250Generate NOV databases in all nnml directories.
21268 21251
21269(fn &optional SERVER)" t nil) 21252(fn &optional SERVER)" t)
21270(register-definition-prefixes "nnml" '("nnml-")) 21253(register-definition-prefixes "nnml" '("nnml-"))
21271 21254
21272 21255
@@ -21328,21 +21311,21 @@ If nil, the feature is disabled, i.e., all commands work normally.")
21328(autoload 'disabled-command-function "novice" "\ 21311(autoload 'disabled-command-function "novice" "\
21329 21312
21330 21313
21331(fn &optional CMD KEYS)" nil nil) 21314(fn &optional CMD KEYS)")
21332(autoload 'enable-command "novice" "\ 21315(autoload 'enable-command "novice" "\
21333Allow COMMAND to be executed without special confirmation from now on. 21316Allow COMMAND to be executed without special confirmation from now on.
21334COMMAND must be a symbol. 21317COMMAND must be a symbol.
21335This command alters the user's .emacs file so that this will apply 21318This command alters the user's .emacs file so that this will apply
21336to future sessions. 21319to future sessions.
21337 21320
21338(fn COMMAND)" t nil) 21321(fn COMMAND)" t)
21339(autoload 'disable-command "novice" "\ 21322(autoload 'disable-command "novice" "\
21340Require special confirmation to execute COMMAND from now on. 21323Require special confirmation to execute COMMAND from now on.
21341COMMAND must be a symbol. 21324COMMAND must be a symbol.
21342This command alters your init file so that this choice applies to 21325This command alters your init file so that this choice applies to
21343future sessions. 21326future sessions.
21344 21327
21345(fn COMMAND)" t nil) 21328(fn COMMAND)" t)
21346(register-definition-prefixes "novice" '("en/disable-command")) 21329(register-definition-prefixes "novice" '("en/disable-command"))
21347 21330
21348 21331
@@ -21355,7 +21338,7 @@ Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
21355Also, try `nroff-electric-mode', for automatically inserting 21338Also, try `nroff-electric-mode', for automatically inserting
21356closing requests for requests that are used in matched pairs. 21339closing requests for requests that are used in matched pairs.
21357 21340
21358(fn)" t nil) 21341(fn)" t)
21359(register-definition-prefixes "nroff-mode" '("nroff-")) 21342(register-definition-prefixes "nroff-mode" '("nroff-"))
21360 21343
21361 21344
@@ -21434,7 +21417,7 @@ to nil. For more details, see the function `nxml-forward-balanced-item'.
21434Many aspects this mode can be customized using 21417Many aspects this mode can be customized using
21435\\[customize-group] nxml RET. 21418\\[customize-group] nxml RET.
21436 21419
21437(fn)" t nil) 21420(fn)" t)
21438(defalias 'xml-mode 'nxml-mode) 21421(defalias 'xml-mode 'nxml-mode)
21439(register-definition-prefixes "nxml-mode" '("nxml-")) 21422(register-definition-prefixes "nxml-mode" '("nxml-"))
21440 21423
@@ -21706,7 +21689,7 @@ Insert a citation at point.
21706Insertion is done according to the processor set in `org-cite-insert-processor'. 21689Insertion is done according to the processor set in `org-cite-insert-processor'.
21707ARG is the prefix argument received when calling interactively the function. 21690ARG is the prefix argument received when calling interactively the function.
21708 21691
21709(fn ARG)" t nil) 21692(fn ARG)" t)
21710(register-definition-prefixes "oc" '("org-cite-")) 21693(register-definition-prefixes "oc" '("org-cite-"))
21711 21694
21712 21695
@@ -21734,7 +21717,7 @@ ARG is the prefix argument received when calling interactively the function.
21734 21717
21735 (add-to-list 'auto-mode-alist '("\\.m\\'" . octave-maybe-mode)) 21718 (add-to-list 'auto-mode-alist '("\\.m\\'" . octave-maybe-mode))
21736(autoload 'octave-maybe-mode "octave" "\ 21719(autoload 'octave-maybe-mode "octave" "\
21737Select `octave-mode' if the current buffer seems to hold Octave code." nil nil) 21720Select `octave-mode' if the current buffer seems to hold Octave code.")
21738(autoload 'octave-mode "octave" "\ 21721(autoload 'octave-mode "octave" "\
21739Major mode for editing Octave code. 21722Major mode for editing Octave code.
21740 21723
@@ -21748,7 +21731,7 @@ See Info node `(octave-mode) Using Octave Mode' for more details.
21748Key bindings: 21731Key bindings:
21749\\{octave-mode-map} 21732\\{octave-mode-map}
21750 21733
21751(fn)" t nil) 21734(fn)" t)
21752(autoload 'inferior-octave "octave" "\ 21735(autoload 'inferior-octave "octave" "\
21753Run an inferior Octave process, I/O via `inferior-octave-buffer'. 21736Run an inferior Octave process, I/O via `inferior-octave-buffer'.
21754This buffer is put in Inferior Octave mode. See `inferior-octave-mode'. 21737This buffer is put in Inferior Octave mode. See `inferior-octave-mode'.
@@ -21762,7 +21745,7 @@ Additional commands to be executed on startup can be provided either in
21762the file specified by `inferior-octave-startup-file' or by the default 21745the file specified by `inferior-octave-startup-file' or by the default
21763startup file, `~/.emacs-octave'. 21746startup file, `~/.emacs-octave'.
21764 21747
21765(fn &optional ARG)" t nil) 21748(fn &optional ARG)" t)
21766(defalias 'run-octave 'inferior-octave) 21749(defalias 'run-octave 'inferior-octave)
21767(register-definition-prefixes "octave" '("inferior-octave-" "octave-")) 21750(register-definition-prefixes "octave" '("inferior-octave-" "octave-"))
21768 21751
@@ -21872,7 +21855,7 @@ Coloring:
21872 `opascal-keyword-face' (default `font-lock-keyword-face') 21855 `opascal-keyword-face' (default `font-lock-keyword-face')
21873 Face used to color OPascal keywords. 21856 Face used to color OPascal keywords.
21874 21857
21875(fn)" t nil) 21858(fn)" t)
21876(register-definition-prefixes "opascal" '("opascal-")) 21859(register-definition-prefixes "opascal" '("opascal-"))
21877 21860
21878 21861
@@ -21882,7 +21865,7 @@ Coloring:
21882(autoload 'org-babel-do-load-languages "org" "\ 21865(autoload 'org-babel-do-load-languages "org" "\
21883Load the languages defined in `org-babel-load-languages'. 21866Load the languages defined in `org-babel-load-languages'.
21884 21867
21885(fn SYM VALUE)" nil nil) 21868(fn SYM VALUE)")
21886(autoload 'org-babel-load-file "org" "\ 21869(autoload 'org-babel-load-file "org" "\
21887Load Emacs Lisp source code blocks in the Org FILE. 21870Load Emacs Lisp source code blocks in the Org FILE.
21888This function exports the source code using `org-babel-tangle' 21871This function exports the source code using `org-babel-tangle'
@@ -21890,7 +21873,7 @@ and then loads the resulting file using `load-file'. With
21890optional prefix argument COMPILE, the tangled Emacs Lisp file is 21873optional prefix argument COMPILE, the tangled Emacs Lisp file is
21891byte-compiled before it is loaded. 21874byte-compiled before it is loaded.
21892 21875
21893(fn FILE &optional COMPILE)" t nil) 21876(fn FILE &optional COMPILE)" t)
21894(autoload 'org-version "org" "\ 21877(autoload 'org-version "org" "\
21895Show the Org version. 21878Show the Org version.
21896Interactively, or when MESSAGE is non-nil, show it in echo area. 21879Interactively, or when MESSAGE is non-nil, show it in echo area.
@@ -21898,13 +21881,13 @@ With prefix argument, or when HERE is non-nil, insert it at point.
21898In non-interactive uses, a reduced version string is output unless 21881In non-interactive uses, a reduced version string is output unless
21899FULL is given. 21882FULL is given.
21900 21883
21901(fn &optional HERE FULL MESSAGE)" t nil) 21884(fn &optional HERE FULL MESSAGE)" t)
21902(autoload 'org-load-modules-maybe "org" "\ 21885(autoload 'org-load-modules-maybe "org" "\
21903Load all extensions listed in `org-modules'. 21886Load all extensions listed in `org-modules'.
21904 21887
21905(fn &optional FORCE)" nil nil) 21888(fn &optional FORCE)")
21906(autoload 'org-clock-persistence-insinuate "org" "\ 21889(autoload 'org-clock-persistence-insinuate "org" "\
21907Set up hooks for clock persistence." nil nil) 21890Set up hooks for clock persistence.")
21908(autoload 'org-mode "org" "\ 21891(autoload 'org-mode "org" "\
21909Outline-based notes management and organizer, alias 21892Outline-based notes management and organizer, alias
21910\"Carsten's outline-mode for keeping track of everything.\" 21893\"Carsten's outline-mode for keeping track of everything.\"
@@ -21924,7 +21907,7 @@ The following commands are available:
21924 21907
21925\\{org-mode-map} 21908\\{org-mode-map}
21926 21909
21927(fn)" t nil) 21910(fn)" t)
21928(autoload 'org-cycle "org" "\ 21911(autoload 'org-cycle "org" "\
21929TAB-action and visibility cycling for Org mode. 21912TAB-action and visibility cycling for Org mode.
21930 21913
@@ -21975,20 +21958,20 @@ there is no headline there, and if the variable `org-cycle-global-at-bob'
21975is non-nil, this function acts as if called with prefix argument (`\\[universal-argument] TAB', 21958is non-nil, this function acts as if called with prefix argument (`\\[universal-argument] TAB',
21976same as `S-TAB') also when called without prefix argument. 21959same as `S-TAB') also when called without prefix argument.
21977 21960
21978(fn &optional ARG)" t nil) 21961(fn &optional ARG)" t)
21979(autoload 'org-global-cycle "org" "\ 21962(autoload 'org-global-cycle "org" "\
21980Cycle the global visibility. For details see `org-cycle'. 21963Cycle the global visibility. For details see `org-cycle'.
21981With `\\[universal-argument]' prefix ARG, switch to startup visibility. 21964With `\\[universal-argument]' prefix ARG, switch to startup visibility.
21982With a numeric prefix, show all headlines up to that level. 21965With a numeric prefix, show all headlines up to that level.
21983 21966
21984(fn &optional ARG)" t nil) 21967(fn &optional ARG)" t)
21985(autoload 'org-run-like-in-org-mode "org" "\ 21968(autoload 'org-run-like-in-org-mode "org" "\
21986Run a command, pretending that the current buffer is in Org mode. 21969Run a command, pretending that the current buffer is in Org mode.
21987This will temporarily bind local variables that are typically bound in 21970This will temporarily bind local variables that are typically bound in
21988Org mode to the values they have in Org mode, and then interactively 21971Org mode to the values they have in Org mode, and then interactively
21989call CMD. 21972call CMD.
21990 21973
21991(fn CMD)" nil nil) 21974(fn CMD)")
21992(autoload 'org-open-file "org" "\ 21975(autoload 'org-open-file "org" "\
21993Open the file at PATH. 21976Open the file at PATH.
21994First, this expands any special file name abbreviations. Then the 21977First, this expands any special file name abbreviations. Then the
@@ -22011,14 +21994,14 @@ link, please customize `org-link-frame-setup'.
22011 21994
22012If the file does not exist, throw an error. 21995If the file does not exist, throw an error.
22013 21996
22014(fn PATH &optional IN-EMACS LINE SEARCH)" nil nil) 21997(fn PATH &optional IN-EMACS LINE SEARCH)")
22015(autoload 'org-open-at-point-global "org" "\ 21998(autoload 'org-open-at-point-global "org" "\
22016Follow a link or a time-stamp like Org mode does. 21999Follow a link or a time-stamp like Org mode does.
22017Also follow links and emails as seen by `thing-at-point'. 22000Also follow links and emails as seen by `thing-at-point'.
22018This command can be called in any mode to follow an external 22001This command can be called in any mode to follow an external
22019link or a time-stamp that has Org mode syntax. Its behavior 22002link or a time-stamp that has Org mode syntax. Its behavior
22020is undefined when called on internal links like fuzzy links. 22003is undefined when called on internal links like fuzzy links.
22021Raise a user error when there is nothing to follow." t nil) 22004Raise a user error when there is nothing to follow." t)
22022(autoload 'org-offer-links-in-entry "org" "\ 22005(autoload 'org-offer-links-in-entry "org" "\
22023Offer links in the current entry and return the selected link. 22006Offer links in the current entry and return the selected link.
22024If there is only one link, return it. 22007If there is only one link, return it.
@@ -22026,7 +22009,7 @@ If NTH is an integer, return the NTH link found.
22026If ZERO is a string, check also this string for a link, and if 22009If ZERO is a string, check also this string for a link, and if
22027there is one, return it. 22010there is one, return it.
22028 22011
22029(fn BUFFER MARKER &optional NTH ZERO)" nil nil) 22012(fn BUFFER MARKER &optional NTH ZERO)")
22030(autoload 'org-switchb "org" "\ 22013(autoload 'org-switchb "org" "\
22031Switch between Org buffers. 22014Switch between Org buffers.
22032 22015
@@ -22034,11 +22017,11 @@ With `\\[universal-argument]' prefix, restrict available buffers to files.
22034 22017
22035With `\\[universal-argument] \\[universal-argument]' prefix, restrict available buffers to agenda files. 22018With `\\[universal-argument] \\[universal-argument]' prefix, restrict available buffers to agenda files.
22036 22019
22037(fn &optional ARG)" t nil) 22020(fn &optional ARG)" t)
22038(autoload 'org-cycle-agenda-files "org" "\ 22021(autoload 'org-cycle-agenda-files "org" "\
22039Cycle through the files in `org-agenda-files'. 22022Cycle through the files in `org-agenda-files'.
22040If the current buffer visits an agenda file, find the next one in the list. 22023If the current buffer visits an agenda file, find the next one in the list.
22041If the current buffer does not, find the first agenda file." t nil) 22024If the current buffer does not, find the first agenda file." t)
22042(autoload 'org-submit-bug-report "org" "\ 22025(autoload 'org-submit-bug-report "org" "\
22043Submit a bug report on Org via mail. 22026Submit a bug report on Org via mail.
22044 22027
@@ -22046,14 +22029,14 @@ Don't hesitate to report any problems or inaccurate documentation.
22046 22029
22047If you don't have setup sending mail from (X)Emacs, please copy the 22030If you don't have setup sending mail from (X)Emacs, please copy the
22048output buffer into your mail program, as it gives us important 22031output buffer into your mail program, as it gives us important
22049information about your Org version and configuration." t nil) 22032information about your Org version and configuration." t)
22050(autoload 'org-reload "org" "\ 22033(autoload 'org-reload "org" "\
22051Reload all Org Lisp files. 22034Reload all Org Lisp files.
22052With prefix arg UNCOMPILED, load the uncompiled versions. 22035With prefix arg UNCOMPILED, load the uncompiled versions.
22053 22036
22054(fn &optional UNCOMPILED)" t nil) 22037(fn &optional UNCOMPILED)" t)
22055(autoload 'org-customize "org" "\ 22038(autoload 'org-customize "org" "\
22056Call the customize function with org as argument." t nil) 22039Call the customize function with org as argument." t)
22057(register-definition-prefixes "org" '("org-" "turn-on-org-cdlatex")) 22040(register-definition-prefixes "org" '("org-" "turn-on-org-cdlatex"))
22058 22041
22059 22042
@@ -22062,7 +22045,7 @@ Call the customize function with org as argument." t nil)
22062(autoload 'org-toggle-sticky-agenda "org-agenda" "\ 22045(autoload 'org-toggle-sticky-agenda "org-agenda" "\
22063Toggle `org-agenda-sticky'. 22046Toggle `org-agenda-sticky'.
22064 22047
22065(fn &optional ARG)" t nil) 22048(fn &optional ARG)" t)
22066(autoload 'org-agenda "org-agenda" "\ 22049(autoload 'org-agenda "org-agenda" "\
22067Dispatch agenda commands to collect entries to the agenda buffer. 22050Dispatch agenda commands to collect entries to the agenda buffer.
22068Prompts for a command to execute. Any prefix arg will be passed 22051Prompts for a command to execute. Any prefix arg will be passed
@@ -22097,7 +22080,7 @@ first press `<' once to indicate that the agenda should be temporarily
22097Pressing `<' twice means to restrict to the current subtree or region 22080Pressing `<' twice means to restrict to the current subtree or region
22098(if active). 22081(if active).
22099 22082
22100(fn &optional ARG KEYS RESTRICTION)" t nil) 22083(fn &optional ARG KEYS RESTRICTION)" t)
22101(autoload 'org-batch-agenda "org-agenda" "\ 22084(autoload 'org-batch-agenda "org-agenda" "\
22102Run an agenda command in batch mode and send the result to STDOUT. 22085Run an agenda command in batch mode and send the result to STDOUT.
22103If CMD-KEY is a string of length 1, it is used as a key in 22086If CMD-KEY is a string of length 1, it is used as a key in
@@ -22146,7 +22129,7 @@ agenda-day The day in the agenda where this is listed
22146(autoload 'org-store-agenda-views "org-agenda" "\ 22129(autoload 'org-store-agenda-views "org-agenda" "\
22147Store agenda views. 22130Store agenda views.
22148 22131
22149(fn &rest PARAMETERS)" t nil) 22132(fn &rest PARAMETERS)" t)
22150(autoload 'org-batch-store-agenda-views "org-agenda" "\ 22133(autoload 'org-batch-store-agenda-views "org-agenda" "\
22151Run all custom agenda commands that have a file argument. 22134Run all custom agenda commands that have a file argument.
22152 22135
@@ -22166,7 +22149,7 @@ given in `org-agenda-start-on-weekday'.
22166When WITH-HOUR is non-nil, only include scheduled and deadline 22149When WITH-HOUR is non-nil, only include scheduled and deadline
22167items if they have an hour specification like [h]h:mm. 22150items if they have an hour specification like [h]h:mm.
22168 22151
22169(fn &optional ARG START-DAY SPAN WITH-HOUR)" t nil) 22152(fn &optional ARG START-DAY SPAN WITH-HOUR)" t)
22170(autoload 'org-search-view "org-agenda" "\ 22153(autoload 'org-search-view "org-agenda" "\
22171Show all entries that contain a phrase or words or regular expressions. 22154Show all entries that contain a phrase or words or regular expressions.
22172 22155
@@ -22212,7 +22195,7 @@ This command searches the agenda files, and in addition the files
22212listed in `org-agenda-text-search-extra-files' unless a restriction lock 22195listed in `org-agenda-text-search-extra-files' unless a restriction lock
22213is active. 22196is active.
22214 22197
22215(fn &optional TODO-ONLY STRING EDIT-AT)" t nil) 22198(fn &optional TODO-ONLY STRING EDIT-AT)" t)
22216(autoload 'org-todo-list "org-agenda" "\ 22199(autoload 'org-todo-list "org-agenda" "\
22217Show all (not done) TODO entries from all agenda files in a single list. 22200Show all (not done) TODO entries from all agenda files in a single list.
22218The prefix arg can be used to select a specific TODO keyword and limit 22201The prefix arg can be used to select a specific TODO keyword and limit
@@ -22220,19 +22203,19 @@ the list to these. When using `\\[universal-argument]', you will be prompted
22220for a keyword. A numeric prefix directly selects the Nth keyword in 22203for a keyword. A numeric prefix directly selects the Nth keyword in
22221`org-todo-keywords-1'. 22204`org-todo-keywords-1'.
22222 22205
22223(fn &optional ARG)" t nil) 22206(fn &optional ARG)" t)
22224(autoload 'org-tags-view "org-agenda" "\ 22207(autoload 'org-tags-view "org-agenda" "\
22225Show all headlines for all `org-agenda-files' matching a TAGS criterion. 22208Show all headlines for all `org-agenda-files' matching a TAGS criterion.
22226The prefix arg TODO-ONLY limits the search to TODO entries. 22209The prefix arg TODO-ONLY limits the search to TODO entries.
22227 22210
22228(fn &optional TODO-ONLY MATCH)" t nil) 22211(fn &optional TODO-ONLY MATCH)" t)
22229(autoload 'org-agenda-list-stuck-projects "org-agenda" "\ 22212(autoload 'org-agenda-list-stuck-projects "org-agenda" "\
22230Create agenda view for projects that are stuck. 22213Create agenda view for projects that are stuck.
22231Stuck projects are project that have no next actions. For the definitions 22214Stuck projects are project that have no next actions. For the definitions
22232of what a project is and how to check if it stuck, customize the variable 22215of what a project is and how to check if it stuck, customize the variable
22233`org-stuck-projects'. 22216`org-stuck-projects'.
22234 22217
22235(fn &rest IGNORE)" t nil) 22218(fn &rest IGNORE)" t)
22236(autoload 'org-diary "org-agenda" "\ 22219(autoload 'org-diary "org-agenda" "\
22237Return diary information from org files. 22220Return diary information from org files.
22238This function can be used in a \"sexp\" diary entry in the Emacs calendar. 22221This function can be used in a \"sexp\" diary entry in the Emacs calendar.
@@ -22260,11 +22243,11 @@ The function expects the lisp variables `entry' and `date' to be provided
22260by the caller, because this is how the calendar works. Don't use this 22243by the caller, because this is how the calendar works. Don't use this
22261function from a program - use `org-agenda-get-day-entries' instead. 22244function from a program - use `org-agenda-get-day-entries' instead.
22262 22245
22263(fn &rest ARGS)" nil nil) 22246(fn &rest ARGS)")
22264(autoload 'org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item "org-agenda" "\ 22247(autoload 'org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item "org-agenda" "\
22265Do we have a reason to ignore this TODO entry because it has a time stamp? 22248Do we have a reason to ignore this TODO entry because it has a time stamp?
22266 22249
22267(fn &optional END)" nil nil) 22250(fn &optional END)")
22268(autoload 'org-agenda-set-restriction-lock "org-agenda" "\ 22251(autoload 'org-agenda-set-restriction-lock "org-agenda" "\
22269Set restriction lock for agenda to current subtree or file. 22252Set restriction lock for agenda to current subtree or file.
22270When in a restricted subtree, remove it. 22253When in a restricted subtree, remove it.
@@ -22274,10 +22257,10 @@ or if type is \\='(4), or if the cursor is before the first headline
22274in the file. Otherwise, only apply the restriction to the current 22257in the file. Otherwise, only apply the restriction to the current
22275subtree. 22258subtree.
22276 22259
22277(fn &optional TYPE)" t nil) 22260(fn &optional TYPE)" t)
22278(autoload 'org-calendar-goto-agenda "org-agenda" "\ 22261(autoload 'org-calendar-goto-agenda "org-agenda" "\
22279Compute the Org agenda for the calendar date displayed at the cursor. 22262Compute the Org agenda for the calendar date displayed at the cursor.
22280This is a command that has to be installed in `calendar-mode-map'." t nil) 22263This is a command that has to be installed in `calendar-mode-map'." t)
22281(autoload 'org-agenda-to-appt "org-agenda" "\ 22264(autoload 'org-agenda-to-appt "org-agenda" "\
22282Activate appointments found in `org-agenda-files'. 22265Activate appointments found in `org-agenda-files'.
22283 22266
@@ -22311,7 +22294,7 @@ details and examples.
22311If an entry has a APPT_WARNTIME property, its value will be used 22294If an entry has a APPT_WARNTIME property, its value will be used
22312to override `appt-message-warning-time'. 22295to override `appt-message-warning-time'.
22313 22296
22314(fn &optional REFRESH FILTER &rest ARGS)" t nil) 22297(fn &optional REFRESH FILTER &rest ARGS)" t)
22315(register-definition-prefixes "org-agenda" '("org-")) 22298(register-definition-prefixes "org-agenda" '("org-"))
22316 22299
22317 22300
@@ -22335,7 +22318,7 @@ to override `appt-message-warning-time'.
22335(autoload 'org-capture-string "org-capture" "\ 22318(autoload 'org-capture-string "org-capture" "\
22336Capture STRING with the template selected by KEYS. 22319Capture STRING with the template selected by KEYS.
22337 22320
22338(fn STRING &optional KEYS)" t nil) 22321(fn STRING &optional KEYS)" t)
22339(autoload 'org-capture "org-capture" "\ 22322(autoload 'org-capture "org-capture" "\
22340Capture something. 22323Capture something.
22341\\<org-capture-mode-map> 22324\\<org-capture-mode-map>
@@ -22365,9 +22348,9 @@ agenda will use the date at point as the default date. Then, a
22365`C-1' prefix will tell the capture process to use the HH:MM time 22348`C-1' prefix will tell the capture process to use the HH:MM time
22366of the day at point (if any) or the current HH:MM time. 22349of the day at point (if any) or the current HH:MM time.
22367 22350
22368(fn &optional GOTO KEYS)" t nil) 22351(fn &optional GOTO KEYS)" t)
22369(autoload 'org-capture-import-remember-templates "org-capture" "\ 22352(autoload 'org-capture-import-remember-templates "org-capture" "\
22370Set `org-capture-templates' to be similar to `org-remember-templates'." t nil) 22353Set `org-capture-templates' to be similar to `org-remember-templates'." t)
22371(register-definition-prefixes "org-capture" '("org-capture-")) 22354(register-definition-prefixes "org-capture" '("org-capture-"))
22372 22355
22373 22356
@@ -22389,15 +22372,15 @@ Set `org-capture-templates' to be similar to `org-remember-templates'." t nil)
22389;;; Generated autoloads from org/org-crypt.el 22372;;; Generated autoloads from org/org-crypt.el
22390 22373
22391(autoload 'org-encrypt-entry "org-crypt" "\ 22374(autoload 'org-encrypt-entry "org-crypt" "\
22392Encrypt the content of the current headline." t nil) 22375Encrypt the content of the current headline." t)
22393(autoload 'org-decrypt-entry "org-crypt" "\ 22376(autoload 'org-decrypt-entry "org-crypt" "\
22394Decrypt the content of the current headline." t nil) 22377Decrypt the content of the current headline." t)
22395(autoload 'org-encrypt-entries "org-crypt" "\ 22378(autoload 'org-encrypt-entries "org-crypt" "\
22396Encrypt all top-level entries in the current buffer." t nil) 22379Encrypt all top-level entries in the current buffer." t)
22397(autoload 'org-decrypt-entries "org-crypt" "\ 22380(autoload 'org-decrypt-entries "org-crypt" "\
22398Decrypt all entries in the current buffer." t nil) 22381Decrypt all entries in the current buffer." t)
22399(autoload 'org-crypt-use-before-save-magic "org-crypt" "\ 22382(autoload 'org-crypt-use-before-save-magic "org-crypt" "\
22400Add a hook to automatically encrypt entries before a file is saved to disk." nil nil) 22383Add a hook to automatically encrypt entries before a file is saved to disk.")
22401(register-definition-prefixes "org-crypt" '("org-")) 22384(register-definition-prefixes "org-crypt" '("org-"))
22402 22385
22403 22386
@@ -22550,10 +22533,10 @@ Add a hook to automatically encrypt entries before a file is saved to disk." nil
22550 22533
22551(autoload 'org-release "org-version" "\ 22534(autoload 'org-release "org-version" "\
22552The release version of Org. 22535The release version of Org.
22553Inserted by installing Org mode or when a release is made." nil nil) 22536Inserted by installing Org mode or when a release is made.")
22554(autoload 'org-git-version "org-version" "\ 22537(autoload 'org-git-version "org-version" "\
22555The Git version of Org mode. 22538The Git version of Org mode.
22556Inserted by installing Org or when a release is made." nil nil) 22539Inserted by installing Org or when a release is made.")
22557 22540
22558 22541
22559;;; Generated autoloads from outline.el 22542;;; Generated autoloads from outline.el
@@ -22584,7 +22567,7 @@ beginning of the line. The longer the match, the deeper the level.
22584Turning on outline mode calls the value of `text-mode-hook' and then of 22567Turning on outline mode calls the value of `text-mode-hook' and then of
22585`outline-mode-hook', if they are non-nil. 22568`outline-mode-hook', if they are non-nil.
22586 22569
22587(fn)" t nil) 22570(fn)" t)
22588(autoload 'outline-minor-mode "outline" "\ 22571(autoload 'outline-minor-mode "outline" "\
22589Toggle Outline minor mode. 22572Toggle Outline minor mode.
22590 22573
@@ -22604,7 +22587,7 @@ evaluate `outline-minor-mode'.
22604The mode's hook is called both when the mode is enabled and when 22587The mode's hook is called both when the mode is enabled and when
22605it is disabled. 22588it is disabled.
22606 22589
22607(fn &optional ARG)" t nil) 22590(fn &optional ARG)" t)
22608(register-definition-prefixes "outline" '("outline-")) 22591(register-definition-prefixes "outline" '("outline-"))
22609 22592
22610 22593
@@ -22665,7 +22648,7 @@ Export is done in a buffer named \"*Org KOMA-LETTER Export*\". It
22665will be displayed if `org-export-show-temporary-export-buffer' is 22648will be displayed if `org-export-show-temporary-export-buffer' is
22666non-nil. 22649non-nil.
22667 22650
22668(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil) 22651(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
22669(autoload 'org-koma-letter-export-to-latex "ox-koma-letter" "\ 22652(autoload 'org-koma-letter-export-to-latex "ox-koma-letter" "\
22670Export current buffer as a KOMA Scrlttr2 letter (tex). 22653Export current buffer as a KOMA Scrlttr2 letter (tex).
22671 22654
@@ -22697,7 +22680,7 @@ directory.
22697 22680
22698Return output file's name. 22681Return output file's name.
22699 22682
22700(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil) 22683(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
22701(autoload 'org-koma-letter-export-to-pdf "ox-koma-letter" "\ 22684(autoload 'org-koma-letter-export-to-pdf "ox-koma-letter" "\
22702Export current buffer as a KOMA Scrlttr2 letter (pdf). 22685Export current buffer as a KOMA Scrlttr2 letter (pdf).
22703 22686
@@ -22726,7 +22709,7 @@ file-local settings.
22726 22709
22727Return PDF file's name. 22710Return PDF file's name.
22728 22711
22729(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil) 22712(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
22730(register-definition-prefixes "ox-koma-letter" '("org-koma-letter-")) 22713(register-definition-prefixes "ox-koma-letter" '("org-koma-letter-"))
22731 22714
22732 22715
@@ -22814,15 +22797,15 @@ superfluous call to `package-initialize' from your init-file. If
22814you have code which must run before `package-initialize', put 22797you have code which must run before `package-initialize', put
22815that code in the early init-file. 22798that code in the early init-file.
22816 22799
22817(fn &optional NO-ACTIVATE)" t nil) 22800(fn &optional NO-ACTIVATE)" t)
22818(defun package-activate-all nil "\ 22801(defun package-activate-all nil "\
22819Activate all installed packages. 22802Activate all installed packages.
22820The variable `package-load-list' controls which packages to load." (setq package--activated t) (let* ((elc (concat package-quickstart-file "c")) (qs (if (file-readable-p elc) elc (if (file-readable-p package-quickstart-file) package-quickstart-file)))) (if (and qs (not (bound-and-true-p package-activated-list))) (let ((load-source-file-function nil)) (unless (boundp 'package-activated-list) (setq package-activated-list nil)) (load qs nil 'nomessage)) (require 'package) (package--activate-all)))) 22803The variable `package-load-list' controls which packages to load." (setq package--activated t) (let* ((elc (concat package-quickstart-file "c")) (qs (if (file-readable-p elc) elc (if (file-readable-p package-quickstart-file) package-quickstart-file)))) (if (and qs (not (bound-and-true-p package-activated-list))) (let ((load-source-file-function nil)) (unless (boundp 'package-activated-list) (setq package-activated-list nil)) (load qs nil 'nomessage)) (require 'package) (package--activate-all))))
22821(autoload 'package--activate-all "package" nil nil nil) 22804(autoload 'package--activate-all "package")
22822(autoload 'package-import-keyring "package" "\ 22805(autoload 'package-import-keyring "package" "\
22823Import keys from FILE. 22806Import keys from FILE.
22824 22807
22825(fn &optional FILE)" t nil) 22808(fn &optional FILE)" t)
22826(autoload 'package-refresh-contents "package" "\ 22809(autoload 'package-refresh-contents "package" "\
22827Download descriptions of all configured ELPA packages. 22810Download descriptions of all configured ELPA packages.
22828For each archive configured in the variable `package-archives', 22811For each archive configured in the variable `package-archives',
@@ -22831,7 +22814,7 @@ and make them available for download.
22831Optional argument ASYNC specifies whether to perform the 22814Optional argument ASYNC specifies whether to perform the
22832downloads in the background. 22815downloads in the background.
22833 22816
22834(fn &optional ASYNC)" t nil) 22817(fn &optional ASYNC)" t)
22835(autoload 'package-installed-p "package" "\ 22818(autoload 'package-installed-p "package" "\
22836Return non-nil if PACKAGE, of MIN-VERSION or newer, is installed. 22819Return non-nil if PACKAGE, of MIN-VERSION or newer, is installed.
22837If PACKAGE is a symbol, it is the package name and MIN-VERSION 22820If PACKAGE is a symbol, it is the package name and MIN-VERSION
@@ -22839,7 +22822,7 @@ should be a version list.
22839 22822
22840If PACKAGE is a `package-desc' object, MIN-VERSION is ignored. 22823If PACKAGE is a `package-desc' object, MIN-VERSION is ignored.
22841 22824
22842(fn PACKAGE &optional MIN-VERSION)" nil nil) 22825(fn PACKAGE &optional MIN-VERSION)")
22843(autoload 'package-install "package" "\ 22826(autoload 'package-install "package" "\
22844Install the package PKG. 22827Install the package PKG.
22845PKG can be a `package-desc' or a symbol naming one of the 22828PKG can be a `package-desc' or a symbol naming one of the
@@ -22856,17 +22839,17 @@ non-nil, install the package but do not add it to
22856If PKG is a `package-desc' and it is already installed, don't try 22839If PKG is a `package-desc' and it is already installed, don't try
22857to install it but still mark it as selected. 22840to install it but still mark it as selected.
22858 22841
22859(fn PKG &optional DONT-SELECT)" t nil) 22842(fn PKG &optional DONT-SELECT)" t)
22860(autoload 'package-update "package" "\ 22843(autoload 'package-update "package" "\
22861Update package NAME if a newer version exists. 22844Update package NAME if a newer version exists.
22862 22845
22863(fn NAME)" t nil) 22846(fn NAME)" t)
22864(autoload 'package-update-all "package" "\ 22847(autoload 'package-update-all "package" "\
22865Refresh package list and upgrade all packages. 22848Refresh package list and upgrade all packages.
22866If QUERY, ask the user before updating packages. When called 22849If QUERY, ask the user before updating packages. When called
22867interactively, QUERY is always true. 22850interactively, QUERY is always true.
22868 22851
22869(fn &optional QUERY)" t nil) 22852(fn &optional QUERY)" t)
22870(autoload 'package-install-from-buffer "package" "\ 22853(autoload 'package-install-from-buffer "package" "\
22871Install a package from the current buffer. 22854Install a package from the current buffer.
22872The current buffer is assumed to be a single .el or .tar file or 22855The current buffer is assumed to be a single .el or .tar file or
@@ -22877,46 +22860,46 @@ Specially, if current buffer is a directory, the -pkg.el
22877description file is not mandatory, in which case the information 22860description file is not mandatory, in which case the information
22878is derived from the main .el file in the directory. 22861is derived from the main .el file in the directory.
22879 22862
22880Downloads and installs required packages as needed." t nil) 22863Downloads and installs required packages as needed." t)
22881(autoload 'package-install-file "package" "\ 22864(autoload 'package-install-file "package" "\
22882Install a package from FILE. 22865Install a package from FILE.
22883The file can either be a tar file, an Emacs Lisp file, or a 22866The file can either be a tar file, an Emacs Lisp file, or a
22884directory. 22867directory.
22885 22868
22886(fn FILE)" t nil) 22869(fn FILE)" t)
22887(autoload 'package-install-selected-packages "package" "\ 22870(autoload 'package-install-selected-packages "package" "\
22888Ensure packages in `package-selected-packages' are installed. 22871Ensure packages in `package-selected-packages' are installed.
22889If some packages are not installed, propose to install them. 22872If some packages are not installed, propose to install them.
22890If optional argument NOCONFIRM is non-nil, don't ask for 22873If optional argument NOCONFIRM is non-nil, don't ask for
22891confirmation to install packages. 22874confirmation to install packages.
22892 22875
22893(fn &optional NOCONFIRM)" t nil) 22876(fn &optional NOCONFIRM)" t)
22894(autoload 'package-reinstall "package" "\ 22877(autoload 'package-reinstall "package" "\
22895Reinstall package PKG. 22878Reinstall package PKG.
22896PKG should be either a symbol, the package name, or a `package-desc' 22879PKG should be either a symbol, the package name, or a `package-desc'
22897object. 22880object.
22898 22881
22899(fn PKG)" t nil) 22882(fn PKG)" t)
22900(autoload 'package-recompile "package" "\ 22883(autoload 'package-recompile "package" "\
22901Byte-compile package PKG again. 22884Byte-compile package PKG again.
22902PKG should be either a symbol, the package name, or a `package-desc' 22885PKG should be either a symbol, the package name, or a `package-desc'
22903object. 22886object.
22904 22887
22905(fn PKG)" t nil) 22888(fn PKG)" t)
22906(autoload 'package-recompile-all "package" "\ 22889(autoload 'package-recompile-all "package" "\
22907Byte-compile all installed packages. 22890Byte-compile all installed packages.
22908This is meant to be used only in the case the byte-compiled files 22891This is meant to be used only in the case the byte-compiled files
22909are invalid due to changed byte-code, macros or the like." t nil) 22892are invalid due to changed byte-code, macros or the like." t)
22910(autoload 'package-autoremove "package" "\ 22893(autoload 'package-autoremove "package" "\
22911Remove packages that are no longer needed. 22894Remove packages that are no longer needed.
22912 22895
22913Packages that are no more needed by other packages in 22896Packages that are no more needed by other packages in
22914`package-selected-packages' and their dependencies 22897`package-selected-packages' and their dependencies
22915will be deleted." t nil) 22898will be deleted." t)
22916(autoload 'describe-package "package" "\ 22899(autoload 'describe-package "package" "\
22917Display the full documentation of PACKAGE (a symbol). 22900Display the full documentation of PACKAGE (a symbol).
22918 22901
22919(fn PACKAGE)" t nil) 22902(fn PACKAGE)" t)
22920(autoload 'list-packages "package" "\ 22903(autoload 'list-packages "package" "\
22921Display a list of packages. 22904Display a list of packages.
22922This first fetches the updated list of packages before 22905This first fetches the updated list of packages before
@@ -22925,7 +22908,7 @@ The list is displayed in a buffer named `*Packages*', and
22925includes the package's version, availability status, and a 22908includes the package's version, availability status, and a
22926short description. 22909short description.
22927 22910
22928(fn &optional NO-FETCH)" t nil) 22911(fn &optional NO-FETCH)" t)
22929(defalias 'package-list-packages 'list-packages) 22912(defalias 'package-list-packages 'list-packages)
22930(autoload 'package-get-version "package" "\ 22913(autoload 'package-get-version "package" "\
22931Return the version number of the package in which this is used. 22914Return the version number of the package in which this is used.
@@ -22933,7 +22916,7 @@ Assumes it is used from an Elisp file placed inside the top-level directory
22933of an installed ELPA package. 22916of an installed ELPA package.
22934The return value is a string (or nil in case we can't find it). 22917The return value is a string (or nil in case we can't find it).
22935It works in more cases if the call is in the file which contains 22918It works in more cases if the call is in the file which contains
22936the `Version:' header." nil nil) 22919the `Version:' header.")
22937(function-put 'package-get-version 'pure 't) 22920(function-put 'package-get-version 'pure 't)
22938(defcustom package-quickstart-file (locate-user-emacs-file "package-quickstart.el") "\ 22921(defcustom package-quickstart-file (locate-user-emacs-file "package-quickstart.el") "\
22939Location of the file used to speed up activation of packages at startup." :type 'file :group 'applications :initialize #'custom-initialize-delay :version "27.1") 22922Location of the file used to speed up activation of packages at startup." :type 'file :group 'applications :initialize #'custom-initialize-delay :version "27.1")
@@ -22956,7 +22939,7 @@ is created. The directory need not have any initial contents
22956(i.e., you can use this command to populate an initially empty 22939(i.e., you can use this command to populate an initially empty
22957archive). 22940archive).
22958 22941
22959(fn FILE)" t nil) 22942(fn FILE)" t)
22960(register-definition-prefixes "package-x" '("package-")) 22943(register-definition-prefixes "package-x" '("package-"))
22961 22944
22962 22945
@@ -22979,7 +22962,7 @@ The values returned are identical to those of `decode-time', but
22979any unknown values other than DST are returned as nil, and an 22962any unknown values other than DST are returned as nil, and an
22980unknown DST value is returned as -1. 22963unknown DST value is returned as -1.
22981 22964
22982(fn STRING)" nil nil) 22965(fn STRING)")
22983(register-definition-prefixes "parse-time" '("parse-")) 22966(register-definition-prefixes "parse-time" '("parse-"))
22984 22967
22985 22968
@@ -23027,7 +23010,7 @@ Variables controlling indentation/edit style:
23027See also the user variables `pascal-type-keywords', `pascal-start-keywords' and 23010See also the user variables `pascal-type-keywords', `pascal-start-keywords' and
23028`pascal-separator-keywords'. 23011`pascal-separator-keywords'.
23029 23012
23030(fn)" t nil) 23013(fn)" t)
23031(register-definition-prefixes "pascal" '("electric-pascal-" "pascal-")) 23014(register-definition-prefixes "pascal" '("electric-pascal-" "pascal-"))
23032 23015
23033 23016
@@ -23043,7 +23026,7 @@ Whether passwords are cached at all is controlled by `password-cache'.")
23043(autoload 'password-in-cache-p "password-cache" "\ 23026(autoload 'password-in-cache-p "password-cache" "\
23044Check if KEY is in the cache. 23027Check if KEY is in the cache.
23045 23028
23046(fn KEY)" nil nil) 23029(fn KEY)")
23047(register-definition-prefixes "password-cache" '("password-")) 23030(register-definition-prefixes "password-cache" '("password-"))
23048 23031
23049 23032
@@ -23092,7 +23075,7 @@ Emacs Lisp manual for more information and examples.
23092(fn EXP &rest CASES)" nil t) 23075(fn EXP &rest CASES)" nil t)
23093(function-put 'pcase 'lisp-indent-function 1) 23076(function-put 'pcase 'lisp-indent-function 1)
23094(put 'pcase 'function-documentation '(pcase--make-docstring)) 23077(put 'pcase 'function-documentation '(pcase--make-docstring))
23095(autoload 'pcase--make-docstring "pcase" nil nil nil) 23078(autoload 'pcase--make-docstring "pcase")
23096(autoload 'pcase-exhaustive "pcase" "\ 23079(autoload 'pcase-exhaustive "pcase" "\
23097The exhaustive version of `pcase' (which see). 23080The exhaustive version of `pcase' (which see).
23098If EXP fails to match any of the patterns in CASES, an error is 23081If EXP fails to match any of the patterns in CASES, an error is
@@ -23180,22 +23163,22 @@ for the result of evaluating EXP (first arg to `pcase').
23180;;; Generated autoloads from pcmpl-cvs.el 23163;;; Generated autoloads from pcmpl-cvs.el
23181 23164
23182(autoload 'pcomplete/cvs "pcmpl-cvs" "\ 23165(autoload 'pcomplete/cvs "pcmpl-cvs" "\
23183Completion rules for the `cvs' command." nil nil) 23166Completion rules for the `cvs' command.")
23184(register-definition-prefixes "pcmpl-cvs" '("pcmpl-cvs-")) 23167(register-definition-prefixes "pcmpl-cvs" '("pcmpl-cvs-"))
23185 23168
23186 23169
23187;;; Generated autoloads from pcmpl-gnu.el 23170;;; Generated autoloads from pcmpl-gnu.el
23188 23171
23189(autoload 'pcomplete/gzip "pcmpl-gnu" "\ 23172(autoload 'pcomplete/gzip "pcmpl-gnu" "\
23190Completion for `gzip'." nil nil) 23173Completion for `gzip'.")
23191(autoload 'pcomplete/bzip2 "pcmpl-gnu" "\ 23174(autoload 'pcomplete/bzip2 "pcmpl-gnu" "\
23192Completion for `bzip2'." nil nil) 23175Completion for `bzip2'.")
23193(autoload 'pcomplete/make "pcmpl-gnu" "\ 23176(autoload 'pcomplete/make "pcmpl-gnu" "\
23194Completion for GNU `make'." nil nil) 23177Completion for GNU `make'.")
23195(autoload 'pcomplete/tar "pcmpl-gnu" "\ 23178(autoload 'pcomplete/tar "pcmpl-gnu" "\
23196Completion for the GNU tar utility." nil nil) 23179Completion for the GNU tar utility.")
23197(autoload 'pcomplete/find "pcmpl-gnu" "\ 23180(autoload 'pcomplete/find "pcmpl-gnu" "\
23198Completion for the GNU find utility." nil nil) 23181Completion for the GNU find utility.")
23199(defalias 'pcomplete/gdb 'pcomplete/xargs) 23182(defalias 'pcomplete/gdb 'pcomplete/xargs)
23200(register-definition-prefixes "pcmpl-gnu" '("pcmpl-gnu-" "pcomplete/find")) 23183(register-definition-prefixes "pcmpl-gnu" '("pcmpl-gnu-" "pcomplete/find"))
23201 23184
@@ -23203,62 +23186,62 @@ Completion for the GNU find utility." nil nil)
23203;;; Generated autoloads from pcmpl-linux.el 23186;;; Generated autoloads from pcmpl-linux.el
23204 23187
23205(autoload 'pcomplete/kill "pcmpl-linux" "\ 23188(autoload 'pcomplete/kill "pcmpl-linux" "\
23206Completion for GNU/Linux `kill', using /proc filesystem." nil nil) 23189Completion for GNU/Linux `kill', using /proc filesystem.")
23207(autoload 'pcomplete/umount "pcmpl-linux" "\ 23190(autoload 'pcomplete/umount "pcmpl-linux" "\
23208Completion for GNU/Linux `umount'." nil nil) 23191Completion for GNU/Linux `umount'.")
23209(autoload 'pcomplete/mount "pcmpl-linux" "\ 23192(autoload 'pcomplete/mount "pcmpl-linux" "\
23210Completion for GNU/Linux `mount'." nil nil) 23193Completion for GNU/Linux `mount'.")
23211(register-definition-prefixes "pcmpl-linux" '("pcmpl-linux-" "pcomplete-pare-list")) 23194(register-definition-prefixes "pcmpl-linux" '("pcmpl-linux-" "pcomplete-pare-list"))
23212 23195
23213 23196
23214;;; Generated autoloads from pcmpl-rpm.el 23197;;; Generated autoloads from pcmpl-rpm.el
23215 23198
23216(autoload 'pcomplete/rpm "pcmpl-rpm" "\ 23199(autoload 'pcomplete/rpm "pcmpl-rpm" "\
23217Completion for the `rpm' command." nil nil) 23200Completion for the `rpm' command.")
23218(register-definition-prefixes "pcmpl-rpm" '("pcmpl-rpm-")) 23201(register-definition-prefixes "pcmpl-rpm" '("pcmpl-rpm-"))
23219 23202
23220 23203
23221;;; Generated autoloads from pcmpl-unix.el 23204;;; Generated autoloads from pcmpl-unix.el
23222 23205
23223(autoload 'pcomplete/cd "pcmpl-unix" "\ 23206(autoload 'pcomplete/cd "pcmpl-unix" "\
23224Completion for `cd'." nil nil) 23207Completion for `cd'.")
23225(defalias 'pcomplete/pushd 'pcomplete/cd) 23208(defalias 'pcomplete/pushd 'pcomplete/cd)
23226(autoload 'pcomplete/rmdir "pcmpl-unix" "\ 23209(autoload 'pcomplete/rmdir "pcmpl-unix" "\
23227Completion for `rmdir'." nil nil) 23210Completion for `rmdir'.")
23228(autoload 'pcomplete/rm "pcmpl-unix" "\ 23211(autoload 'pcomplete/rm "pcmpl-unix" "\
23229Completion for `rm'." nil nil) 23212Completion for `rm'.")
23230(autoload 'pcomplete/xargs "pcmpl-unix" "\ 23213(autoload 'pcomplete/xargs "pcmpl-unix" "\
23231Completion for `xargs'." nil nil) 23214Completion for `xargs'.")
23232(defalias 'pcomplete/time 'pcomplete/xargs) 23215(defalias 'pcomplete/time 'pcomplete/xargs)
23233(autoload 'pcomplete/which "pcmpl-unix" "\ 23216(autoload 'pcomplete/which "pcmpl-unix" "\
23234Completion for `which'." nil nil) 23217Completion for `which'.")
23235(autoload 'pcomplete/chown "pcmpl-unix" "\ 23218(autoload 'pcomplete/chown "pcmpl-unix" "\
23236Completion for the `chown' command." nil nil) 23219Completion for the `chown' command.")
23237(autoload 'pcomplete/chgrp "pcmpl-unix" "\ 23220(autoload 'pcomplete/chgrp "pcmpl-unix" "\
23238Completion for the `chgrp' command." nil nil) 23221Completion for the `chgrp' command.")
23239(autoload 'pcomplete/ssh "pcmpl-unix" "\ 23222(autoload 'pcomplete/ssh "pcmpl-unix" "\
23240Completion rules for the `ssh' command." nil nil) 23223Completion rules for the `ssh' command.")
23241(defalias 'pcomplete/rsh #'pcomplete/ssh) 23224(defalias 'pcomplete/rsh #'pcomplete/ssh)
23242(autoload 'pcomplete/scp "pcmpl-unix" "\ 23225(autoload 'pcomplete/scp "pcmpl-unix" "\
23243Completion rules for the `scp' command. 23226Completion rules for the `scp' command.
23244Includes files as well as host names followed by a colon." nil nil) 23227Includes files as well as host names followed by a colon.")
23245(autoload 'pcomplete/telnet "pcmpl-unix" nil nil nil) 23228(autoload 'pcomplete/telnet "pcmpl-unix")
23246(register-definition-prefixes "pcmpl-unix" '("pcmpl-" "pcomplete/")) 23229(register-definition-prefixes "pcmpl-unix" '("pcmpl-" "pcomplete/"))
23247 23230
23248 23231
23249;;; Generated autoloads from pcmpl-x.el 23232;;; Generated autoloads from pcmpl-x.el
23250 23233
23251(autoload 'pcomplete/tlmgr "pcmpl-x" "\ 23234(autoload 'pcomplete/tlmgr "pcmpl-x" "\
23252Completion for the `tlmgr' command." nil nil) 23235Completion for the `tlmgr' command.")
23253(autoload 'pcomplete/ack "pcmpl-x" "\ 23236(autoload 'pcomplete/ack "pcmpl-x" "\
23254Completion for the `ack' command. 23237Completion for the `ack' command.
23255Start an argument with `-' to complete short options and `--' for 23238Start an argument with `-' to complete short options and `--' for
23256long options." nil nil) 23239long options.")
23257(defalias 'pcomplete/ack-grep 'pcomplete/ack) 23240(defalias 'pcomplete/ack-grep 'pcomplete/ack)
23258(autoload 'pcomplete/ag "pcmpl-x" "\ 23241(autoload 'pcomplete/ag "pcmpl-x" "\
23259Completion for the `ag' command." nil nil) 23242Completion for the `ag' command.")
23260(autoload 'pcomplete/bcc32 "pcmpl-x" "\ 23243(autoload 'pcomplete/bcc32 "pcmpl-x" "\
23261Completion function for Borland's C++ compiler." nil nil) 23244Completion function for Borland's C++ compiler.")
23262(defalias 'pcomplete/bcc 'pcomplete/bcc32) 23245(defalias 'pcomplete/bcc 'pcomplete/bcc32)
23263(register-definition-prefixes "pcmpl-x" '("pcmpl-x-")) 23246(register-definition-prefixes "pcmpl-x" '("pcmpl-x-"))
23264 23247
@@ -23270,32 +23253,32 @@ Support extensible programmable completion.
23270To use this function, just bind the TAB key to it, or add it to your 23253To use this function, just bind the TAB key to it, or add it to your
23271completion functions list (it should occur fairly early in the list). 23254completion functions list (it should occur fairly early in the list).
23272 23255
23273(fn &optional INTERACTIVELY)" t nil) 23256(fn &optional INTERACTIVELY)" t)
23274(make-obsolete 'pcomplete '"use completion-at-point and pcomplete-completions-at-point" "27.1") 23257(make-obsolete 'pcomplete '"use completion-at-point and pcomplete-completions-at-point" "27.1")
23275(autoload 'pcomplete-reverse "pcomplete" "\ 23258(autoload 'pcomplete-reverse "pcomplete" "\
23276If cycling completion is in use, cycle backwards." t nil) 23259If cycling completion is in use, cycle backwards." t)
23277(autoload 'pcomplete-expand-and-complete "pcomplete" "\ 23260(autoload 'pcomplete-expand-and-complete "pcomplete" "\
23278Expand the textual value of the current argument. 23261Expand the textual value of the current argument.
23279This will modify the current buffer." t nil) 23262This will modify the current buffer." t)
23280(autoload 'pcomplete-continue "pcomplete" "\ 23263(autoload 'pcomplete-continue "pcomplete" "\
23281Complete without reference to any cycling completions." t nil) 23264Complete without reference to any cycling completions." t)
23282(autoload 'pcomplete-expand "pcomplete" "\ 23265(autoload 'pcomplete-expand "pcomplete" "\
23283Expand the textual value of the current argument. 23266Expand the textual value of the current argument.
23284This will modify the current buffer." t nil) 23267This will modify the current buffer." t)
23285(autoload 'pcomplete-help "pcomplete" "\ 23268(autoload 'pcomplete-help "pcomplete" "\
23286Display any help information relative to the current argument." t nil) 23269Display any help information relative to the current argument." t)
23287(make-obsolete 'pcomplete-help '"use completion-help-at-point and pcomplete-completions-at-point" "27.1") 23270(make-obsolete 'pcomplete-help '"use completion-help-at-point and pcomplete-completions-at-point" "27.1")
23288(autoload 'pcomplete-list "pcomplete" "\ 23271(autoload 'pcomplete-list "pcomplete" "\
23289Show the list of possible completions for the current argument." t nil) 23272Show the list of possible completions for the current argument." t)
23290(autoload 'pcomplete-comint-setup "pcomplete" "\ 23273(autoload 'pcomplete-comint-setup "pcomplete" "\
23291Setup a comint buffer to use pcomplete. 23274Setup a comint buffer to use pcomplete.
23292COMPLETEF-SYM should be the symbol where the 23275COMPLETEF-SYM should be the symbol where the
23293dynamic-complete-functions are kept. For comint mode itself, 23276dynamic-complete-functions are kept. For comint mode itself,
23294this is `comint-dynamic-complete-functions'. 23277this is `comint-dynamic-complete-functions'.
23295 23278
23296(fn COMPLETEF-SYM)" nil nil) 23279(fn COMPLETEF-SYM)")
23297(autoload 'pcomplete-shell-setup "pcomplete" "\ 23280(autoload 'pcomplete-shell-setup "pcomplete" "\
23298Setup `shell-mode' to use pcomplete." nil nil) 23281Setup `shell-mode' to use pcomplete.")
23299(register-definition-prefixes "pcomplete" '("pcomplete-")) 23282(register-definition-prefixes "pcomplete" '("pcomplete-"))
23300 23283
23301 23284
@@ -23313,7 +23296,7 @@ and run `cvs-mode' on it.
23313 23296
23314With a prefix argument, prompt for cvs FLAGS to use. 23297With a prefix argument, prompt for cvs FLAGS to use.
23315 23298
23316(fn MODULES DIR FLAGS &optional ROOT)" t nil) 23299(fn MODULES DIR FLAGS &optional ROOT)" t)
23317(autoload 'cvs-quickdir "pcvs" "\ 23300(autoload 'cvs-quickdir "pcvs" "\
23318Open a *cvs* buffer on DIR without running cvs. 23301Open a *cvs* buffer on DIR without running cvs.
23319With a prefix argument, prompt for a directory to use. 23302With a prefix argument, prompt for a directory to use.
@@ -23322,7 +23305,7 @@ A prefix arg >8 (ex: \\[universal-argument] \\[universal-argument]),
23322Optional argument NOSHOW if non-nil means not to display the buffer. 23305Optional argument NOSHOW if non-nil means not to display the buffer.
23323FLAGS is ignored. 23306FLAGS is ignored.
23324 23307
23325(fn DIR &optional FLAGS NOSHOW)" t nil) 23308(fn DIR &optional FLAGS NOSHOW)" t)
23326(autoload 'cvs-examine "pcvs" "\ 23309(autoload 'cvs-examine "pcvs" "\
23327Run a `cvs -n update' in the specified DIRECTORY. 23310Run a `cvs -n update' in the specified DIRECTORY.
23328That is, check what needs to be done, but don't change the disc. 23311That is, check what needs to be done, but don't change the disc.
@@ -23332,7 +23315,7 @@ A prefix arg >8 (ex: \\[universal-argument] \\[universal-argument]),
23332 prevents reuse of an existing *cvs* buffer. 23315 prevents reuse of an existing *cvs* buffer.
23333Optional argument NOSHOW if non-nil means not to display the buffer. 23316Optional argument NOSHOW if non-nil means not to display the buffer.
23334 23317
23335(fn DIRECTORY FLAGS &optional NOSHOW)" t nil) 23318(fn DIRECTORY FLAGS &optional NOSHOW)" t)
23336(autoload 'cvs-update "pcvs" "\ 23319(autoload 'cvs-update "pcvs" "\
23337Run a `cvs update' in the current working DIRECTORY. 23320Run a `cvs update' in the current working DIRECTORY.
23338Feed the output to a *cvs* buffer and run `cvs-mode' on it. 23321Feed the output to a *cvs* buffer and run `cvs-mode' on it.
@@ -23342,7 +23325,7 @@ A prefix arg >8 (ex: \\[universal-argument] \\[universal-argument]),
23342The prefix is also passed to `cvs-flags-query' to select the FLAGS 23325The prefix is also passed to `cvs-flags-query' to select the FLAGS
23343 passed to cvs. 23326 passed to cvs.
23344 23327
23345(fn DIRECTORY FLAGS)" t nil) 23328(fn DIRECTORY FLAGS)" t)
23346(autoload 'cvs-status "pcvs" "\ 23329(autoload 'cvs-status "pcvs" "\
23347Run a `cvs status' in the current working DIRECTORY. 23330Run a `cvs status' in the current working DIRECTORY.
23348Feed the output to a *cvs* buffer and run `cvs-mode' on it. 23331Feed the output to a *cvs* buffer and run `cvs-mode' on it.
@@ -23351,7 +23334,7 @@ A prefix arg >8 (ex: \\[universal-argument] \\[universal-argument]),
23351 prevents reuse of an existing *cvs* buffer. 23334 prevents reuse of an existing *cvs* buffer.
23352Optional argument NOSHOW if non-nil means not to display the buffer. 23335Optional argument NOSHOW if non-nil means not to display the buffer.
23353 23336
23354(fn DIRECTORY FLAGS &optional NOSHOW)" t nil) 23337(fn DIRECTORY FLAGS &optional NOSHOW)" t)
23355(defvar cvs-dired-action 'cvs-quickdir "\ 23338(defvar cvs-dired-action 'cvs-quickdir "\
23356The action to be performed when opening a CVS directory. 23339The action to be performed when opening a CVS directory.
23357Sensible values are `cvs-examine', `cvs-status' and `cvs-quickdir'.") 23340Sensible values are `cvs-examine', `cvs-status' and `cvs-quickdir'.")
@@ -23405,7 +23388,7 @@ Launch `perl-flymake-command' (which see) and pass to its
23405standard input the contents of the current buffer. The output of 23388standard input the contents of the current buffer. The output of
23406this command is analyzed for error and warning messages. 23389this command is analyzed for error and warning messages.
23407 23390
23408(fn REPORT-FN &rest ARGS)" nil nil) 23391(fn REPORT-FN &rest ARGS)")
23409(autoload 'perl-mode "perl-mode" "\ 23392(autoload 'perl-mode "perl-mode" "\
23410Major mode for editing Perl code. 23393Major mode for editing Perl code.
23411Expression and list commands understand all Perl brackets. 23394Expression and list commands understand all Perl brackets.
@@ -23454,7 +23437,7 @@ Various indentation styles: K&R BSD BLK GNU LW
23454 23437
23455Turning on Perl mode runs the normal hook `perl-mode-hook'. 23438Turning on Perl mode runs the normal hook `perl-mode-hook'.
23456 23439
23457(fn)" t nil) 23440(fn)" t)
23458(register-definition-prefixes "perl-mode" '("perl-")) 23441(register-definition-prefixes "perl-mode" '("perl-"))
23459 23442
23460 23443
@@ -23534,7 +23517,7 @@ by supplying an argument.
23534Entry to this mode calls the value of `picture-mode-hook' if non-nil. 23517Entry to this mode calls the value of `picture-mode-hook' if non-nil.
23535 23518
23536Note that Picture mode commands will work outside of Picture mode, but 23519Note that Picture mode commands will work outside of Picture mode, but
23537they are not by default assigned to keys." t nil) 23520they are not by default assigned to keys." t)
23538(defalias 'edit-picture 'picture-mode) 23521(defalias 'edit-picture 'picture-mode)
23539(register-definition-prefixes "picture" '("picture-")) 23522(register-definition-prefixes "picture" '("picture-"))
23540 23523
@@ -23571,7 +23554,7 @@ evaluate `(default-value \\='pixel-scroll-mode)'.
23571The mode's hook is called both when the mode is enabled and when 23554The mode's hook is called both when the mode is enabled and when
23572it is disabled. 23555it is disabled.
23573 23556
23574(fn &optional ARG)" t nil) 23557(fn &optional ARG)" t)
23575(defvar pixel-scroll-precision-mode nil "\ 23558(defvar pixel-scroll-precision-mode nil "\
23576Non-nil if Pixel-Scroll-Precision mode is enabled. 23559Non-nil if Pixel-Scroll-Precision mode is enabled.
23577See the `pixel-scroll-precision-mode' command 23560See the `pixel-scroll-precision-mode' command
@@ -23601,7 +23584,7 @@ evaluate `(default-value \\='pixel-scroll-precision-mode)'.
23601The mode's hook is called both when the mode is enabled and when 23584The mode's hook is called both when the mode is enabled and when
23602it is disabled. 23585it is disabled.
23603 23586
23604(fn &optional ARG)" t nil) 23587(fn &optional ARG)" t)
23605(register-definition-prefixes "pixel-scroll" '("pixel-")) 23588(register-definition-prefixes "pixel-scroll" '("pixel-"))
23606 23589
23607 23590
@@ -23611,11 +23594,11 @@ it is disabled.
23611(autoload 'plstore-open "plstore" "\ 23594(autoload 'plstore-open "plstore" "\
23612Create a plstore instance associated with FILE. 23595Create a plstore instance associated with FILE.
23613 23596
23614(fn FILE)" nil nil) 23597(fn FILE)")
23615(autoload 'plstore-mode "plstore" "\ 23598(autoload 'plstore-mode "plstore" "\
23616Major mode for editing PLSTORE files. 23599Major mode for editing PLSTORE files.
23617 23600
23618(fn)" t nil) 23601(fn)" t)
23619(register-definition-prefixes "plstore" '("plstore-")) 23602(register-definition-prefixes "plstore" '("plstore-"))
23620 23603
23621 23604
@@ -23630,7 +23613,7 @@ Major mode for editing PLSTORE files.
23630Return a (DECODING . ENCODING) pair, according to PO file's charset. 23613Return a (DECODING . ENCODING) pair, according to PO file's charset.
23631Called through `file-coding-system-alist', before the file is visited for real. 23614Called through `file-coding-system-alist', before the file is visited for real.
23632 23615
23633(fn ARG-LIST)" nil nil) 23616(fn ARG-LIST)")
23634(register-definition-prefixes "po" '("po-")) 23617(register-definition-prefixes "po" '("po-"))
23635 23618
23636 23619
@@ -23643,7 +23626,7 @@ Move left and right bats and try to bounce the ball to your opponent.
23643 23626
23644pong-mode keybindings:\\<pong-mode-map> 23627pong-mode keybindings:\\<pong-mode-map>
23645 23628
23646\\{pong-mode-map}" t nil) 23629\\{pong-mode-map}" t)
23647(register-definition-prefixes "pong" '("pong-")) 23630(register-definition-prefixes "pong" '("pong-"))
23648 23631
23649 23632
@@ -23653,7 +23636,7 @@ pong-mode keybindings:\\<pong-mode-map>
23653Transfer contents of a maildrop to the specified FILE. 23636Transfer contents of a maildrop to the specified FILE.
23654Use streaming commands. 23637Use streaming commands.
23655 23638
23656(fn FILE)" nil nil) 23639(fn FILE)")
23657(register-definition-prefixes "pop3" '("pop3-")) 23640(register-definition-prefixes "pop3" '("pop3-"))
23658 23641
23659 23642
@@ -23664,9 +23647,9 @@ Return a string containing the pretty-printed representation of OBJECT.
23664OBJECT can be any Lisp object. Quoting characters are used as needed 23647OBJECT can be any Lisp object. Quoting characters are used as needed
23665to make output that `read' can handle, whenever this is possible. 23648to make output that `read' can handle, whenever this is possible.
23666 23649
23667(fn OBJECT)" nil nil) 23650(fn OBJECT)")
23668(autoload 'pp-buffer "pp" "\ 23651(autoload 'pp-buffer "pp" "\
23669Prettify the current buffer with printed representation of a Lisp object." t nil) 23652Prettify the current buffer with printed representation of a Lisp object." t)
23670(autoload 'pp "pp" "\ 23653(autoload 'pp "pp" "\
23671Output the pretty-printed representation of OBJECT, any Lisp object. 23654Output the pretty-printed representation of OBJECT, any Lisp object.
23672Quoting characters are printed as needed to make output that `read' 23655Quoting characters are printed as needed to make output that `read'
@@ -23680,7 +23663,7 @@ and vectors. Bind `pp-use-max-width' to a non-nil value to do so.
23680 23663
23681Output stream is STREAM, or value of `standard-output' (which see). 23664Output stream is STREAM, or value of `standard-output' (which see).
23682 23665
23683(fn OBJECT &optional STREAM)" nil nil) 23666(fn OBJECT &optional STREAM)")
23684(autoload 'pp-display-expression "pp" "\ 23667(autoload 'pp-display-expression "pp" "\
23685Prettify and display EXPRESSION in an appropriate way, depending on length. 23668Prettify and display EXPRESSION in an appropriate way, depending on length.
23686If LISP, format with `pp-emacs-lisp-code'; use `pp' otherwise. 23669If LISP, format with `pp-emacs-lisp-code'; use `pp' otherwise.
@@ -23688,39 +23671,38 @@ If LISP, format with `pp-emacs-lisp-code'; use `pp' otherwise.
23688If a temporary buffer is needed for representation, it will be named 23671If a temporary buffer is needed for representation, it will be named
23689after OUT-BUFFER-NAME. 23672after OUT-BUFFER-NAME.
23690 23673
23691(fn EXPRESSION OUT-BUFFER-NAME &optional LISP)" nil nil) 23674(fn EXPRESSION OUT-BUFFER-NAME &optional LISP)")
23692(autoload 'pp-eval-expression "pp" "\ 23675(autoload 'pp-eval-expression "pp" "\
23693Evaluate EXPRESSION and pretty-print its value. 23676Evaluate EXPRESSION and pretty-print its value.
23694Also add the value to the front of the list in the variable `values'. 23677Also add the value to the front of the list in the variable `values'.
23695 23678
23696(fn EXPRESSION)" t nil) 23679(fn EXPRESSION)" t)
23697(autoload 'pp-macroexpand-expression "pp" "\ 23680(autoload 'pp-macroexpand-expression "pp" "\
23698Macroexpand EXPRESSION and pretty-print its value. 23681Macroexpand EXPRESSION and pretty-print its value.
23699 23682
23700(fn EXPRESSION)" t nil) 23683(fn EXPRESSION)" t)
23701(autoload 'pp-eval-last-sexp "pp" "\ 23684(autoload 'pp-eval-last-sexp "pp" "\
23702Run `pp-eval-expression' on sexp before point. 23685Run `pp-eval-expression' on sexp before point.
23703With ARG, pretty-print output into current buffer. 23686With ARG, pretty-print output into current buffer.
23704Ignores leading comment characters. 23687Ignores leading comment characters.
23705 23688
23706(fn ARG)" t nil) 23689(fn ARG)" t)
23707(autoload 'pp-macroexpand-last-sexp "pp" "\ 23690(autoload 'pp-macroexpand-last-sexp "pp" "\
23708Run `pp-macroexpand-expression' on sexp before point. 23691Run `pp-macroexpand-expression' on sexp before point.
23709With ARG, pretty-print output into current buffer. 23692With ARG, pretty-print output into current buffer.
23710Ignores leading comment characters. 23693Ignores leading comment characters.
23711 23694
23712(fn ARG)" t nil) 23695(fn ARG)" t)
23713(autoload 'pp-emacs-lisp-code "pp" "\ 23696(autoload 'pp-emacs-lisp-code "pp" "\
23714Insert SEXP into the current buffer, formatted as Emacs Lisp code. 23697Insert SEXP into the current buffer, formatted as Emacs Lisp code.
23715Use the `pp-max-width' variable to control the desired line length. 23698Use the `pp-max-width' variable to control the desired line length.
23716 23699
23717(fn SEXP)" nil nil) 23700(fn SEXP)")
23718(register-definition-prefixes "pp" '("pp-")) 23701(register-definition-prefixes "pp" '("pp-"))
23719 23702
23720 23703
23721;;; Generated autoloads from printing.el 23704;;; Generated autoloads from printing.el
23722 23705
23723(push (purecopy '(printing 6 9 3)) package--builtin-versions)
23724(autoload 'pr-interface "printing" "\ 23706(autoload 'pr-interface "printing" "\
23725Activate the printing interface buffer. 23707Activate the printing interface buffer.
23726 23708
@@ -23728,7 +23710,7 @@ If BUFFER is nil, the current buffer is used for printing.
23728 23710
23729For more information, type \\[pr-interface-help]. 23711For more information, type \\[pr-interface-help].
23730 23712
23731(fn &optional BUFFER)" t nil) 23713(fn &optional BUFFER)" t)
23732(autoload 'pr-ps-directory-preview "printing" "\ 23714(autoload 'pr-ps-directory-preview "printing" "\
23733Preview directory using ghostview. 23715Preview directory using ghostview.
23734 23716
@@ -23746,7 +23728,7 @@ file name.
23746 23728
23747See also documentation for `pr-list-directory'. 23729See also documentation for `pr-list-directory'.
23748 23730
23749(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) 23731(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t)
23750(autoload 'pr-ps-directory-using-ghostscript "printing" "\ 23732(autoload 'pr-ps-directory-using-ghostscript "printing" "\
23751Print directory using PostScript through ghostscript. 23733Print directory using PostScript through ghostscript.
23752 23734
@@ -23764,7 +23746,7 @@ file name.
23764 23746
23765See also documentation for `pr-list-directory'. 23747See also documentation for `pr-list-directory'.
23766 23748
23767(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) 23749(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t)
23768(autoload 'pr-ps-directory-print "printing" "\ 23750(autoload 'pr-ps-directory-print "printing" "\
23769Print directory using PostScript printer. 23751Print directory using PostScript printer.
23770 23752
@@ -23782,7 +23764,7 @@ file name.
23782 23764
23783See also documentation for `pr-list-directory'. 23765See also documentation for `pr-list-directory'.
23784 23766
23785(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) 23767(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t)
23786(autoload 'pr-ps-directory-ps-print "printing" "\ 23768(autoload 'pr-ps-directory-ps-print "printing" "\
23787Print directory using PostScript printer or through ghostscript. 23769Print directory using PostScript printer or through ghostscript.
23788 23770
@@ -23802,7 +23784,7 @@ file name.
23802 23784
23803See also documentation for `pr-list-directory'. 23785See also documentation for `pr-list-directory'.
23804 23786
23805(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) 23787(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t)
23806(autoload 'pr-ps-buffer-preview "printing" "\ 23788(autoload 'pr-ps-buffer-preview "printing" "\
23807Preview buffer using ghostview. 23789Preview buffer using ghostview.
23808 23790
@@ -23815,7 +23797,7 @@ argument FILENAME is treated as follows: if it's nil, save the image in a
23815temporary file. If FILENAME is a string, save the PostScript image in a file 23797temporary file. If FILENAME is a string, save the PostScript image in a file
23816with that name. If FILENAME is t, prompts for a file name. 23798with that name. If FILENAME is t, prompts for a file name.
23817 23799
23818(fn N-UP &optional FILENAME)" t nil) 23800(fn N-UP &optional FILENAME)" t)
23819(autoload 'pr-ps-buffer-using-ghostscript "printing" "\ 23801(autoload 'pr-ps-buffer-using-ghostscript "printing" "\
23820Print buffer using PostScript through ghostscript. 23802Print buffer using PostScript through ghostscript.
23821 23803
@@ -23828,7 +23810,7 @@ argument FILENAME is treated as follows: if it's nil, send the image to the
23828printer. If FILENAME is a string, save the PostScript image in a file with 23810printer. If FILENAME is a string, save the PostScript image in a file with
23829that name. If FILENAME is t, prompts for a file name. 23811that name. If FILENAME is t, prompts for a file name.
23830 23812
23831(fn N-UP &optional FILENAME)" t nil) 23813(fn N-UP &optional FILENAME)" t)
23832(autoload 'pr-ps-buffer-print "printing" "\ 23814(autoload 'pr-ps-buffer-print "printing" "\
23833Print buffer using PostScript printer. 23815Print buffer using PostScript printer.
23834 23816
@@ -23841,7 +23823,7 @@ argument FILENAME is treated as follows: if it's nil, send the image to the
23841printer. If FILENAME is a string, save the PostScript image in a file with 23823printer. If FILENAME is a string, save the PostScript image in a file with
23842that name. If FILENAME is t, prompts for a file name. 23824that name. If FILENAME is t, prompts for a file name.
23843 23825
23844(fn N-UP &optional FILENAME)" t nil) 23826(fn N-UP &optional FILENAME)" t)
23845(autoload 'pr-ps-buffer-ps-print "printing" "\ 23827(autoload 'pr-ps-buffer-ps-print "printing" "\
23846Print buffer using PostScript printer or through ghostscript. 23828Print buffer using PostScript printer or through ghostscript.
23847 23829
@@ -23856,55 +23838,55 @@ argument FILENAME is treated as follows: if it's nil, send the image to the
23856printer. If FILENAME is a string, save the PostScript image in a file with 23838printer. If FILENAME is a string, save the PostScript image in a file with
23857that name. If FILENAME is t, prompts for a file name. 23839that name. If FILENAME is t, prompts for a file name.
23858 23840
23859(fn N-UP &optional FILENAME)" t nil) 23841(fn N-UP &optional FILENAME)" t)
23860(autoload 'pr-ps-region-preview "printing" "\ 23842(autoload 'pr-ps-region-preview "printing" "\
23861Preview region using ghostview. 23843Preview region using ghostview.
23862 23844
23863See also `pr-ps-buffer-preview'. 23845See also `pr-ps-buffer-preview'.
23864 23846
23865(fn N-UP &optional FILENAME)" t nil) 23847(fn N-UP &optional FILENAME)" t)
23866(autoload 'pr-ps-region-using-ghostscript "printing" "\ 23848(autoload 'pr-ps-region-using-ghostscript "printing" "\
23867Print region using PostScript through ghostscript. 23849Print region using PostScript through ghostscript.
23868 23850
23869See also `pr-ps-buffer-using-ghostscript'. 23851See also `pr-ps-buffer-using-ghostscript'.
23870 23852
23871(fn N-UP &optional FILENAME)" t nil) 23853(fn N-UP &optional FILENAME)" t)
23872(autoload 'pr-ps-region-print "printing" "\ 23854(autoload 'pr-ps-region-print "printing" "\
23873Print region using PostScript printer. 23855Print region using PostScript printer.
23874 23856
23875See also `pr-ps-buffer-print'. 23857See also `pr-ps-buffer-print'.
23876 23858
23877(fn N-UP &optional FILENAME)" t nil) 23859(fn N-UP &optional FILENAME)" t)
23878(autoload 'pr-ps-region-ps-print "printing" "\ 23860(autoload 'pr-ps-region-ps-print "printing" "\
23879Print region using PostScript printer or through ghostscript. 23861Print region using PostScript printer or through ghostscript.
23880 23862
23881See also `pr-ps-buffer-ps-print'. 23863See also `pr-ps-buffer-ps-print'.
23882 23864
23883(fn N-UP &optional FILENAME)" t nil) 23865(fn N-UP &optional FILENAME)" t)
23884(autoload 'pr-ps-mode-preview "printing" "\ 23866(autoload 'pr-ps-mode-preview "printing" "\
23885Preview major mode using ghostview. 23867Preview major mode using ghostview.
23886 23868
23887See also `pr-ps-buffer-preview'. 23869See also `pr-ps-buffer-preview'.
23888 23870
23889(fn N-UP &optional FILENAME)" t nil) 23871(fn N-UP &optional FILENAME)" t)
23890(autoload 'pr-ps-mode-using-ghostscript "printing" "\ 23872(autoload 'pr-ps-mode-using-ghostscript "printing" "\
23891Print major mode using PostScript through ghostscript. 23873Print major mode using PostScript through ghostscript.
23892 23874
23893See also `pr-ps-buffer-using-ghostscript'. 23875See also `pr-ps-buffer-using-ghostscript'.
23894 23876
23895(fn N-UP &optional FILENAME)" t nil) 23877(fn N-UP &optional FILENAME)" t)
23896(autoload 'pr-ps-mode-print "printing" "\ 23878(autoload 'pr-ps-mode-print "printing" "\
23897Print major mode using PostScript printer. 23879Print major mode using PostScript printer.
23898 23880
23899See also `pr-ps-buffer-print'. 23881See also `pr-ps-buffer-print'.
23900 23882
23901(fn N-UP &optional FILENAME)" t nil) 23883(fn N-UP &optional FILENAME)" t)
23902(autoload 'pr-ps-mode-ps-print "printing" "\ 23884(autoload 'pr-ps-mode-ps-print "printing" "\
23903Print major mode using PostScript or through ghostscript. 23885Print major mode using PostScript or through ghostscript.
23904 23886
23905See also `pr-ps-buffer-ps-print'. 23887See also `pr-ps-buffer-ps-print'.
23906 23888
23907(fn N-UP &optional FILENAME)" t nil) 23889(fn N-UP &optional FILENAME)" t)
23908(autoload 'pr-printify-directory "printing" "\ 23890(autoload 'pr-printify-directory "printing" "\
23909Replace nonprinting characters in directory with printable representations. 23891Replace nonprinting characters in directory with printable representations.
23910The printable representations use ^ (for ASCII control characters) or hex. 23892The printable representations use ^ (for ASCII control characters) or hex.
@@ -23918,15 +23900,15 @@ prompts for FILE(name)-REGEXP.
23918 23900
23919See also documentation for `pr-list-directory'. 23901See also documentation for `pr-list-directory'.
23920 23902
23921(fn &optional DIR FILE-REGEXP)" t nil) 23903(fn &optional DIR FILE-REGEXP)" t)
23922(autoload 'pr-printify-buffer "printing" "\ 23904(autoload 'pr-printify-buffer "printing" "\
23923Replace nonprinting characters in buffer with printable representations. 23905Replace nonprinting characters in buffer with printable representations.
23924The printable representations use ^ (for ASCII control characters) or hex. 23906The printable representations use ^ (for ASCII control characters) or hex.
23925The characters tab, linefeed, space, return and formfeed are not affected." t nil) 23907The characters tab, linefeed, space, return and formfeed are not affected." t)
23926(autoload 'pr-printify-region "printing" "\ 23908(autoload 'pr-printify-region "printing" "\
23927Replace nonprinting characters in region with printable representations. 23909Replace nonprinting characters in region with printable representations.
23928The printable representations use ^ (for ASCII control characters) or hex. 23910The printable representations use ^ (for ASCII control characters) or hex.
23929The characters tab, linefeed, space, return and formfeed are not affected." t nil) 23911The characters tab, linefeed, space, return and formfeed are not affected." t)
23930(autoload 'pr-txt-directory "printing" "\ 23912(autoload 'pr-txt-directory "printing" "\
23931Print directory using text printer. 23913Print directory using text printer.
23932 23914
@@ -23938,13 +23920,13 @@ prompts for FILE(name)-REGEXP.
23938 23920
23939See also documentation for `pr-list-directory'. 23921See also documentation for `pr-list-directory'.
23940 23922
23941(fn &optional DIR FILE-REGEXP)" t nil) 23923(fn &optional DIR FILE-REGEXP)" t)
23942(autoload 'pr-txt-buffer "printing" "\ 23924(autoload 'pr-txt-buffer "printing" "\
23943Print buffer using text printer." t nil) 23925Print buffer using text printer." t)
23944(autoload 'pr-txt-region "printing" "\ 23926(autoload 'pr-txt-region "printing" "\
23945Print region using text printer." t nil) 23927Print region using text printer." t)
23946(autoload 'pr-txt-mode "printing" "\ 23928(autoload 'pr-txt-mode "printing" "\
23947Print major mode using text printer." t nil) 23929Print major mode using text printer." t)
23948(autoload 'pr-despool-preview "printing" "\ 23930(autoload 'pr-despool-preview "printing" "\
23949Preview spooled PostScript. 23931Preview spooled PostScript.
23950 23932
@@ -23956,7 +23938,7 @@ Noninteractively, the argument FILENAME is treated as follows: if it is nil,
23956save the image in a temporary file. If FILENAME is a string, save the 23938save the image in a temporary file. If FILENAME is a string, save the
23957PostScript image in a file with that name. 23939PostScript image in a file with that name.
23958 23940
23959(fn &optional FILENAME)" t nil) 23941(fn &optional FILENAME)" t)
23960(autoload 'pr-despool-using-ghostscript "printing" "\ 23942(autoload 'pr-despool-using-ghostscript "printing" "\
23961Print spooled PostScript using ghostscript. 23943Print spooled PostScript using ghostscript.
23962 23944
@@ -23968,7 +23950,7 @@ Noninteractively, the argument FILENAME is treated as follows: if it is nil,
23968send the image to the printer. If FILENAME is a string, save the PostScript 23950send the image to the printer. If FILENAME is a string, save the PostScript
23969image in a file with that name. 23951image in a file with that name.
23970 23952
23971(fn &optional FILENAME)" t nil) 23953(fn &optional FILENAME)" t)
23972(autoload 'pr-despool-print "printing" "\ 23954(autoload 'pr-despool-print "printing" "\
23973Send the spooled PostScript to the printer. 23955Send the spooled PostScript to the printer.
23974 23956
@@ -23980,7 +23962,7 @@ Noninteractively, the argument FILENAME is treated as follows: if it is nil,
23980send the image to the printer. If FILENAME is a string, save the PostScript 23962send the image to the printer. If FILENAME is a string, save the PostScript
23981image in a file with that name. 23963image in a file with that name.
23982 23964
23983(fn &optional FILENAME)" t nil) 23965(fn &optional FILENAME)" t)
23984(autoload 'pr-despool-ps-print "printing" "\ 23966(autoload 'pr-despool-ps-print "printing" "\
23985Send the spooled PostScript to the printer or use ghostscript to print it. 23967Send the spooled PostScript to the printer or use ghostscript to print it.
23986 23968
@@ -23992,27 +23974,27 @@ Noninteractively, the argument FILENAME is treated as follows: if it is nil,
23992send the image to the printer. If FILENAME is a string, save the PostScript 23974send the image to the printer. If FILENAME is a string, save the PostScript
23993image in a file with that name. 23975image in a file with that name.
23994 23976
23995(fn &optional FILENAME)" t nil) 23977(fn &optional FILENAME)" t)
23996(autoload 'pr-ps-file-preview "printing" "\ 23978(autoload 'pr-ps-file-preview "printing" "\
23997Preview PostScript file FILENAME. 23979Preview PostScript file FILENAME.
23998 23980
23999(fn FILENAME)" t nil) 23981(fn FILENAME)" t)
24000(autoload 'pr-ps-file-up-preview "printing" "\ 23982(autoload 'pr-ps-file-up-preview "printing" "\
24001Preview PostScript file FILENAME. 23983Preview PostScript file FILENAME.
24002 23984
24003(fn N-UP IFILENAME &optional OFILENAME)" t nil) 23985(fn N-UP IFILENAME &optional OFILENAME)" t)
24004(autoload 'pr-ps-file-using-ghostscript "printing" "\ 23986(autoload 'pr-ps-file-using-ghostscript "printing" "\
24005Print PostScript file FILENAME using ghostscript. 23987Print PostScript file FILENAME using ghostscript.
24006 23988
24007(fn FILENAME)" t nil) 23989(fn FILENAME)" t)
24008(autoload 'pr-ps-file-print "printing" "\ 23990(autoload 'pr-ps-file-print "printing" "\
24009Print PostScript file FILENAME. 23991Print PostScript file FILENAME.
24010 23992
24011(fn FILENAME)" t nil) 23993(fn FILENAME)" t)
24012(autoload 'pr-ps-file-ps-print "printing" "\ 23994(autoload 'pr-ps-file-ps-print "printing" "\
24013Send PostScript file FILENAME to printer or use ghostscript to print it. 23995Send PostScript file FILENAME to printer or use ghostscript to print it.
24014 23996
24015(fn FILENAME)" t nil) 23997(fn FILENAME)" t)
24016(autoload 'pr-ps-file-up-ps-print "printing" "\ 23998(autoload 'pr-ps-file-up-ps-print "printing" "\
24017Process a PostScript file IFILENAME and send it to printer. 23999Process a PostScript file IFILENAME and send it to printer.
24018 24000
@@ -24029,81 +24011,81 @@ nil, send the image to the printer. If OFILENAME is a string, save the
24029PostScript image in a file with that name. If OFILENAME is t, prompts for a 24011PostScript image in a file with that name. If OFILENAME is t, prompts for a
24030file name. 24012file name.
24031 24013
24032(fn N-UP IFILENAME &optional OFILENAME)" t nil) 24014(fn N-UP IFILENAME &optional OFILENAME)" t)
24033(autoload 'pr-toggle-file-duplex "printing" "\ 24015(autoload 'pr-toggle-file-duplex "printing" "\
24034Toggle duplex for PostScript file." t nil) 24016Toggle duplex for PostScript file." t)
24035(autoload 'pr-toggle-file-tumble "printing" "\ 24017(autoload 'pr-toggle-file-tumble "printing" "\
24036Toggle tumble for PostScript file. 24018Toggle tumble for PostScript file.
24037 24019
24038If tumble is off, produces a printing suitable for binding on the left or 24020If tumble is off, produces a printing suitable for binding on the left or
24039right. 24021right.
24040If tumble is on, produces a printing suitable for binding at the top or 24022If tumble is on, produces a printing suitable for binding at the top or
24041bottom." t nil) 24023bottom." t)
24042(autoload 'pr-toggle-file-landscape "printing" "\ 24024(autoload 'pr-toggle-file-landscape "printing" "\
24043Toggle landscape for PostScript file." t nil) 24025Toggle landscape for PostScript file." t)
24044(autoload 'pr-toggle-ghostscript "printing" "\ 24026(autoload 'pr-toggle-ghostscript "printing" "\
24045Toggle printing using ghostscript." t nil) 24027Toggle printing using ghostscript." t)
24046(autoload 'pr-toggle-faces "printing" "\ 24028(autoload 'pr-toggle-faces "printing" "\
24047Toggle printing with faces." t nil) 24029Toggle printing with faces." t)
24048(autoload 'pr-toggle-spool "printing" "\ 24030(autoload 'pr-toggle-spool "printing" "\
24049Toggle spooling." t nil) 24031Toggle spooling." t)
24050(autoload 'pr-toggle-duplex "printing" "\ 24032(autoload 'pr-toggle-duplex "printing" "\
24051Toggle duplex." t nil) 24033Toggle duplex." t)
24052(autoload 'pr-toggle-tumble "printing" "\ 24034(autoload 'pr-toggle-tumble "printing" "\
24053Toggle tumble. 24035Toggle tumble.
24054 24036
24055If tumble is off, produces a printing suitable for binding on the left or 24037If tumble is off, produces a printing suitable for binding on the left or
24056right. 24038right.
24057If tumble is on, produces a printing suitable for binding at the top or 24039If tumble is on, produces a printing suitable for binding at the top or
24058bottom." t nil) 24040bottom." t)
24059(autoload 'pr-toggle-landscape "printing" "\ 24041(autoload 'pr-toggle-landscape "printing" "\
24060Toggle landscape." t nil) 24042Toggle landscape." t)
24061(autoload 'pr-toggle-upside-down "printing" "\ 24043(autoload 'pr-toggle-upside-down "printing" "\
24062Toggle upside-down." t nil) 24044Toggle upside-down." t)
24063(autoload 'pr-toggle-line "printing" "\ 24045(autoload 'pr-toggle-line "printing" "\
24064Toggle line number." t nil) 24046Toggle line number." t)
24065(autoload 'pr-toggle-zebra "printing" "\ 24047(autoload 'pr-toggle-zebra "printing" "\
24066Toggle zebra stripes." t nil) 24048Toggle zebra stripes." t)
24067(autoload 'pr-toggle-header "printing" "\ 24049(autoload 'pr-toggle-header "printing" "\
24068Toggle printing header." t nil) 24050Toggle printing header." t)
24069(autoload 'pr-toggle-header-frame "printing" "\ 24051(autoload 'pr-toggle-header-frame "printing" "\
24070Toggle printing header frame." t nil) 24052Toggle printing header frame." t)
24071(autoload 'pr-toggle-lock "printing" "\ 24053(autoload 'pr-toggle-lock "printing" "\
24072Toggle menu lock." t nil) 24054Toggle menu lock." t)
24073(autoload 'pr-toggle-region "printing" "\ 24055(autoload 'pr-toggle-region "printing" "\
24074Toggle whether the region is automagically detected." t nil) 24056Toggle whether the region is automagically detected." t)
24075(autoload 'pr-toggle-mode "printing" "\ 24057(autoload 'pr-toggle-mode "printing" "\
24076Toggle auto mode." t nil) 24058Toggle auto mode." t)
24077(autoload 'pr-customize "printing" "\ 24059(autoload 'pr-customize "printing" "\
24078Customization of the `printing' group. 24060Customization of the `printing' group.
24079 24061
24080(fn &rest IGNORE)" t nil) 24062(fn &rest IGNORE)" t)
24081(autoload 'lpr-customize "printing" "\ 24063(autoload 'lpr-customize "printing" "\
24082Customization of the `lpr' group. 24064Customization of the `lpr' group.
24083 24065
24084(fn &rest IGNORE)" t nil) 24066(fn &rest IGNORE)" t)
24085(autoload 'pr-help "printing" "\ 24067(autoload 'pr-help "printing" "\
24086Help for the printing package. 24068Help for the printing package.
24087 24069
24088(fn &rest IGNORE)" t nil) 24070(fn &rest IGNORE)" t)
24089(autoload 'pr-ps-name "printing" "\ 24071(autoload 'pr-ps-name "printing" "\
24090Interactively select a PostScript printer." t nil) 24072Interactively select a PostScript printer." t)
24091(autoload 'pr-txt-name "printing" "\ 24073(autoload 'pr-txt-name "printing" "\
24092Interactively select a text printer." t nil) 24074Interactively select a text printer." t)
24093(autoload 'pr-ps-utility "printing" "\ 24075(autoload 'pr-ps-utility "printing" "\
24094Interactively select a PostScript utility." t nil) 24076Interactively select a PostScript utility." t)
24095(autoload 'pr-show-ps-setup "printing" "\ 24077(autoload 'pr-show-ps-setup "printing" "\
24096Show current ps-print settings. 24078Show current ps-print settings.
24097 24079
24098(fn &rest IGNORE)" t nil) 24080(fn &rest IGNORE)" t)
24099(autoload 'pr-show-pr-setup "printing" "\ 24081(autoload 'pr-show-pr-setup "printing" "\
24100Show current printing settings. 24082Show current printing settings.
24101 24083
24102(fn &rest IGNORE)" t nil) 24084(fn &rest IGNORE)" t)
24103(autoload 'pr-show-lpr-setup "printing" "\ 24085(autoload 'pr-show-lpr-setup "printing" "\
24104Show current lpr settings. 24086Show current lpr settings.
24105 24087
24106(fn &rest IGNORE)" t nil) 24088(fn &rest IGNORE)" t)
24107(autoload 'pr-ps-fast-fire "printing" "\ 24089(autoload 'pr-ps-fast-fire "printing" "\
24108Fast fire function for PostScript printing. 24090Fast fire function for PostScript printing.
24109 24091
@@ -24165,7 +24147,7 @@ zero and the argument SELECT is treated as follows:
24165Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode' 24147Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
24166are both set to t. 24148are both set to t.
24167 24149
24168(fn N-UP &optional SELECT)" t nil) 24150(fn N-UP &optional SELECT)" t)
24169(autoload 'pr-txt-fast-fire "printing" "\ 24151(autoload 'pr-txt-fast-fire "printing" "\
24170Fast fire function for text printing. 24152Fast fire function for text printing.
24171 24153
@@ -24190,7 +24172,7 @@ Noninteractively, the argument SELECT-PRINTER is treated as follows:
24190Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode' 24172Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
24191are both set to t. 24173are both set to t.
24192 24174
24193(fn &optional SELECT-PRINTER)" t nil) 24175(fn &optional SELECT-PRINTER)" t)
24194(register-definition-prefixes "printing" '("lpr-setup" "pr-")) 24176(register-definition-prefixes "printing" '("lpr-setup" "pr-"))
24195 24177
24196 24178
@@ -24211,7 +24193,7 @@ This function runs the normal hook `proced-post-display-hook'.
24211See `proced-mode' for a description of features available in 24193See `proced-mode' for a description of features available in
24212Proced buffers. 24194Proced buffers.
24213 24195
24214(fn &optional ARG)" t nil) 24196(fn &optional ARG)" t)
24215(register-definition-prefixes "proced" '("proced-")) 24197(register-definition-prefixes "proced" '("proced-"))
24216 24198
24217 24199
@@ -24227,19 +24209,19 @@ If MODE is `mem' or `cpu+mem', start profiler that samples CPU
24227 if SIGPROF is not supported, or is unreliable, or is not sampling 24209 if SIGPROF is not supported, or is unreliable, or is not sampling
24228 at a high enough frequency. 24210 at a high enough frequency.
24229 24211
24230(fn MODE)" t nil) 24212(fn MODE)" t)
24231(autoload 'profiler-find-profile "profiler" "\ 24213(autoload 'profiler-find-profile "profiler" "\
24232Open profile FILENAME. 24214Open profile FILENAME.
24233 24215
24234(fn FILENAME)" t nil) 24216(fn FILENAME)" t)
24235(autoload 'profiler-find-profile-other-window "profiler" "\ 24217(autoload 'profiler-find-profile-other-window "profiler" "\
24236Open profile FILENAME. 24218Open profile FILENAME.
24237 24219
24238(fn FILENAME)" t nil) 24220(fn FILENAME)" t)
24239(autoload 'profiler-find-profile-other-frame "profiler" "\ 24221(autoload 'profiler-find-profile-other-frame "profiler" "\
24240Open profile FILENAME. 24222Open profile FILENAME.
24241 24223
24242(fn FILENAME)" t nil) 24224(fn FILENAME)" t)
24243(register-definition-prefixes "profiler" '("profiler-")) 24225(register-definition-prefixes "profiler" '("profiler-"))
24244 24226
24245 24227
@@ -24318,7 +24300,7 @@ ignored (per `project-ignores').
24318See the doc string of `project-find-functions' for the general form 24300See the doc string of `project-find-functions' for the general form
24319of the project instance object. 24301of the project instance object.
24320 24302
24321(fn &optional MAYBE-PROMPT DIRECTORY)" nil nil) 24303(fn &optional MAYBE-PROMPT DIRECTORY)")
24322(defvar project-prefix-map (let ((map (make-sparse-keymap))) (define-key map "!" 'project-shell-command) (define-key map "&" 'project-async-shell-command) (define-key map "f" 'project-find-file) (define-key map "F" 'project-or-external-find-file) (define-key map "b" 'project-switch-to-buffer) (define-key map "s" 'project-shell) (define-key map "d" 'project-find-dir) (define-key map "D" 'project-dired) (define-key map "v" 'project-vc-dir) (define-key map "c" 'project-compile) (define-key map "e" 'project-eshell) (define-key map "k" 'project-kill-buffers) (define-key map "p" 'project-switch-project) (define-key map "g" 'project-find-regexp) (define-key map "G" 'project-or-external-find-regexp) (define-key map "r" 'project-query-replace-regexp) (define-key map "x" 'project-execute-extended-command) map) "\ 24304(defvar project-prefix-map (let ((map (make-sparse-keymap))) (define-key map "!" 'project-shell-command) (define-key map "&" 'project-async-shell-command) (define-key map "f" 'project-find-file) (define-key map "F" 'project-or-external-find-file) (define-key map "b" 'project-switch-to-buffer) (define-key map "s" 'project-shell) (define-key map "d" 'project-find-dir) (define-key map "D" 'project-dired) (define-key map "v" 'project-vc-dir) (define-key map "c" 'project-compile) (define-key map "e" 'project-eshell) (define-key map "k" 'project-kill-buffers) (define-key map "p" 'project-switch-project) (define-key map "g" 'project-find-regexp) (define-key map "G" 'project-or-external-find-regexp) (define-key map "r" 'project-query-replace-regexp) (define-key map "x" 'project-execute-extended-command) map) "\
24323Keymap for project commands.") 24305Keymap for project commands.")
24324 (define-key ctl-x-map "p" project-prefix-map) 24306 (define-key ctl-x-map "p" project-prefix-map)
@@ -24328,7 +24310,7 @@ Run project command, displaying resultant buffer in another window.
24328The following commands are available: 24310The following commands are available:
24329 24311
24330\\{project-prefix-map} 24312\\{project-prefix-map}
24331\\{project-other-window-map}" t nil) 24313\\{project-other-window-map}" t)
24332 (define-key ctl-x-4-map "p" #'project-other-window-command) 24314 (define-key ctl-x-4-map "p" #'project-other-window-command)
24333(autoload 'project-other-frame-command "project" "\ 24315(autoload 'project-other-frame-command "project" "\
24334Run project command, displaying resultant buffer in another frame. 24316Run project command, displaying resultant buffer in another frame.
@@ -24336,14 +24318,14 @@ Run project command, displaying resultant buffer in another frame.
24336The following commands are available: 24318The following commands are available:
24337 24319
24338\\{project-prefix-map} 24320\\{project-prefix-map}
24339\\{project-other-frame-map}" t nil) 24321\\{project-other-frame-map}" t)
24340 (define-key ctl-x-5-map "p" #'project-other-frame-command) 24322 (define-key ctl-x-5-map "p" #'project-other-frame-command)
24341(autoload 'project-other-tab-command "project" "\ 24323(autoload 'project-other-tab-command "project" "\
24342Run project command, displaying resultant buffer in a new tab. 24324Run project command, displaying resultant buffer in a new tab.
24343 24325
24344The following commands are available: 24326The following commands are available:
24345 24327
24346\\{project-prefix-map}" t nil) 24328\\{project-prefix-map}" t)
24347(when (bound-and-true-p tab-prefix-map) (define-key tab-prefix-map "p" #'project-other-tab-command)) 24329(when (bound-and-true-p tab-prefix-map) (define-key tab-prefix-map "p" #'project-other-tab-command))
24348(autoload 'project-find-regexp "project" "\ 24330(autoload 'project-find-regexp "project" "\
24349Find all matches for REGEXP in the current project's roots. 24331Find all matches for REGEXP in the current project's roots.
@@ -24354,13 +24336,13 @@ e.g. entering `ch' is equivalent to `*.[ch]'. As whitespace
24354triggers completion when entering a pattern, including it 24336triggers completion when entering a pattern, including it
24355requires quoting, e.g. `\\[quoted-insert]<space>'. 24337requires quoting, e.g. `\\[quoted-insert]<space>'.
24356 24338
24357(fn REGEXP)" t nil) 24339(fn REGEXP)" t)
24358(autoload 'project-or-external-find-regexp "project" "\ 24340(autoload 'project-or-external-find-regexp "project" "\
24359Find all matches for REGEXP in the project roots or external roots. 24341Find all matches for REGEXP in the project roots or external roots.
24360With \\[universal-argument] prefix, you can specify the file name 24342With \\[universal-argument] prefix, you can specify the file name
24361pattern to search for. 24343pattern to search for.
24362 24344
24363(fn REGEXP)" t nil) 24345(fn REGEXP)" t)
24364(autoload 'project-find-file "project" "\ 24346(autoload 'project-find-file "project" "\
24365Visit a file (with completion) in the current project. 24347Visit a file (with completion) in the current project.
24366 24348
@@ -24371,7 +24353,7 @@ If INCLUDE-ALL is non-nil, or with prefix argument when called
24371interactively, include all files under the project root, except 24353interactively, include all files under the project root, except
24372for VCS directories listed in `vc-directory-exclusion-list'. 24354for VCS directories listed in `vc-directory-exclusion-list'.
24373 24355
24374(fn &optional INCLUDE-ALL)" t nil) 24356(fn &optional INCLUDE-ALL)" t)
24375(autoload 'project-or-external-find-file "project" "\ 24357(autoload 'project-or-external-find-file "project" "\
24376Visit a file (with completion) in the current project or external roots. 24358Visit a file (with completion) in the current project or external roots.
24377 24359
@@ -24382,30 +24364,30 @@ If INCLUDE-ALL is non-nil, or with prefix argument when called
24382interactively, include all files under the project root, except 24364interactively, include all files under the project root, except
24383for VCS directories listed in `vc-directory-exclusion-list'. 24365for VCS directories listed in `vc-directory-exclusion-list'.
24384 24366
24385(fn &optional INCLUDE-ALL)" t nil) 24367(fn &optional INCLUDE-ALL)" t)
24386(autoload 'project-find-dir "project" "\ 24368(autoload 'project-find-dir "project" "\
24387Start Dired in a directory inside the current project." t nil) 24369Start Dired in a directory inside the current project." t)
24388(autoload 'project-dired "project" "\ 24370(autoload 'project-dired "project" "\
24389Start Dired in the current project's root." t nil) 24371Start Dired in the current project's root." t)
24390(autoload 'project-vc-dir "project" "\ 24372(autoload 'project-vc-dir "project" "\
24391Run VC-Dir in the current project's root." t nil) 24373Run VC-Dir in the current project's root." t)
24392(autoload 'project-shell "project" "\ 24374(autoload 'project-shell "project" "\
24393Start an inferior shell in the current project's root directory. 24375Start an inferior shell in the current project's root directory.
24394If a buffer already exists for running a shell in the project's root, 24376If a buffer already exists for running a shell in the project's root,
24395switch to it. Otherwise, create a new shell buffer. 24377switch to it. Otherwise, create a new shell buffer.
24396With \\[universal-argument] prefix arg, create a new inferior shell buffer even 24378With \\[universal-argument] prefix arg, create a new inferior shell buffer even
24397if one already exists." t nil) 24379if one already exists." t)
24398(autoload 'project-eshell "project" "\ 24380(autoload 'project-eshell "project" "\
24399Start Eshell in the current project's root directory. 24381Start Eshell in the current project's root directory.
24400If a buffer already exists for running Eshell in the project's root, 24382If a buffer already exists for running Eshell in the project's root,
24401switch to it. Otherwise, create a new Eshell buffer. 24383switch to it. Otherwise, create a new Eshell buffer.
24402With \\[universal-argument] prefix arg, create a new Eshell buffer even 24384With \\[universal-argument] prefix arg, create a new Eshell buffer even
24403if one already exists." t nil) 24385if one already exists." t)
24404(autoload 'project-async-shell-command "project" "\ 24386(autoload 'project-async-shell-command "project" "\
24405Run `async-shell-command' in the current project's root directory." t nil) 24387Run `async-shell-command' in the current project's root directory." t)
24406(function-put 'project-async-shell-command 'interactive-only 'async-shell-command) 24388(function-put 'project-async-shell-command 'interactive-only 'async-shell-command)
24407(autoload 'project-shell-command "project" "\ 24389(autoload 'project-shell-command "project" "\
24408Run `shell-command' in the current project's root directory." t nil) 24390Run `shell-command' in the current project's root directory." t)
24409(function-put 'project-shell-command 'interactive-only 'shell-command) 24391(function-put 'project-shell-command 'interactive-only 'shell-command)
24410(autoload 'project-search "project" "\ 24392(autoload 'project-search "project" "\
24411Search for REGEXP in all the files of the project. 24393Search for REGEXP in all the files of the project.
@@ -24413,7 +24395,7 @@ Stops when a match is found.
24413To continue searching for the next match, use the 24395To continue searching for the next match, use the
24414command \\[fileloop-continue]. 24396command \\[fileloop-continue].
24415 24397
24416(fn REGEXP)" t nil) 24398(fn REGEXP)" t)
24417(autoload 'project-query-replace-regexp "project" "\ 24399(autoload 'project-query-replace-regexp "project" "\
24418Query-replace REGEXP in all the files of the project. 24400Query-replace REGEXP in all the files of the project.
24419Stops when a match is found and prompts for whether to replace it. 24401Stops when a match is found and prompts for whether to replace it.
@@ -24424,9 +24406,9 @@ type \\[help-command] at that time.
24424If you exit the `query-replace', you can later continue the 24406If you exit the `query-replace', you can later continue the
24425`query-replace' loop using the command \\[fileloop-continue]. 24407`query-replace' loop using the command \\[fileloop-continue].
24426 24408
24427(fn FROM TO)" t nil) 24409(fn FROM TO)" t)
24428(autoload 'project-compile "project" "\ 24410(autoload 'project-compile "project" "\
24429Run `compile' in the project root." t nil) 24411Run `compile' in the project root." t)
24430(function-put 'project-compile 'interactive-only 'compile) 24412(function-put 'project-compile 'interactive-only 'compile)
24431(autoload 'project-switch-to-buffer "project" "\ 24413(autoload 'project-switch-to-buffer "project" "\
24432Display buffer BUFFER-OR-NAME in the selected window. 24414Display buffer BUFFER-OR-NAME in the selected window.
@@ -24435,7 +24417,7 @@ current project. Two buffers belong to the same project if their
24435project instances, as reported by `project-current' in each 24417project instances, as reported by `project-current' in each
24436buffer, are identical. 24418buffer, are identical.
24437 24419
24438(fn BUFFER-OR-NAME)" t nil) 24420(fn BUFFER-OR-NAME)" t)
24439(autoload 'project-display-buffer "project" "\ 24421(autoload 'project-display-buffer "project" "\
24440Display BUFFER-OR-NAME in some window, without selecting it. 24422Display BUFFER-OR-NAME in some window, without selecting it.
24441When called interactively, prompts for a buffer belonging to the 24423When called interactively, prompts for a buffer belonging to the
@@ -24446,7 +24428,7 @@ buffer, are identical.
24446This function uses `display-buffer' as a subroutine, which see 24428This function uses `display-buffer' as a subroutine, which see
24447for how it is determined where the buffer will be displayed. 24429for how it is determined where the buffer will be displayed.
24448 24430
24449(fn BUFFER-OR-NAME)" t nil) 24431(fn BUFFER-OR-NAME)" t)
24450(autoload 'project-display-buffer-other-frame "project" "\ 24432(autoload 'project-display-buffer-other-frame "project" "\
24451Display BUFFER-OR-NAME preferably in another frame. 24433Display BUFFER-OR-NAME preferably in another frame.
24452When called interactively, prompts for a buffer belonging to the 24434When called interactively, prompts for a buffer belonging to the
@@ -24458,7 +24440,7 @@ This function uses `display-buffer-other-frame' as a subroutine,
24458which see for how it is determined where the buffer will be 24440which see for how it is determined where the buffer will be
24459displayed. 24441displayed.
24460 24442
24461(fn BUFFER-OR-NAME)" t nil) 24443(fn BUFFER-OR-NAME)" t)
24462(autoload 'project-kill-buffers "project" "\ 24444(autoload 'project-kill-buffers "project" "\
24463Kill the buffers belonging to the current project. 24445Kill the buffers belonging to the current project.
24464Two buffers belong to the same project if their project 24446Two buffers belong to the same project if their project
@@ -24471,23 +24453,23 @@ interactively.
24471 24453
24472Also see the `project-kill-buffers-display-buffer-list' variable. 24454Also see the `project-kill-buffers-display-buffer-list' variable.
24473 24455
24474(fn &optional NO-CONFIRM)" t nil) 24456(fn &optional NO-CONFIRM)" t)
24475(autoload 'project-remember-project "project" "\ 24457(autoload 'project-remember-project "project" "\
24476Add project PR to the front of the project list. 24458Add project PR to the front of the project list.
24477Save the result in `project-list-file' if the list of projects 24459Save the result in `project-list-file' if the list of projects
24478has changed, and NO-WRITE is nil. 24460has changed, and NO-WRITE is nil.
24479 24461
24480(fn PR &optional NO-WRITE)" nil nil) 24462(fn PR &optional NO-WRITE)")
24481(autoload 'project-forget-project "project" "\ 24463(autoload 'project-forget-project "project" "\
24482Remove directory PROJECT-ROOT from the project list. 24464Remove directory PROJECT-ROOT from the project list.
24483PROJECT-ROOT is the root directory of a known project listed in 24465PROJECT-ROOT is the root directory of a known project listed in
24484the project list. 24466the project list.
24485 24467
24486(fn PROJECT-ROOT)" t nil) 24468(fn PROJECT-ROOT)" t)
24487(autoload 'project-known-project-roots "project" "\ 24469(autoload 'project-known-project-roots "project" "\
24488Return the list of root directories of all known projects." nil nil) 24470Return the list of root directories of all known projects.")
24489(autoload 'project-execute-extended-command "project" "\ 24471(autoload 'project-execute-extended-command "project" "\
24490Execute an extended command in project root." t nil) 24472Execute an extended command in project root." t)
24491(function-put 'project-execute-extended-command 'interactive-only 'command-execute) 24473(function-put 'project-execute-extended-command 'interactive-only 'command-execute)
24492(autoload 'project-switch-project "project" "\ 24474(autoload 'project-switch-project "project" "\
24493\"Switch\" to another project by running an Emacs command. 24475\"Switch\" to another project by running an Emacs command.
@@ -24497,7 +24479,7 @@ made from `project-switch-commands'.
24497When called in a program, it will use the project corresponding 24479When called in a program, it will use the project corresponding
24498to directory DIR. 24480to directory DIR.
24499 24481
24500(fn DIR)" t nil) 24482(fn DIR)" t)
24501(register-definition-prefixes "project" '("project-")) 24483(register-definition-prefixes "project" '("project-"))
24502 24484
24503 24485
@@ -24522,17 +24504,17 @@ To find out what version of Prolog mode you are running, enter
24522Commands: 24504Commands:
24523\\{prolog-mode-map} 24505\\{prolog-mode-map}
24524 24506
24525(fn)" t nil) 24507(fn)" t)
24526(autoload 'mercury-mode "prolog" "\ 24508(autoload 'mercury-mode "prolog" "\
24527Major mode for editing Mercury programs. 24509Major mode for editing Mercury programs.
24528Actually this is just customized `prolog-mode'. 24510Actually this is just customized `prolog-mode'.
24529 24511
24530(fn)" t nil) 24512(fn)" t)
24531(autoload 'run-prolog "prolog" "\ 24513(autoload 'run-prolog "prolog" "\
24532Run an inferior Prolog process, input and output via buffer *prolog*. 24514Run an inferior Prolog process, input and output via buffer *prolog*.
24533With prefix argument ARG, restart the Prolog process if running before. 24515With prefix argument ARG, restart the Prolog process if running before.
24534 24516
24535(fn ARG)" t nil) 24517(fn ARG)" t)
24536(register-definition-prefixes "prolog" '("mercury-mode-map" "prolog-")) 24518(register-definition-prefixes "prolog" '("mercury-mode-map" "prolog-"))
24537 24519
24538 24520
@@ -24586,7 +24568,7 @@ point to the corresponding spot in the PostScript window, if input
24586to the interpreter was sent from that window. 24568to the interpreter was sent from that window.
24587Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number has the same effect. 24569Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number has the same effect.
24588 24570
24589(fn)" t nil) 24571(fn)" t)
24590(register-definition-prefixes "ps-mode" '("ps-")) 24572(register-definition-prefixes "ps-mode" '("ps-"))
24591 24573
24592 24574
@@ -24597,7 +24579,6 @@ Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number
24597 24579
24598;;; Generated autoloads from ps-print.el 24580;;; Generated autoloads from ps-print.el
24599 24581
24600(push (purecopy '(ps-print 7 3 5)) package--builtin-versions)
24601(defvar ps-page-dimensions-database (purecopy (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list 'letter (* 72 8.5) (* 72 11.0) "Letter") (list 'legal (* 72 8.5) (* 72 14.0) "Legal") (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall") (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid") (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger") (list 'statement (* 72 5.5) (* 72 8.5) "Statement") (list 'executive (* 72 7.5) (* 72 10.0) "Executive") (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small") (list 'b4 (* 72 10.125) (* 72 14.33) "B4") (list 'b5 (* 72 7.16) (* 72 10.125) "B5") '(addresslarge 236.0 99.0 "AddressLarge") '(addresssmall 236.0 68.0 "AddressSmall") '(cuthanging13 90.0 222.0 "CutHanging13") '(cuthanging15 90.0 114.0 "CutHanging15") '(diskette 181.0 136.0 "Diskette") '(eurofilefolder 139.0 112.0 "EuropeanFilefolder") '(eurofoldernarrow 526.0 107.0 "EuroFolderNarrow") '(eurofolderwide 526.0 136.0 "EuroFolderWide") '(euronamebadge 189.0 108.0 "EuroNameBadge") '(euronamebadgelarge 223.0 136.0 "EuroNameBadgeLarge") '(filefolder 230.0 37.0 "FileFolder") '(jewelry 76.0 136.0 "Jewelry") '(mediabadge 180.0 136.0 "MediaBadge") '(multipurpose 126.0 68.0 "MultiPurpose") '(retaillabel 90.0 104.0 "RetailLabel") '(shipping 271.0 136.0 "Shipping") '(slide35mm 26.0 104.0 "Slide35mm") '(spine8mm 187.0 26.0 "Spine8mm") '(topcoated 425.19685 136.0 "TopCoatedPaper") '(topcoatedpaper 396.0 136.0 "TopcoatedPaper150") '(vhsface 205.0 127.0 "VHSFace") '(vhsspine 400.0 50.0 "VHSSpine") '(zipdisk 156.0 136.0 "ZipDisk"))) "\ 24582(defvar ps-page-dimensions-database (purecopy (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list 'letter (* 72 8.5) (* 72 11.0) "Letter") (list 'legal (* 72 8.5) (* 72 14.0) "Legal") (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall") (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid") (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger") (list 'statement (* 72 5.5) (* 72 8.5) "Statement") (list 'executive (* 72 7.5) (* 72 10.0) "Executive") (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small") (list 'b4 (* 72 10.125) (* 72 14.33) "B4") (list 'b5 (* 72 7.16) (* 72 10.125) "B5") '(addresslarge 236.0 99.0 "AddressLarge") '(addresssmall 236.0 68.0 "AddressSmall") '(cuthanging13 90.0 222.0 "CutHanging13") '(cuthanging15 90.0 114.0 "CutHanging15") '(diskette 181.0 136.0 "Diskette") '(eurofilefolder 139.0 112.0 "EuropeanFilefolder") '(eurofoldernarrow 526.0 107.0 "EuroFolderNarrow") '(eurofolderwide 526.0 136.0 "EuroFolderWide") '(euronamebadge 189.0 108.0 "EuroNameBadge") '(euronamebadgelarge 223.0 136.0 "EuroNameBadgeLarge") '(filefolder 230.0 37.0 "FileFolder") '(jewelry 76.0 136.0 "Jewelry") '(mediabadge 180.0 136.0 "MediaBadge") '(multipurpose 126.0 68.0 "MultiPurpose") '(retaillabel 90.0 104.0 "RetailLabel") '(shipping 271.0 136.0 "Shipping") '(slide35mm 26.0 104.0 "Slide35mm") '(spine8mm 187.0 26.0 "Spine8mm") '(topcoated 425.19685 136.0 "TopCoatedPaper") '(topcoatedpaper 396.0 136.0 "TopcoatedPaper150") '(vhsface 205.0 127.0 "VHSFace") '(vhsspine 400.0 50.0 "VHSSpine") '(zipdisk 156.0 136.0 "ZipDisk"))) "\
24602List associating a symbolic paper type to its width, height and doc media. 24583List associating a symbolic paper type to its width, height and doc media.
24603See `ps-paper-type'.") 24584See `ps-paper-type'.")
@@ -24607,7 +24588,7 @@ Specify the size of paper to format for.
24607Should be one of the paper types defined in `ps-page-dimensions-database', for 24588Should be one of the paper types defined in `ps-page-dimensions-database', for
24608example `letter', `legal' or `a4'.") 24589example `letter', `legal' or `a4'.")
24609(custom-autoload 'ps-paper-type "ps-print" t) 24590(custom-autoload 'ps-paper-type "ps-print" t)
24610(defvar ps-print-color-p (fboundp 'x-color-values) "\ 24591(defvar ps-print-color-p t "\
24611Specify how buffer's text color is printed. 24592Specify how buffer's text color is printed.
24612 24593
24613Valid values are: 24594Valid values are:
@@ -24622,7 +24603,7 @@ Valid values are:
24622Any other value is treated as t.") 24603Any other value is treated as t.")
24623(custom-autoload 'ps-print-color-p "ps-print" t) 24604(custom-autoload 'ps-print-color-p "ps-print" t)
24624(autoload 'ps-print-customize "ps-print" "\ 24605(autoload 'ps-print-customize "ps-print" "\
24625Customization of ps-print group." t nil) 24606Customization of ps-print group." t)
24626(autoload 'ps-print-buffer "ps-print" "\ 24607(autoload 'ps-print-buffer "ps-print" "\
24627Generate and print a PostScript image of the buffer. 24608Generate and print a PostScript image of the buffer.
24628 24609
@@ -24634,46 +24615,46 @@ Noninteractively, the argument FILENAME is treated as follows: if it is nil,
24634send the image to the printer. If FILENAME is a string, save the PostScript 24615send the image to the printer. If FILENAME is a string, save the PostScript
24635image in a file with that name. 24616image in a file with that name.
24636 24617
24637(fn &optional FILENAME)" t nil) 24618(fn &optional FILENAME)" t)
24638(autoload 'ps-print-buffer-with-faces "ps-print" "\ 24619(autoload 'ps-print-buffer-with-faces "ps-print" "\
24639Generate and print a PostScript image of the buffer. 24620Generate and print a PostScript image of the buffer.
24640Like `ps-print-buffer', but includes font, color, and underline information in 24621Like `ps-print-buffer', but includes font, color, and underline information in
24641the generated image. This command works only if you are using a window system, 24622the generated image. This command works only if you are using a window system,
24642so it has a way to determine color values. 24623so it has a way to determine color values.
24643 24624
24644(fn &optional FILENAME)" t nil) 24625(fn &optional FILENAME)" t)
24645(autoload 'ps-print-region "ps-print" "\ 24626(autoload 'ps-print-region "ps-print" "\
24646Generate and print a PostScript image of the region. 24627Generate and print a PostScript image of the region.
24647Like `ps-print-buffer', but prints just the current region. 24628Like `ps-print-buffer', but prints just the current region.
24648 24629
24649(fn FROM TO &optional FILENAME)" t nil) 24630(fn FROM TO &optional FILENAME)" t)
24650(autoload 'ps-print-region-with-faces "ps-print" "\ 24631(autoload 'ps-print-region-with-faces "ps-print" "\
24651Generate and print a PostScript image of the region. 24632Generate and print a PostScript image of the region.
24652Like `ps-print-region', but includes font, color, and underline information in 24633Like `ps-print-region', but includes font, color, and underline information in
24653the generated image. This command works only if you are using a window system, 24634the generated image. This command works only if you are using a window system,
24654so it has a way to determine color values. 24635so it has a way to determine color values.
24655 24636
24656(fn FROM TO &optional FILENAME)" t nil) 24637(fn FROM TO &optional FILENAME)" t)
24657(autoload 'ps-spool-buffer "ps-print" "\ 24638(autoload 'ps-spool-buffer "ps-print" "\
24658Generate and spool a PostScript image of the buffer. 24639Generate and spool a PostScript image of the buffer.
24659Like `ps-print-buffer' except that the PostScript image is saved in a local 24640Like `ps-print-buffer' except that the PostScript image is saved in a local
24660buffer to be sent to the printer later. 24641buffer to be sent to the printer later.
24661 24642
24662Use the command `ps-despool' to send the spooled images to the printer." t nil) 24643Use the command `ps-despool' to send the spooled images to the printer." t)
24663(autoload 'ps-spool-buffer-with-faces "ps-print" "\ 24644(autoload 'ps-spool-buffer-with-faces "ps-print" "\
24664Generate and spool a PostScript image of the buffer. 24645Generate and spool a PostScript image of the buffer.
24665Like the command `ps-spool-buffer', but includes font, color, and underline 24646Like the command `ps-spool-buffer', but includes font, color, and underline
24666information in the generated image. This command works only if you are using 24647information in the generated image. This command works only if you are using
24667a window system, so it has a way to determine color values. 24648a window system, so it has a way to determine color values.
24668 24649
24669Use the command `ps-despool' to send the spooled images to the printer." t nil) 24650Use the command `ps-despool' to send the spooled images to the printer." t)
24670(autoload 'ps-spool-region "ps-print" "\ 24651(autoload 'ps-spool-region "ps-print" "\
24671Generate a PostScript image of the region and spool locally. 24652Generate a PostScript image of the region and spool locally.
24672Like `ps-spool-buffer', but spools just the current region. 24653Like `ps-spool-buffer', but spools just the current region.
24673 24654
24674Use the command `ps-despool' to send the spooled images to the printer. 24655Use the command `ps-despool' to send the spooled images to the printer.
24675 24656
24676(fn FROM TO)" t nil) 24657(fn FROM TO)" t)
24677(autoload 'ps-spool-region-with-faces "ps-print" "\ 24658(autoload 'ps-spool-region-with-faces "ps-print" "\
24678Generate a PostScript image of the region and spool locally. 24659Generate a PostScript image of the region and spool locally.
24679Like `ps-spool-region', but includes font, color, and underline information in 24660Like `ps-spool-region', but includes font, color, and underline information in
@@ -24682,7 +24663,7 @@ so it has a way to determine color values.
24682 24663
24683Use the command `ps-despool' to send the spooled images to the printer. 24664Use the command `ps-despool' to send the spooled images to the printer.
24684 24665
24685(fn FROM TO)" t nil) 24666(fn FROM TO)" t)
24686(autoload 'ps-despool "ps-print" "\ 24667(autoload 'ps-despool "ps-print" "\
24687Send the spooled PostScript to the printer. 24668Send the spooled PostScript to the printer.
24688 24669
@@ -24694,24 +24675,24 @@ Noninteractively, the argument FILENAME is treated as follows: if it is nil,
24694send the image to the printer. If FILENAME is a string, save the PostScript 24675send the image to the printer. If FILENAME is a string, save the PostScript
24695image in a file with that name. 24676image in a file with that name.
24696 24677
24697(fn &optional FILENAME)" t nil) 24678(fn &optional FILENAME)" t)
24698(autoload 'ps-line-lengths "ps-print" "\ 24679(autoload 'ps-line-lengths "ps-print" "\
24699Display the correspondence between a line length and a font size. 24680Display the correspondence between a line length and a font size.
24700Done using the current ps-print setup. 24681Done using the current ps-print setup.
24701Try: pr -t file | awk \\='{printf \"%3d %s 24682Try: pr -t file | awk \\='{printf \"%3d %s
24702\", length($0), $0}\\=' | sort -r | head" t nil) 24683\", length($0), $0}\\=' | sort -r | head" t)
24703(autoload 'ps-nb-pages-buffer "ps-print" "\ 24684(autoload 'ps-nb-pages-buffer "ps-print" "\
24704Display number of pages to print this buffer, for various font heights. 24685Display number of pages to print this buffer, for various font heights.
24705The table depends on the current ps-print setup. 24686The table depends on the current ps-print setup.
24706 24687
24707(fn NB-LINES)" t nil) 24688(fn NB-LINES)" t)
24708(autoload 'ps-nb-pages-region "ps-print" "\ 24689(autoload 'ps-nb-pages-region "ps-print" "\
24709Display number of pages to print the region, for various font heights. 24690Display number of pages to print the region, for various font heights.
24710The table depends on the current ps-print setup. 24691The table depends on the current ps-print setup.
24711 24692
24712(fn NB-LINES)" t nil) 24693(fn NB-LINES)" t)
24713(autoload 'ps-setup "ps-print" "\ 24694(autoload 'ps-setup "ps-print" "\
24714Return the current PostScript-generation setup." nil nil) 24695Return the current PostScript-generation setup.")
24715(autoload 'ps-extend-face-list "ps-print" "\ 24696(autoload 'ps-extend-face-list "ps-print" "\
24716Extend face in ALIST-SYM. 24697Extend face in ALIST-SYM.
24717 24698
@@ -24725,7 +24706,7 @@ The elements in FACE-EXTENSION-LIST are like those for `ps-extend-face'.
24725 24706
24726See `ps-extend-face' for documentation. 24707See `ps-extend-face' for documentation.
24727 24708
24728(fn FACE-EXTENSION-LIST &optional MERGE-P ALIST-SYM)" nil nil) 24709(fn FACE-EXTENSION-LIST &optional MERGE-P ALIST-SYM)")
24729(autoload 'ps-extend-face "ps-print" "\ 24710(autoload 'ps-extend-face "ps-print" "\
24730Extend face in ALIST-SYM. 24711Extend face in ALIST-SYM.
24731 24712
@@ -24756,7 +24737,7 @@ EXTENSION is one of the following symbols:
24756 24737
24757If EXTENSION is any other symbol, it is ignored. 24738If EXTENSION is any other symbol, it is ignored.
24758 24739
24759(fn FACE-EXTENSION &optional MERGE-P ALIST-SYM)" nil nil) 24740(fn FACE-EXTENSION &optional MERGE-P ALIST-SYM)")
24760(register-definition-prefixes "ps-print" '("ps-")) 24741(register-definition-prefixes "ps-print" '("ps-"))
24761 24742
24762 24743
@@ -24774,12 +24755,12 @@ If POINT is nil or missing, the current point is used instead.
24774 24755
24775Optional argument FACE specifies the face to do the highlighting. 24756Optional argument FACE specifies the face to do the highlighting.
24776 24757
24777(fn &optional POINT FACE)" nil nil) 24758(fn &optional POINT FACE)")
24778(autoload 'pulse-momentary-highlight-region "pulse" "\ 24759(autoload 'pulse-momentary-highlight-region "pulse" "\
24779Highlight between START and END, unhighlighting before next command. 24760Highlight between START and END, unhighlighting before next command.
24780Optional argument FACE specifies the face to do the highlighting. 24761Optional argument FACE specifies the face to do the highlighting.
24781 24762
24782(fn START END &optional FACE)" nil nil) 24763(fn START END &optional FACE)")
24783(register-definition-prefixes "pulse" '("pulse-")) 24764(register-definition-prefixes "pulse" '("pulse-"))
24784 24765
24785 24766
@@ -24811,13 +24792,13 @@ Runs the hook `inferior-python-mode-hook' after
24811`comint-mode-hook' is run. (Type \\[describe-mode] in the 24792`comint-mode-hook' is run. (Type \\[describe-mode] in the
24812process buffer for a list of commands.) 24793process buffer for a list of commands.)
24813 24794
24814(fn &optional CMD DEDICATED SHOW)" t nil) 24795(fn &optional CMD DEDICATED SHOW)" t)
24815(autoload 'python-mode "python" "\ 24796(autoload 'python-mode "python" "\
24816Major mode for editing Python files. 24797Major mode for editing Python files.
24817 24798
24818\\{python-mode-map} 24799\\{python-mode-map}
24819 24800
24820(fn)" t nil) 24801(fn)" t)
24821(register-definition-prefixes "python" '("inferior-python-mode" "python-" "run-python-internal")) 24802(register-definition-prefixes "python" '("inferior-python-mode" "python-" "run-python-internal"))
24822 24803
24823 24804
@@ -24840,14 +24821,14 @@ The CODING-SYSTEM argument is a historical hangover and is deprecated.
24840QP encodes raw bytes and should be decoded into raw bytes. Decoding 24821QP encodes raw bytes and should be decoded into raw bytes. Decoding
24841them into characters should be done separately. 24822them into characters should be done separately.
24842 24823
24843(fn FROM TO &optional CODING-SYSTEM)" t nil) 24824(fn FROM TO &optional CODING-SYSTEM)" t)
24844(register-definition-prefixes "qp" '("quoted-printable-")) 24825(register-definition-prefixes "qp" '("quoted-printable-"))
24845 24826
24846 24827
24847;;; Generated autoloads from international/quail.el 24828;;; Generated autoloads from international/quail.el
24848 24829
24849(autoload 'quail-title "quail" "\ 24830(autoload 'quail-title "quail" "\
24850Return the title of the current Quail package." nil nil) 24831Return the title of the current Quail package.")
24851(autoload 'quail-use-package "quail" "\ 24832(autoload 'quail-use-package "quail" "\
24852Start using Quail package PACKAGE-NAME. 24833Start using Quail package PACKAGE-NAME.
24853The remaining arguments are LIBRARIES to be loaded before using the package. 24834The remaining arguments are LIBRARIES to be loaded before using the package.
@@ -24855,7 +24836,7 @@ The remaining arguments are LIBRARIES to be loaded before using the package.
24855This activates input method defined by PACKAGE-NAME by running 24836This activates input method defined by PACKAGE-NAME by running
24856`quail-activate', which see. 24837`quail-activate', which see.
24857 24838
24858(fn PACKAGE-NAME &rest LIBRARIES)" nil nil) 24839(fn PACKAGE-NAME &rest LIBRARIES)")
24859(autoload 'quail-define-package "quail" "\ 24840(autoload 'quail-define-package "quail" "\
24860Define NAME as a new Quail package for input LANGUAGE. 24841Define NAME as a new Quail package for input LANGUAGE.
24861TITLE is a string to be displayed at mode-line to indicate this package. 24842TITLE is a string to be displayed at mode-line to indicate this package.
@@ -24936,7 +24917,7 @@ If SIMPLE is non-nil, then we do not alter the meanings of
24936commands such as \\[forward-char], \\[backward-char], \\[next-line], \\[previous-line] and \\[indent-for-tab-command]; they are treated as 24917commands such as \\[forward-char], \\[backward-char], \\[next-line], \\[previous-line] and \\[indent-for-tab-command]; they are treated as
24937non-Quail commands. 24918non-Quail commands.
24938 24919
24939(fn NAME LANGUAGE TITLE &optional GUIDANCE DOCSTRING TRANSLATION-KEYS FORGET-LAST-SELECTION DETERMINISTIC KBD-TRANSLATE SHOW-LAYOUT CREATE-DECODE-MAP MAXIMUM-SHORTEST OVERLAY-PLIST UPDATE-TRANSLATION-FUNCTION CONVERSION-KEYS SIMPLE)" nil nil) 24920(fn NAME LANGUAGE TITLE &optional GUIDANCE DOCSTRING TRANSLATION-KEYS FORGET-LAST-SELECTION DETERMINISTIC KBD-TRANSLATE SHOW-LAYOUT CREATE-DECODE-MAP MAXIMUM-SHORTEST OVERLAY-PLIST UPDATE-TRANSLATION-FUNCTION CONVERSION-KEYS SIMPLE)")
24940(autoload 'quail-set-keyboard-layout "quail" "\ 24921(autoload 'quail-set-keyboard-layout "quail" "\
24941Set the current keyboard layout to the same as keyboard KBD-TYPE. 24922Set the current keyboard layout to the same as keyboard KBD-TYPE.
24942 24923
@@ -24946,14 +24927,14 @@ standard layout defined in `quail-keyboard-layout-standard'. This
24946function tells Quail system the layout of your keyboard so that what 24927function tells Quail system the layout of your keyboard so that what
24947you type is correctly handled. 24928you type is correctly handled.
24948 24929
24949(fn KBD-TYPE)" t nil) 24930(fn KBD-TYPE)" t)
24950(autoload 'quail-show-keyboard-layout "quail" "\ 24931(autoload 'quail-show-keyboard-layout "quail" "\
24951Show the physical layout of the keyboard type KEYBOARD-TYPE. 24932Show the physical layout of the keyboard type KEYBOARD-TYPE.
24952 24933
24953The variable `quail-keyboard-layout-type' holds the currently selected 24934The variable `quail-keyboard-layout-type' holds the currently selected
24954keyboard type. 24935keyboard type.
24955 24936
24956(fn &optional KEYBOARD-TYPE)" t nil) 24937(fn &optional KEYBOARD-TYPE)" t)
24957(autoload 'quail-define-rules "quail" "\ 24938(autoload 'quail-define-rules "quail" "\
24958Define translation rules of the current Quail package. 24939Define translation rules of the current Quail package.
24959Each argument is a list of KEY and TRANSLATION. 24940Each argument is a list of KEY and TRANSLATION.
@@ -24996,7 +24977,7 @@ which to install MAP.
24996 24977
24997The installed map can be referred by the function `quail-map'. 24978The installed map can be referred by the function `quail-map'.
24998 24979
24999(fn MAP &optional NAME)" nil nil) 24980(fn MAP &optional NAME)")
25000(autoload 'quail-install-decode-map "quail" "\ 24981(autoload 'quail-install-decode-map "quail" "\
25001Install the Quail decode map DECODE-MAP in the current Quail package. 24982Install the Quail decode map DECODE-MAP in the current Quail package.
25002 24983
@@ -25005,7 +24986,7 @@ which to install MAP.
25005 24986
25006The installed decode map can be referred by the function `quail-decode-map'. 24987The installed decode map can be referred by the function `quail-decode-map'.
25007 24988
25008(fn DECODE-MAP &optional NAME)" nil nil) 24989(fn DECODE-MAP &optional NAME)")
25009(autoload 'quail-defrule "quail" "\ 24990(autoload 'quail-defrule "quail" "\
25010Add one translation rule, KEY to TRANSLATION, in the current Quail package. 24991Add one translation rule, KEY to TRANSLATION, in the current Quail package.
25011KEY is a string meaning a sequence of keystrokes to be translated. 24992KEY is a string meaning a sequence of keystrokes to be translated.
@@ -25031,7 +25012,7 @@ current Quail package.
25031Optional 4th argument APPEND, if non-nil, appends TRANSLATION 25012Optional 4th argument APPEND, if non-nil, appends TRANSLATION
25032to the current translations for KEY instead of replacing them. 25013to the current translations for KEY instead of replacing them.
25033 25014
25034(fn KEY TRANSLATION &optional NAME APPEND)" nil nil) 25015(fn KEY TRANSLATION &optional NAME APPEND)")
25035(autoload 'quail-defrule-internal "quail" "\ 25016(autoload 'quail-defrule-internal "quail" "\
25036Define KEY as TRANS in a Quail map MAP. 25017Define KEY as TRANS in a Quail map MAP.
25037 25018
@@ -25043,7 +25024,7 @@ Optional 5th arg DECODE-MAP is a Quail decode map.
25043Optional 6th arg PROPS is a property list annotating TRANS. See the 25024Optional 6th arg PROPS is a property list annotating TRANS. See the
25044function `quail-define-rules' for the detail. 25025function `quail-define-rules' for the detail.
25045 25026
25046(fn KEY TRANS MAP &optional APPEND DECODE-MAP PROPS)" nil nil) 25027(fn KEY TRANS MAP &optional APPEND DECODE-MAP PROPS)")
25047(autoload 'quail-update-leim-list-file "quail" "\ 25028(autoload 'quail-update-leim-list-file "quail" "\
25048Update entries for Quail packages in `LEIM' list file in directory DIRNAME. 25029Update entries for Quail packages in `LEIM' list file in directory DIRNAME.
25049DIRNAME is a directory containing Emacs input methods; 25030DIRNAME is a directory containing Emacs input methods;
@@ -25057,7 +25038,7 @@ When called from a program, the remaining arguments are additional
25057directory names to search for Quail packages under `quail' subdirectory 25038directory names to search for Quail packages under `quail' subdirectory
25058of each directory. 25039of each directory.
25059 25040
25060(fn DIRNAME &rest DIRNAMES)" t nil) 25041(fn DIRNAME &rest DIRNAMES)" t)
25061(register-definition-prefixes "quail" '("quail-")) 25042(register-definition-prefixes "quail" '("quail-"))
25062 25043
25063 25044
@@ -25080,7 +25061,7 @@ Do not connect to a server if it is already connected.
25080 25061
25081If ARG is non-nil, instead prompt for connection parameters. 25062If ARG is non-nil, instead prompt for connection parameters.
25082 25063
25083(fn ARG)" t nil) 25064(fn ARG)" t)
25084(defalias 'irc 'rcirc) 25065(defalias 'irc 'rcirc)
25085(autoload 'rcirc-connect "rcirc" "\ 25066(autoload 'rcirc-connect "rcirc" "\
25086Connect to SERVER. 25067Connect to SERVER.
@@ -25089,7 +25070,7 @@ ENCRYPTION, CERTFP, SERVER-ALIAS are interpreted as in
25089`rcirc-server-alist'. STARTUP-CHANNELS is a list of channels 25070`rcirc-server-alist'. STARTUP-CHANNELS is a list of channels
25090that are joined after authentication. 25071that are joined after authentication.
25091 25072
25092(fn SERVER &optional PORT NICK USER-NAME FULL-NAME STARTUP-CHANNELS PASSWORD ENCRYPTION CERTFP SERVER-ALIAS)" nil nil) 25073(fn SERVER &optional PORT NICK USER-NAME FULL-NAME STARTUP-CHANNELS PASSWORD ENCRYPTION CERTFP SERVER-ALIAS)")
25093(defvar rcirc-track-minor-mode nil "\ 25074(defvar rcirc-track-minor-mode nil "\
25094Non-nil if Rcirc-Track minor mode is enabled. 25075Non-nil if Rcirc-Track minor mode is enabled.
25095See the `rcirc-track-minor-mode' command 25076See the `rcirc-track-minor-mode' command
@@ -25116,7 +25097,7 @@ evaluate `(default-value \\='rcirc-track-minor-mode)'.
25116The mode's hook is called both when the mode is enabled and when 25097The mode's hook is called both when the mode is enabled and when
25117it is disabled. 25098it is disabled.
25118 25099
25119(fn &optional ARG)" t nil) 25100(fn &optional ARG)" t)
25120(register-definition-prefixes "rcirc" '("rcirc-" "with-rcirc-")) 25101(register-definition-prefixes "rcirc" '("rcirc-" "with-rcirc-"))
25121 25102
25122 25103
@@ -25135,7 +25116,7 @@ matching parts of the target buffer will be highlighted.
25135Case-sensitivity can be toggled with \\[reb-toggle-case]. The 25116Case-sensitivity can be toggled with \\[reb-toggle-case]. The
25136regexp builder supports three different forms of input which can 25117regexp builder supports three different forms of input which can
25137be set with \\[reb-change-syntax]. More options and details are 25118be set with \\[reb-change-syntax]. More options and details are
25138provided in the Commentary section of this library." t nil) 25119provided in the Commentary section of this library." t)
25139(register-definition-prefixes "re-builder" '("re-builder-unload-function" "reb-")) 25120(register-definition-prefixes "re-builder" '("re-builder-unload-function" "reb-"))
25140 25121
25141 25122
@@ -25145,7 +25126,7 @@ provided in the Commentary section of this library." t nil)
25145Prompt for FILE in `recentf-list' and visit it. 25126Prompt for FILE in `recentf-list' and visit it.
25146Enable `recentf-mode' if it isn't already. 25127Enable `recentf-mode' if it isn't already.
25147 25128
25148(fn FILE)" t nil) 25129(fn FILE)" t)
25149(defalias 'recentf 'recentf-open) 25130(defalias 'recentf 'recentf-open)
25150(defvar recentf-mode nil "\ 25131(defvar recentf-mode nil "\
25151Non-nil if Recentf mode is enabled. 25132Non-nil if Recentf mode is enabled.
@@ -25190,7 +25171,7 @@ evaluate `(default-value \\='recentf-mode)'.
25190The mode's hook is called both when the mode is enabled and when 25171The mode's hook is called both when the mode is enabled and when
25191it is disabled. 25172it is disabled.
25192 25173
25193(fn &optional ARG)" t nil) 25174(fn &optional ARG)" t)
25194(register-definition-prefixes "recentf" '("recentf-")) 25175(register-definition-prefixes "recentf" '("recentf-"))
25195 25176
25196 25177
@@ -25206,7 +25187,7 @@ When called from a program the rectangle's corners are START and END.
25206With a prefix (or a FILL) argument, also fill lines where nothing has 25187With a prefix (or a FILL) argument, also fill lines where nothing has
25207to be deleted. 25188to be deleted.
25208 25189
25209(fn START END &optional FILL)" t nil) 25190(fn START END &optional FILL)" t)
25210(autoload 'delete-extract-rectangle "rect" "\ 25191(autoload 'delete-extract-rectangle "rect" "\
25211Delete the contents of the rectangle with corners at START and END. 25192Delete the contents of the rectangle with corners at START and END.
25212Return it as a list of strings, one for each line of the rectangle. 25193Return it as a list of strings, one for each line of the rectangle.
@@ -25215,12 +25196,12 @@ When called from a program the rectangle's corners are START and END.
25215With an optional FILL argument, also fill lines where nothing has to be 25196With an optional FILL argument, also fill lines where nothing has to be
25216deleted. 25197deleted.
25217 25198
25218(fn START END &optional FILL)" nil nil) 25199(fn START END &optional FILL)")
25219(autoload 'extract-rectangle "rect" "\ 25200(autoload 'extract-rectangle "rect" "\
25220Return the contents of the rectangle with corners at START and END. 25201Return the contents of the rectangle with corners at START and END.
25221Return it as a list of strings, one for each line of the rectangle. 25202Return it as a list of strings, one for each line of the rectangle.
25222 25203
25223(fn START END)" nil nil) 25204(fn START END)")
25224(autoload 'kill-rectangle "rect" "\ 25205(autoload 'kill-rectangle "rect" "\
25225Delete the region-rectangle and save it as the last killed one. 25206Delete the region-rectangle and save it as the last killed one.
25226 25207
@@ -25236,13 +25217,13 @@ you can use this command to copy text from a read-only buffer.
25236(If the variable `kill-read-only-ok' is non-nil, then this won't 25217(If the variable `kill-read-only-ok' is non-nil, then this won't
25237even beep.) 25218even beep.)
25238 25219
25239(fn START END &optional FILL)" t nil) 25220(fn START END &optional FILL)" t)
25240(autoload 'copy-rectangle-as-kill "rect" "\ 25221(autoload 'copy-rectangle-as-kill "rect" "\
25241Copy the region-rectangle and save it as the last killed one. 25222Copy the region-rectangle and save it as the last killed one.
25242 25223
25243(fn START END)" t nil) 25224(fn START END)" t)
25244(autoload 'yank-rectangle "rect" "\ 25225(autoload 'yank-rectangle "rect" "\
25245Yank the last killed rectangle with upper left corner at point." t nil) 25226Yank the last killed rectangle with upper left corner at point." t)
25246(autoload 'insert-rectangle "rect" "\ 25227(autoload 'insert-rectangle "rect" "\
25247Insert text of RECTANGLE with upper left corner at point. 25228Insert text of RECTANGLE with upper left corner at point.
25248RECTANGLE's first line is inserted at point, its second 25229RECTANGLE's first line is inserted at point, its second
@@ -25251,7 +25232,7 @@ RECTANGLE should be a list of strings.
25251After this command, the mark is at the upper left corner 25232After this command, the mark is at the upper left corner
25252and point is at the lower right corner. 25233and point is at the lower right corner.
25253 25234
25254(fn RECTANGLE)" nil nil) 25235(fn RECTANGLE)")
25255(autoload 'open-rectangle "rect" "\ 25236(autoload 'open-rectangle "rect" "\
25256Blank out the region-rectangle, shifting text right. 25237Blank out the region-rectangle, shifting text right.
25257 25238
@@ -25262,8 +25243,8 @@ When called from a program the rectangle's corners are START and END.
25262With a prefix (or a FILL) argument, fill with blanks even if there is 25243With a prefix (or a FILL) argument, fill with blanks even if there is
25263no text on the right side of the rectangle. 25244no text on the right side of the rectangle.
25264 25245
25265(fn START END &optional FILL)" t nil) 25246(fn START END &optional FILL)" t)
25266(defalias 'close-rectangle 'delete-whitespace-rectangle) 25247(define-obsolete-function-alias 'close-rectangle #'delete-whitespace-rectangle "29.1")
25267(autoload 'delete-whitespace-rectangle "rect" "\ 25248(autoload 'delete-whitespace-rectangle "rect" "\
25268Delete all whitespace following a specified column in each line. 25249Delete all whitespace following a specified column in each line.
25269The left edge of the rectangle specifies the position in each line 25250The left edge of the rectangle specifies the position in each line
@@ -25273,7 +25254,7 @@ rectangle, all contiguous whitespace starting at that column is deleted.
25273When called from a program the rectangle's corners are START and END. 25254When called from a program the rectangle's corners are START and END.
25274With a prefix (or a FILL) argument, also fill too short lines. 25255With a prefix (or a FILL) argument, also fill too short lines.
25275 25256
25276(fn START END &optional FILL)" t nil) 25257(fn START END &optional FILL)" t)
25277(autoload 'string-rectangle "rect" "\ 25258(autoload 'string-rectangle "rect" "\
25278Replace rectangle contents with STRING on each line. 25259Replace rectangle contents with STRING on each line.
25279The length of STRING need not be the same as the rectangle width. 25260The length of STRING need not be the same as the rectangle width.
@@ -25284,8 +25265,8 @@ the minibuffer.
25284 25265
25285Called from a program, takes three args; START, END and STRING. 25266Called from a program, takes three args; START, END and STRING.
25286 25267
25287(fn START END STRING)" t nil) 25268(fn START END STRING)" t)
25288(defalias 'replace-rectangle 'string-rectangle) 25269(define-obsolete-function-alias 'replace-rectangle #'string-rectangle "29.1")
25289(autoload 'string-insert-rectangle "rect" "\ 25270(autoload 'string-insert-rectangle "rect" "\
25290Insert STRING on each line of region-rectangle, shifting text right. 25271Insert STRING on each line of region-rectangle, shifting text right.
25291 25272
@@ -25293,7 +25274,7 @@ When called from a program, the rectangle's corners are START and END.
25293The left edge of the rectangle specifies the column for insertion. 25274The left edge of the rectangle specifies the column for insertion.
25294This command does not delete or overwrite any existing text. 25275This command does not delete or overwrite any existing text.
25295 25276
25296(fn START END STRING)" t nil) 25277(fn START END STRING)" t)
25297(autoload 'clear-rectangle "rect" "\ 25278(autoload 'clear-rectangle "rect" "\
25298Blank out the region-rectangle. 25279Blank out the region-rectangle.
25299The text previously in the region is overwritten with blanks. 25280The text previously in the region is overwritten with blanks.
@@ -25302,7 +25283,7 @@ When called from a program the rectangle's corners are START and END.
25302With a prefix (or a FILL) argument, also fill with blanks the parts of the 25283With a prefix (or a FILL) argument, also fill with blanks the parts of the
25303rectangle which were empty. 25284rectangle which were empty.
25304 25285
25305(fn START END &optional FILL)" t nil) 25286(fn START END &optional FILL)" t)
25306(autoload 'rectangle-number-lines "rect" "\ 25287(autoload 'rectangle-number-lines "rect" "\
25307Insert numbers in front of the region-rectangle. 25288Insert numbers in front of the region-rectangle.
25308 25289
@@ -25311,7 +25292,7 @@ counting. FORMAT, if non-nil, should be a format string to pass
25311to `format' along with the line count. When called interactively 25292to `format' along with the line count. When called interactively
25312with a prefix argument, prompt for START-AT and FORMAT. 25293with a prefix argument, prompt for START-AT and FORMAT.
25313 25294
25314(fn START END START-AT &optional FORMAT)" t nil) 25295(fn START END START-AT &optional FORMAT)" t)
25315(autoload 'rectangle-mark-mode "rect" "\ 25296(autoload 'rectangle-mark-mode "rect" "\
25316Toggle the region as rectangular. 25297Toggle the region as rectangular.
25317 25298
@@ -25332,9 +25313,7 @@ evaluate `rectangle-mark-mode'.
25332The mode's hook is called both when the mode is enabled and when 25313The mode's hook is called both when the mode is enabled and when
25333it is disabled. 25314it is disabled.
25334 25315
25335\\{rectangle-mark-mode-map} 25316(fn &optional ARG)" t)
25336
25337(fn &optional ARG)" t nil)
25338(register-definition-prefixes "rect" '("apply-on-rectangle" "clear-rectangle-line" "delete-" "extract-rectangle-" "killed-rectangle" "ope" "rectangle-" "spaces-string" "string-rectangle-")) 25317(register-definition-prefixes "rect" '("apply-on-rectangle" "clear-rectangle-line" "delete-" "extract-rectangle-" "killed-rectangle" "ope" "rectangle-" "spaces-string" "string-rectangle-"))
25339 25318
25340 25319
@@ -25374,7 +25353,7 @@ evaluate `refill-mode'.
25374The mode's hook is called both when the mode is enabled and when 25353The mode's hook is called both when the mode is enabled and when
25375it is disabled. 25354it is disabled.
25376 25355
25377(fn &optional ARG)" t nil) 25356(fn &optional ARG)" t)
25378(register-definition-prefixes "refill" '("refill-")) 25357(register-definition-prefixes "refill" '("refill-"))
25379 25358
25380 25359
@@ -25390,7 +25369,7 @@ it is disabled.
25390(autoload 'reftex-isearch-minor-mode "reftex-global" nil t) 25369(autoload 'reftex-isearch-minor-mode "reftex-global" nil t)
25391(autoload 'reftex-index-phrases-mode "reftex-index" nil t) 25370(autoload 'reftex-index-phrases-mode "reftex-index" nil t)
25392(autoload 'turn-on-reftex "reftex" "\ 25371(autoload 'turn-on-reftex "reftex" "\
25393Turn on RefTeX mode." nil nil) 25372Turn on RefTeX mode.")
25394(autoload 'reftex-mode "reftex" "\ 25373(autoload 'reftex-mode "reftex" "\
25395Minor mode with distinct support for \\label, \\ref and \\cite in LaTeX. 25374Minor mode with distinct support for \\label, \\ref and \\cite in LaTeX.
25396 25375
@@ -25436,10 +25415,10 @@ evaluate `reftex-mode'.
25436The mode's hook is called both when the mode is enabled and when 25415The mode's hook is called both when the mode is enabled and when
25437it is disabled. 25416it is disabled.
25438 25417
25439(fn &optional ARG)" t nil) 25418(fn &optional ARG)" t)
25440(autoload 'reftex-reset-scanning-information "reftex" "\ 25419(autoload 'reftex-reset-scanning-information "reftex" "\
25441Reset the symbols containing information from buffer scanning. 25420Reset the symbols containing information from buffer scanning.
25442This enforces rescanning the buffer on next use." nil nil) 25421This enforces rescanning the buffer on next use.")
25443(register-definition-prefixes "reftex" '("reftex-")) 25422(register-definition-prefixes "reftex" '("reftex-"))
25444 25423
25445 25424
@@ -25546,13 +25525,13 @@ usually more efficient than that of a simplified version:
25546 (mapconcat \\='regexp-quote strings \"\\\\|\") 25525 (mapconcat \\='regexp-quote strings \"\\\\|\")
25547 (cdr parens)))) 25526 (cdr parens))))
25548 25527
25549(fn STRINGS &optional PAREN)" nil nil) 25528(fn STRINGS &optional PAREN)")
25550(autoload 'regexp-opt-depth "regexp-opt" "\ 25529(autoload 'regexp-opt-depth "regexp-opt" "\
25551Return the depth of REGEXP. 25530Return the depth of REGEXP.
25552This means the number of non-shy regexp grouping constructs 25531This means the number of non-shy regexp grouping constructs
25553(parenthesized expressions) in REGEXP. 25532(parenthesized expressions) in REGEXP.
25554 25533
25555(fn REGEXP)" nil nil) 25534(fn REGEXP)")
25556(register-definition-prefixes "regexp-opt" '("regexp-opt-")) 25535(register-definition-prefixes "regexp-opt" '("regexp-opt-"))
25557 25536
25558 25537
@@ -25575,16 +25554,16 @@ or nil to bring up a blank `remember-buffer'.
25575 25554
25576With a prefix or a visible region, use the region as INITIAL. 25555With a prefix or a visible region, use the region as INITIAL.
25577 25556
25578(fn &optional INITIAL)" t nil) 25557(fn &optional INITIAL)" t)
25579(autoload 'remember-other-frame "remember" "\ 25558(autoload 'remember-other-frame "remember" "\
25580Call `remember' in another frame. 25559Call `remember' in another frame.
25581 25560
25582(fn &optional INITIAL)" t nil) 25561(fn &optional INITIAL)" t)
25583(autoload 'remember-clipboard "remember" "\ 25562(autoload 'remember-clipboard "remember" "\
25584Remember the contents of the current clipboard. 25563Remember the contents of the current clipboard.
25585Most useful for remembering things from other applications." t nil) 25564Most useful for remembering things from other applications." t)
25586(autoload 'remember-diary-extract-entries "remember" "\ 25565(autoload 'remember-diary-extract-entries "remember" "\
25587Extract diary entries from the region based on `remember-diary-regexp'." nil nil) 25566Extract diary entries from the region based on `remember-diary-regexp'.")
25588(autoload 'remember-notes "remember" "\ 25567(autoload 'remember-notes "remember" "\
25589Return the notes buffer, creating it if needed, and maybe switch to it. 25568Return the notes buffer, creating it if needed, and maybe switch to it.
25590This buffer is for notes that you want to preserve across Emacs sessions. 25569This buffer is for notes that you want to preserve across Emacs sessions.
@@ -25606,7 +25585,7 @@ Set `initial-buffer-choice' to `remember-notes' to visit your notes buffer
25606when Emacs starts. Set `remember-notes-buffer-name' to \"*scratch*\" 25585when Emacs starts. Set `remember-notes-buffer-name' to \"*scratch*\"
25607to turn the *scratch* buffer into your notes buffer. 25586to turn the *scratch* buffer into your notes buffer.
25608 25587
25609(fn &optional SWITCH-TO)" t nil) 25588(fn &optional SWITCH-TO)" t)
25610(register-definition-prefixes "remember" '("remember-")) 25589(register-definition-prefixes "remember" '("remember-"))
25611 25590
25612 25591
@@ -25627,7 +25606,7 @@ sequence. This behavior can be modified by the global variable
25627\"most recently executed command\" shall be read as \"most 25606\"most recently executed command\" shall be read as \"most
25628recently executed command not bound to an input event\". 25607recently executed command not bound to an input event\".
25629 25608
25630(fn REPEAT-ARG)" t nil) 25609(fn REPEAT-ARG)" t)
25631(defvar repeat-map nil "\ 25610(defvar repeat-map nil "\
25632The value of the repeating transient map for the next command. 25611The value of the repeating transient map for the next command.
25633A command called from the map can set it again to the same map when 25612A command called from the map can set it again to the same map when
@@ -25661,7 +25640,7 @@ evaluate `(default-value \\='repeat-mode)'.
25661The mode's hook is called both when the mode is enabled and when 25640The mode's hook is called both when the mode is enabled and when
25662it is disabled. 25641it is disabled.
25663 25642
25664(fn &optional ARG)" t nil) 25643(fn &optional ARG)" t)
25665(register-definition-prefixes "repeat" '("describe-repeat-maps" "repeat-")) 25644(register-definition-prefixes "repeat" '("describe-repeat-maps" "repeat-"))
25666 25645
25667 25646
@@ -25691,7 +25670,7 @@ to initialize a message, which the user can then edit and finally send
25691(or decline to send). The variable `mail-user-agent' controls which 25670(or decline to send). The variable `mail-user-agent' controls which
25692mail-sending package is used for editing and sending the message. 25671mail-sending package is used for editing and sending the message.
25693 25672
25694(fn ADDRESS PKGNAME VARLIST &optional PRE-HOOKS POST-HOOKS SALUTATION)" nil nil) 25673(fn ADDRESS PKGNAME VARLIST &optional PRE-HOOKS POST-HOOKS SALUTATION)")
25695(register-definition-prefixes "reporter" '("reporter-")) 25674(register-definition-prefixes "reporter" '("reporter-"))
25696 25675
25697 25676
@@ -25718,7 +25697,7 @@ first comment line visible (if point is in a comment).
25718If INTERACTIVE is non-nil, as it is interactively, 25697If INTERACTIVE is non-nil, as it is interactively,
25719report errors as appropriate for this kind of usage. 25698report errors as appropriate for this kind of usage.
25720 25699
25721(fn &optional ARG INTERACTIVE)" t nil) 25700(fn &optional ARG INTERACTIVE)" t)
25722(register-definition-prefixes "reposition" '("repos-count-screen-lines")) 25701(register-definition-prefixes "reposition" '("repos-count-screen-lines"))
25723 25702
25724 25703
@@ -25746,7 +25725,7 @@ evaluate `reveal-mode'.
25746The mode's hook is called both when the mode is enabled and when 25725The mode's hook is called both when the mode is enabled and when
25747it is disabled. 25726it is disabled.
25748 25727
25749(fn &optional ARG)" t nil) 25728(fn &optional ARG)" t)
25750(defvar global-reveal-mode nil "\ 25729(defvar global-reveal-mode nil "\
25751Non-nil if Global Reveal mode is enabled. 25730Non-nil if Global Reveal mode is enabled.
25752See the `global-reveal-mode' command 25731See the `global-reveal-mode' command
@@ -25774,7 +25753,7 @@ evaluate `(default-value \\='global-reveal-mode)'.
25774The mode's hook is called both when the mode is enabled and when 25753The mode's hook is called both when the mode is enabled and when
25775it is disabled. 25754it is disabled.
25776 25755
25777(fn &optional ARG)" t nil) 25756(fn &optional ARG)" t)
25778(register-definition-prefixes "reveal" '("reveal-")) 25757(register-definition-prefixes "reveal" '("reveal-"))
25779 25758
25780 25759
@@ -25818,11 +25797,11 @@ it is disabled.
25818(autoload 'ring-p "ring" "\ 25797(autoload 'ring-p "ring" "\
25819Return t if X is a ring; nil otherwise. 25798Return t if X is a ring; nil otherwise.
25820 25799
25821(fn X)" nil nil) 25800(fn X)")
25822(autoload 'make-ring "ring" "\ 25801(autoload 'make-ring "ring" "\
25823Make a ring that can contain SIZE elements. 25802Make a ring that can contain SIZE elements.
25824 25803
25825(fn SIZE)" nil nil) 25804(fn SIZE)")
25826(register-definition-prefixes "ring" '("ring-")) 25805(register-definition-prefixes "ring" '("ring-"))
25827 25806
25828 25807
@@ -25839,7 +25818,7 @@ Its name should end with a slash." :initialize #'custom-initialize-delay :type '
25839Return t if the current movemail variant is any of VARIANTS. 25818Return t if the current movemail variant is any of VARIANTS.
25840Currently known variants are `emacs' and `mailutils'. 25819Currently known variants are `emacs' and `mailutils'.
25841 25820
25842(fn &rest VARIANTS)" nil nil) 25821(fn &rest VARIANTS)")
25843(defvar rmail-user-mail-address-regexp nil "\ 25822(defvar rmail-user-mail-address-regexp nil "\
25844Regexp matching user mail addresses. 25823Regexp matching user mail addresses.
25845If non-nil, this variable is used to identify the correspondent 25824If non-nil, this variable is used to identify the correspondent
@@ -25918,7 +25897,7 @@ have a chance to specify a file name with the minibuffer.
25918 25897
25919If `rmail-display-summary' is non-nil, make a summary for this RMAIL file. 25898If `rmail-display-summary' is non-nil, make a summary for this RMAIL file.
25920 25899
25921(fn &optional FILE-NAME-ARG)" t nil) 25900(fn &optional FILE-NAME-ARG)" t)
25922(autoload 'rmail-mode "rmail" "\ 25901(autoload 'rmail-mode "rmail" "\
25923Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files. 25902Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
25924All normal editing commands are turned off. 25903All normal editing commands are turned off.
@@ -25968,15 +25947,15 @@ Instead, these commands are available:
25968\\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s). 25947\\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s).
25969\\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s). 25948\\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s).
25970\\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s). 25949\\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s).
25971\\[rmail-toggle-header] Toggle display of complete header." t nil) 25950\\[rmail-toggle-header] Toggle display of complete header." t)
25972(autoload 'rmail-input "rmail" "\ 25951(autoload 'rmail-input "rmail" "\
25973Run Rmail on file FILENAME. 25952Run Rmail on file FILENAME.
25974 25953
25975(fn FILENAME)" t nil) 25954(fn FILENAME)" t)
25976(autoload 'rmail-set-remote-password "rmail" "\ 25955(autoload 'rmail-set-remote-password "rmail" "\
25977Set PASSWORD to be used for retrieving mail from a POP or IMAP server. 25956Set PASSWORD to be used for retrieving mail from a POP or IMAP server.
25978 25957
25979(fn PASSWORD)" t nil) 25958(fn PASSWORD)" t)
25980(register-definition-prefixes "rmail" '("mail-" "rmail-")) 25959(register-definition-prefixes "rmail" '("mail-" "rmail-"))
25981 25960
25982 25961
@@ -25988,7 +25967,7 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server.
25988;;; Generated autoloads from mail/rmailedit.el 25967;;; Generated autoloads from mail/rmailedit.el
25989 25968
25990(autoload 'rmail-edit-current-message "rmailedit" "\ 25969(autoload 'rmail-edit-current-message "rmailedit" "\
25991Edit the contents of this message." t nil) 25970Edit the contents of this message." t)
25992(register-definition-prefixes "rmailedit" '("rmail-")) 25971(register-definition-prefixes "rmailedit" '("rmail-"))
25993 25972
25994 25973
@@ -25999,34 +25978,34 @@ Add LABEL to labels associated with current RMAIL message.
25999Completes (see `rmail-read-label') over known labels when reading. 25978Completes (see `rmail-read-label') over known labels when reading.
26000LABEL may be a symbol or string. Only one label is allowed. 25979LABEL may be a symbol or string. Only one label is allowed.
26001 25980
26002(fn LABEL)" t nil) 25981(fn LABEL)" t)
26003(autoload 'rmail-kill-label "rmailkwd" "\ 25982(autoload 'rmail-kill-label "rmailkwd" "\
26004Remove LABEL from labels associated with current RMAIL message. 25983Remove LABEL from labels associated with current RMAIL message.
26005Completes (see `rmail-read-label') over known labels when reading. 25984Completes (see `rmail-read-label') over known labels when reading.
26006LABEL may be a symbol or string. Only one label is allowed. 25985LABEL may be a symbol or string. Only one label is allowed.
26007 25986
26008(fn LABEL)" t nil) 25987(fn LABEL)" t)
26009(autoload 'rmail-read-label "rmailkwd" "\ 25988(autoload 'rmail-read-label "rmailkwd" "\
26010Read a label with completion, prompting with PROMPT. 25989Read a label with completion, prompting with PROMPT.
26011Completions are chosen from `rmail-label-obarray'. The default 25990Completions are chosen from `rmail-label-obarray'. The default
26012is `rmail-last-label', if that is non-nil. Updates `rmail-last-label' 25991is `rmail-last-label', if that is non-nil. Updates `rmail-last-label'
26013according to the choice made, and returns a symbol. 25992according to the choice made, and returns a symbol.
26014 25993
26015(fn PROMPT)" nil nil) 25994(fn PROMPT)")
26016(autoload 'rmail-previous-labeled-message "rmailkwd" "\ 25995(autoload 'rmail-previous-labeled-message "rmailkwd" "\
26017Show previous message with one of the labels LABELS. 25996Show previous message with one of the labels LABELS.
26018LABELS should be a comma-separated list of label names. 25997LABELS should be a comma-separated list of label names.
26019If LABELS is empty, the last set of labels specified is used. 25998If LABELS is empty, the last set of labels specified is used.
26020With prefix argument N moves backward N messages with these labels. 25999With prefix argument N moves backward N messages with these labels.
26021 26000
26022(fn N LABELS)" t nil) 26001(fn N LABELS)" t)
26023(autoload 'rmail-next-labeled-message "rmailkwd" "\ 26002(autoload 'rmail-next-labeled-message "rmailkwd" "\
26024Show next message with one of the labels LABELS. 26003Show next message with one of the labels LABELS.
26025LABELS should be a comma-separated list of label names. 26004LABELS should be a comma-separated list of label names.
26026If LABELS is empty, the last set of labels specified is used. 26005If LABELS is empty, the last set of labels specified is used.
26027With prefix argument N moves forward N messages with these labels. 26006With prefix argument N moves forward N messages with these labels.
26028 26007
26029(fn N LABELS)" t nil) 26008(fn N LABELS)" t)
26030(register-definition-prefixes "rmailkwd" '("rmail-")) 26009(register-definition-prefixes "rmailkwd" '("rmail-"))
26031 26010
26032 26011
@@ -26051,7 +26030,7 @@ By default, this displays text and multipart messages, and offers to
26051download attachments as specified by `rmail-mime-attachment-dirs-alist'. 26030download attachments as specified by `rmail-mime-attachment-dirs-alist'.
26052The arguments ARG and STATE have no effect in this case. 26031The arguments ARG and STATE have no effect in this case.
26053 26032
26054(fn &optional ARG STATE)" t nil) 26033(fn &optional ARG STATE)" t)
26055(register-definition-prefixes "rmailmm" '("rmail-")) 26034(register-definition-prefixes "rmailmm" '("rmail-"))
26056 26035
26057 26036
@@ -26064,7 +26043,7 @@ If FILE-NAME is empty, remove any existing inbox list.
26064 26043
26065This applies only to the current session. 26044This applies only to the current session.
26066 26045
26067(fn FILE-NAME)" t nil) 26046(fn FILE-NAME)" t)
26068 26047
26069 26048
26070;;; Generated autoloads from mail/rmailout.el 26049;;; Generated autoloads from mail/rmailout.el
@@ -26105,7 +26084,7 @@ message (if writing a file directly).
26105Set the optional fourth argument NOT-RMAIL non-nil if you call this 26084Set the optional fourth argument NOT-RMAIL non-nil if you call this
26106from a non-Rmail buffer. In this case, COUNT is ignored. 26085from a non-Rmail buffer. In this case, COUNT is ignored.
26107 26086
26108(fn FILE-NAME &optional COUNT NOATTRIBUTE NOT-RMAIL)" t nil) 26087(fn FILE-NAME &optional COUNT NOATTRIBUTE NOT-RMAIL)" t)
26109(autoload 'rmail-output-as-seen "rmailout" "\ 26088(autoload 'rmail-output-as-seen "rmailout" "\
26110Append this message to mbox file named FILE-NAME. 26089Append this message to mbox file named FILE-NAME.
26111The details are as for `rmail-output', except that: 26090The details are as for `rmail-output', except that:
@@ -26117,7 +26096,7 @@ Note that if NOT-RMAIL is non-nil, there is no difference between this
26117function and `rmail-output'. This argument may be removed in future, 26096function and `rmail-output'. This argument may be removed in future,
26118so you should call `rmail-output' directly in that case. 26097so you should call `rmail-output' directly in that case.
26119 26098
26120(fn FILE-NAME &optional COUNT NOATTRIBUTE NOT-RMAIL)" t nil) 26099(fn FILE-NAME &optional COUNT NOATTRIBUTE NOT-RMAIL)" t)
26121(autoload 'rmail-output-body-to-file "rmailout" "\ 26100(autoload 'rmail-output-body-to-file "rmailout" "\
26122Write this message body to the file FILE-NAME. 26101Write this message body to the file FILE-NAME.
26123Interactively, the default file name comes from either the message 26102Interactively, the default file name comes from either the message
@@ -26130,7 +26109,7 @@ Note that this overwrites FILE-NAME (after confirmation), rather
26130than appending to it. Deletes the message after writing if 26109than appending to it. Deletes the message after writing if
26131`rmail-delete-after-output' is non-nil. 26110`rmail-delete-after-output' is non-nil.
26132 26111
26133(fn FILE-NAME)" t nil) 26112(fn FILE-NAME)" t)
26134(register-definition-prefixes "rmailout" '("rmail-")) 26113(register-definition-prefixes "rmailout" '("rmail-"))
26135 26114
26136 26115
@@ -26140,25 +26119,25 @@ than appending to it. Deletes the message after writing if
26140Sort messages of current Rmail buffer by \"Date\" header. 26119Sort messages of current Rmail buffer by \"Date\" header.
26141If prefix argument REVERSE is non-nil, sorts in reverse order. 26120If prefix argument REVERSE is non-nil, sorts in reverse order.
26142 26121
26143(fn REVERSE)" t nil) 26122(fn REVERSE)" t)
26144(autoload 'rmail-sort-by-subject "rmailsort" "\ 26123(autoload 'rmail-sort-by-subject "rmailsort" "\
26145Sort messages of current Rmail buffer by \"Subject\" header. 26124Sort messages of current Rmail buffer by \"Subject\" header.
26146Ignores any \"Re: \" prefix. If prefix argument REVERSE is 26125Ignores any \"Re: \" prefix. If prefix argument REVERSE is
26147non-nil, sorts in reverse order. 26126non-nil, sorts in reverse order.
26148 26127
26149(fn REVERSE)" t nil) 26128(fn REVERSE)" t)
26150(autoload 'rmail-sort-by-author "rmailsort" "\ 26129(autoload 'rmail-sort-by-author "rmailsort" "\
26151Sort messages of current Rmail buffer by author. 26130Sort messages of current Rmail buffer by author.
26152This uses either the \"From\" or \"Sender\" header, downcased. 26131This uses either the \"From\" or \"Sender\" header, downcased.
26153If prefix argument REVERSE is non-nil, sorts in reverse order. 26132If prefix argument REVERSE is non-nil, sorts in reverse order.
26154 26133
26155(fn REVERSE)" t nil) 26134(fn REVERSE)" t)
26156(autoload 'rmail-sort-by-recipient "rmailsort" "\ 26135(autoload 'rmail-sort-by-recipient "rmailsort" "\
26157Sort messages of current Rmail buffer by recipient. 26136Sort messages of current Rmail buffer by recipient.
26158This uses either the \"To\" or \"Apparently-To\" header, downcased. 26137This uses either the \"To\" or \"Apparently-To\" header, downcased.
26159If prefix argument REVERSE is non-nil, sorts in reverse order. 26138If prefix argument REVERSE is non-nil, sorts in reverse order.
26160 26139
26161(fn REVERSE)" t nil) 26140(fn REVERSE)" t)
26162(autoload 'rmail-sort-by-correspondent "rmailsort" "\ 26141(autoload 'rmail-sort-by-correspondent "rmailsort" "\
26163Sort messages of current Rmail buffer by other correspondent. 26142Sort messages of current Rmail buffer by other correspondent.
26164This uses either the \"From\", \"Sender\", \"To\", or 26143This uses either the \"From\", \"Sender\", \"To\", or
@@ -26166,12 +26145,12 @@ This uses either the \"From\", \"Sender\", \"To\", or
26166excluded by `mail-dont-reply-to-names'. If prefix argument 26145excluded by `mail-dont-reply-to-names'. If prefix argument
26167REVERSE is non-nil, sorts in reverse order. 26146REVERSE is non-nil, sorts in reverse order.
26168 26147
26169(fn REVERSE)" t nil) 26148(fn REVERSE)" t)
26170(autoload 'rmail-sort-by-lines "rmailsort" "\ 26149(autoload 'rmail-sort-by-lines "rmailsort" "\
26171Sort messages of current Rmail buffer by the number of lines. 26150Sort messages of current Rmail buffer by the number of lines.
26172If prefix argument REVERSE is non-nil, sorts in reverse order. 26151If prefix argument REVERSE is non-nil, sorts in reverse order.
26173 26152
26174(fn REVERSE)" t nil) 26153(fn REVERSE)" t)
26175(autoload 'rmail-sort-by-labels "rmailsort" "\ 26154(autoload 'rmail-sort-by-labels "rmailsort" "\
26176Sort messages of current Rmail buffer by labels. 26155Sort messages of current Rmail buffer by labels.
26177LABELS is a comma-separated list of labels. The order of these 26156LABELS is a comma-separated list of labels. The order of these
@@ -26180,19 +26159,19 @@ label come first, messages with the second label come second, and
26180so on. Messages that have none of these labels come last. 26159so on. Messages that have none of these labels come last.
26181If prefix argument REVERSE is non-nil, sorts in reverse order. 26160If prefix argument REVERSE is non-nil, sorts in reverse order.
26182 26161
26183(fn REVERSE LABELS)" t nil) 26162(fn REVERSE LABELS)" t)
26184(register-definition-prefixes "rmailsort" '("rmail-")) 26163(register-definition-prefixes "rmailsort" '("rmail-"))
26185 26164
26186 26165
26187;;; Generated autoloads from mail/rmailsum.el 26166;;; Generated autoloads from mail/rmailsum.el
26188 26167
26189(autoload 'rmail-summary "rmailsum" "\ 26168(autoload 'rmail-summary "rmailsum" "\
26190Display a summary of all messages, one line per message." t nil) 26169Display a summary of all messages, one line per message." t)
26191(autoload 'rmail-summary-by-labels "rmailsum" "\ 26170(autoload 'rmail-summary-by-labels "rmailsum" "\
26192Display a summary of all messages with one or more LABELS. 26171Display a summary of all messages with one or more LABELS.
26193LABELS should be a string containing the desired labels, separated by commas. 26172LABELS should be a string containing the desired labels, separated by commas.
26194 26173
26195(fn LABELS)" t nil) 26174(fn LABELS)" t)
26196(autoload 'rmail-summary-by-recipients "rmailsum" "\ 26175(autoload 'rmail-summary-by-recipients "rmailsum" "\
26197Display a summary of all messages with the given RECIPIENTS. 26176Display a summary of all messages with the given RECIPIENTS.
26198Normally checks the To, From and Cc fields of headers; 26177Normally checks the To, From and Cc fields of headers;
@@ -26200,27 +26179,27 @@ but if PRIMARY-ONLY is non-nil (prefix arg given),
26200 only look in the To and From fields. 26179 only look in the To and From fields.
26201RECIPIENTS is a regular expression. 26180RECIPIENTS is a regular expression.
26202 26181
26203(fn RECIPIENTS &optional PRIMARY-ONLY)" t nil) 26182(fn RECIPIENTS &optional PRIMARY-ONLY)" t)
26204(autoload 'rmail-summary-by-regexp "rmailsum" "\ 26183(autoload 'rmail-summary-by-regexp "rmailsum" "\
26205Display a summary of all messages according to regexp REGEXP. 26184Display a summary of all messages according to regexp REGEXP.
26206If the regular expression is found in the header of the message 26185If the regular expression is found in the header of the message
26207(including in the date and other lines, as well as the subject line), 26186(including in the date and other lines, as well as the subject line),
26208Emacs will list the message in the summary. 26187Emacs will list the message in the summary.
26209 26188
26210(fn REGEXP)" t nil) 26189(fn REGEXP)" t)
26211(autoload 'rmail-summary-by-topic "rmailsum" "\ 26190(autoload 'rmail-summary-by-topic "rmailsum" "\
26212Display a summary of all messages with the given SUBJECT. 26191Display a summary of all messages with the given SUBJECT.
26213Normally checks just the Subject field of headers; but with prefix 26192Normally checks just the Subject field of headers; but with prefix
26214argument WHOLE-MESSAGE is non-nil, looks in the whole message. 26193argument WHOLE-MESSAGE is non-nil, looks in the whole message.
26215SUBJECT is a regular expression. 26194SUBJECT is a regular expression.
26216 26195
26217(fn SUBJECT &optional WHOLE-MESSAGE)" t nil) 26196(fn SUBJECT &optional WHOLE-MESSAGE)" t)
26218(autoload 'rmail-summary-by-senders "rmailsum" "\ 26197(autoload 'rmail-summary-by-senders "rmailsum" "\
26219Display a summary of all messages whose \"From\" field matches SENDERS. 26198Display a summary of all messages whose \"From\" field matches SENDERS.
26220SENDERS is a regular expression. The default for SENDERS matches the 26199SENDERS is a regular expression. The default for SENDERS matches the
26221sender of the current message. 26200sender of the current message.
26222 26201
26223(fn SENDERS)" t nil) 26202(fn SENDERS)" t)
26224(register-definition-prefixes "rmailsum" '("rmail-")) 26203(register-definition-prefixes "rmailsum" '("rmail-"))
26225 26204
26226 26205
@@ -26230,7 +26209,7 @@ sender of the current message.
26230Load a schema in RELAX NG compact syntax from FILENAME. 26209Load a schema in RELAX NG compact syntax from FILENAME.
26231Return a pattern. 26210Return a pattern.
26232 26211
26233(fn FILENAME)" nil nil) 26212(fn FILENAME)")
26234(register-definition-prefixes "rng-cmpct" '("rng-")) 26213(register-definition-prefixes "rng-cmpct" '("rng-"))
26235 26214
26236 26215
@@ -26259,7 +26238,7 @@ Return a pattern.
26259(autoload 'rng-nxml-mode-init "rng-nxml" "\ 26238(autoload 'rng-nxml-mode-init "rng-nxml" "\
26260Initialize `nxml-mode' to take advantage of `rng-validate-mode'. 26239Initialize `nxml-mode' to take advantage of `rng-validate-mode'.
26261This is typically called from `nxml-mode-hook'. 26240This is typically called from `nxml-mode-hook'.
26262Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil." t nil) 26241Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil." t)
26263(register-definition-prefixes "rng-nxml" '("rng-")) 26242(register-definition-prefixes "rng-nxml" '("rng-"))
26264 26243
26265 26244
@@ -26322,7 +26301,7 @@ evaluate `rng-validate-mode'.
26322The mode's hook is called both when the mode is enabled and when 26301The mode's hook is called both when the mode is enabled and when
26323it is disabled. 26302it is disabled.
26324 26303
26325(fn &optional ARG)" t nil) 26304(fn &optional ARG)" t)
26326(register-definition-prefixes "rng-valid" '("rng-")) 26305(register-definition-prefixes "rng-valid" '("rng-"))
26327 26306
26328 26307
@@ -26347,7 +26326,7 @@ The object returned can be any convenient non-nil value, provided
26347that, if two strings represent the same value, the returned objects 26326that, if two strings represent the same value, the returned objects
26348must be equal. 26327must be equal.
26349 26328
26350(fn NAME PARAMS)" nil nil) 26329(fn NAME PARAMS)")
26351(register-definition-prefixes "rng-xsd" '("rng-xsd-" "xsd-duration-reference-dates")) 26330(register-definition-prefixes "rng-xsd" '("rng-xsd-" "xsd-duration-reference-dates"))
26352 26331
26353 26332
@@ -26372,11 +26351,11 @@ NAME is the string specifying a robin package.
26372INPUT is a string that specifies the input pattern. 26351INPUT is a string that specifies the input pattern.
26373OUTPUT is either a character or a string to be generated. 26352OUTPUT is either a character or a string to be generated.
26374 26353
26375(fn NAME INPUT OUTPUT)" nil nil) 26354(fn NAME INPUT OUTPUT)")
26376(autoload 'robin-use-package "robin" "\ 26355(autoload 'robin-use-package "robin" "\
26377Start using robin package NAME, which is a string. 26356Start using robin package NAME, which is a string.
26378 26357
26379(fn NAME)" nil nil) 26358(fn NAME)")
26380(register-definition-prefixes "robin" '("robin-")) 26359(register-definition-prefixes "robin" '("robin-"))
26381 26360
26382 26361
@@ -26388,15 +26367,15 @@ If OBJECT is a buffer, encrypt the region between START and END.
26388If OBJECT is a string, encrypt it in its entirety, ignoring START 26367If OBJECT is a string, encrypt it in its entirety, ignoring START
26389and END, and return the encrypted string. 26368and END, and return the encrypted string.
26390 26369
26391(fn OBJECT &optional START END)" nil nil) 26370(fn OBJECT &optional START END)")
26392(autoload 'rot13-string "rot13" "\ 26371(autoload 'rot13-string "rot13" "\
26393Return ROT13 encryption of STRING. 26372Return ROT13 encryption of STRING.
26394 26373
26395(fn STRING)" nil nil) 26374(fn STRING)")
26396(autoload 'rot13-region "rot13" "\ 26375(autoload 'rot13-region "rot13" "\
26397ROT13 encrypt the region between START and END in current buffer. 26376ROT13 encrypt the region between START and END in current buffer.
26398 26377
26399(fn START END)" t nil) 26378(fn START END)" t)
26400(autoload 'rot13-other-window "rot13" "\ 26379(autoload 'rot13-other-window "rot13" "\
26401Display current buffer in ROT13 in another window. 26380Display current buffer in ROT13 in another window.
26402The text itself is not modified, only the way it is displayed is affected. 26381The text itself is not modified, only the way it is displayed is affected.
@@ -26405,9 +26384,9 @@ To terminate the ROT13 display, delete that window. As long as that window
26405is not deleted, any buffer displayed in it will become instantly encoded 26384is not deleted, any buffer displayed in it will become instantly encoded
26406in ROT13. 26385in ROT13.
26407 26386
26408See also `toggle-rot13-mode'." t nil) 26387See also `toggle-rot13-mode'." t)
26409(autoload 'toggle-rot13-mode "rot13" "\ 26388(autoload 'toggle-rot13-mode "rot13" "\
26410Toggle the use of ROT13 encoding for the current window." t nil) 26389Toggle the use of ROT13 encoding for the current window." t)
26411(register-definition-prefixes "rot13" '("rot13-")) 26390(register-definition-prefixes "rot13" '("rot13-"))
26412 26391
26413 26392
@@ -26424,7 +26403,7 @@ highlighting.
26424 26403
26425\\{rst-mode-map} 26404\\{rst-mode-map}
26426 26405
26427(fn)" t nil) 26406(fn)" t)
26428(autoload 'rst-minor-mode "rst" "\ 26407(autoload 'rst-minor-mode "rst" "\
26429Toggle ReST minor mode. 26408Toggle ReST minor mode.
26430 26409
@@ -26446,7 +26425,7 @@ evaluate `rst-minor-mode'.
26446The mode's hook is called both when the mode is enabled and when 26425The mode's hook is called both when the mode is enabled and when
26447it is disabled. 26426it is disabled.
26448 26427
26449(fn &optional ARG)" t nil) 26428(fn &optional ARG)" t)
26450(register-definition-prefixes "rst" '("rst-")) 26429(register-definition-prefixes "rst" '("rst-"))
26451 26430
26452 26431
@@ -26461,7 +26440,7 @@ it is disabled.
26461(autoload 'ruby-mode "ruby-mode" "\ 26440(autoload 'ruby-mode "ruby-mode" "\
26462Major mode for editing Ruby code. 26441Major mode for editing Ruby code.
26463 26442
26464(fn)" t nil) 26443(fn)" t)
26465(add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\.\\(?:" "rbw?\\|ru\\|rake\\|thor" "\\|jbuilder\\|rabl\\|gemspec\\|podspec" "\\)" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "\\|Puppet\\|Berks\\|Brew" "\\|Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode)) 26444(add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\.\\(?:" "rbw?\\|ru\\|rake\\|thor" "\\|jbuilder\\|rabl\\|gemspec\\|podspec" "\\)" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "\\|Puppet\\|Berks\\|Brew" "\\|Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode))
26466(dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode))) 26445(dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode)))
26467(register-definition-prefixes "ruby-mode" '("ruby-")) 26446(register-definition-prefixes "ruby-mode" '("ruby-"))
@@ -26489,7 +26468,7 @@ evaluate `ruler-mode'.
26489The mode's hook is called both when the mode is enabled and when 26468The mode's hook is called both when the mode is enabled and when
26490it is disabled. 26469it is disabled.
26491 26470
26492(fn &optional ARG)" t nil) 26471(fn &optional ARG)" t)
26493(register-definition-prefixes "ruler-mode" '("ruler-")) 26472(register-definition-prefixes "ruler-mode" '("ruler-"))
26494 26473
26495 26474
@@ -26504,7 +26483,7 @@ group.
26504 26483
26505For extending the `rx' notation in FORM, use `rx-define' or `rx-let-eval'. 26484For extending the `rx' notation in FORM, use `rx-define' or `rx-let-eval'.
26506 26485
26507(fn FORM &optional NO-GROUP)" nil nil) 26486(fn FORM &optional NO-GROUP)")
26508(autoload 'rx "rx" "\ 26487(autoload 'rx "rx" "\
26509Translate regular expressions REGEXPS in sexp form to a regexp string. 26488Translate regular expressions REGEXPS in sexp form to a regexp string.
26510Each argument is one of the forms below; RX is a subform, and RX... stands 26489Each argument is one of the forms below; RX is a subform, and RX... stands
@@ -26695,7 +26674,7 @@ following constructs:
26695(autoload 'rx--pcase-expand "rx" "\ 26674(autoload 'rx--pcase-expand "rx" "\
26696 26675
26697 26676
26698(fn REGEXPS)" nil nil) 26677(fn REGEXPS)")
26699(register-definition-prefixes "rx" '("rx-")) 26678(register-definition-prefixes "rx" '("rx-"))
26700 26679
26701 26680
@@ -26782,7 +26761,7 @@ evaluate `(default-value \\='savehist-mode)'.
26782The mode's hook is called both when the mode is enabled and when 26761The mode's hook is called both when the mode is enabled and when
26783it is disabled. 26762it is disabled.
26784 26763
26785(fn &optional ARG)" t nil) 26764(fn &optional ARG)" t)
26786(register-definition-prefixes "savehist" '("savehist-")) 26765(register-definition-prefixes "savehist" '("savehist-"))
26787 26766
26788 26767
@@ -26816,7 +26795,7 @@ evaluate `(default-value \\='save-place-mode)'.
26816The mode's hook is called both when the mode is enabled and when 26795The mode's hook is called both when the mode is enabled and when
26817it is disabled. 26796it is disabled.
26818 26797
26819(fn &optional ARG)" t nil) 26798(fn &optional ARG)" t)
26820(autoload 'save-place-local-mode "saveplace" "\ 26799(autoload 'save-place-local-mode "saveplace" "\
26821Toggle whether to save your place in this file between sessions. 26800Toggle whether to save your place in this file between sessions.
26822 26801
@@ -26844,7 +26823,7 @@ evaluate `save-place-mode'.
26844The mode's hook is called both when the mode is enabled and when 26823The mode's hook is called both when the mode is enabled and when
26845it is disabled. 26824it is disabled.
26846 26825
26847(fn &optional ARG)" t nil) 26826(fn &optional ARG)" t)
26848(register-definition-prefixes "saveplace" '("save-place")) 26827(register-definition-prefixes "saveplace" '("save-place"))
26849 26828
26850 26829
@@ -26873,7 +26852,7 @@ Delete converts tabs to spaces as it moves back.
26873Blank lines separate paragraphs. Semicolons start comments. 26852Blank lines separate paragraphs. Semicolons start comments.
26874\\{scheme-mode-map} 26853\\{scheme-mode-map}
26875 26854
26876(fn)" t nil) 26855(fn)" t)
26877(autoload 'dsssl-mode "scheme" "\ 26856(autoload 'dsssl-mode "scheme" "\
26878Major mode for editing DSSSL code. 26857Major mode for editing DSSSL code.
26879Editing commands are similar to those of `lisp-mode'. 26858Editing commands are similar to those of `lisp-mode'.
@@ -26886,7 +26865,7 @@ Entering this mode runs the hooks `scheme-mode-hook' and then
26886`dsssl-mode-hook' and inserts the value of `dsssl-sgml-declaration' if 26865`dsssl-mode-hook' and inserts the value of `dsssl-sgml-declaration' if
26887that variable's value is a string. 26866that variable's value is a string.
26888 26867
26889(fn)" t nil) 26868(fn)" t)
26890(register-definition-prefixes "scheme" '("dsssl-" "scheme-")) 26869(register-definition-prefixes "scheme" '("dsssl-" "scheme-"))
26891 26870
26892 26871
@@ -26908,7 +26887,7 @@ This mode is an extended emacs-lisp mode.
26908 26887
26909\\{gnus-score-mode-map} 26888\\{gnus-score-mode-map}
26910 26889
26911(fn)" t nil) 26890(fn)" t)
26912(register-definition-prefixes "score-mode" '("gnus-score-" "score-mode-")) 26891(register-definition-prefixes "score-mode" '("gnus-score-" "score-mode-"))
26913 26892
26914 26893
@@ -26942,7 +26921,7 @@ evaluate `(default-value \\='scroll-all-mode)'.
26942The mode's hook is called both when the mode is enabled and when 26921The mode's hook is called both when the mode is enabled and when
26943it is disabled. 26922it is disabled.
26944 26923
26945(fn &optional ARG)" t nil) 26924(fn &optional ARG)" t)
26946(register-definition-prefixes "scroll-all" '("scroll-all-")) 26925(register-definition-prefixes "scroll-all" '("scroll-all-"))
26947 26926
26948 26927
@@ -26978,7 +26957,7 @@ evaluate `scroll-lock-mode'.
26978The mode's hook is called both when the mode is enabled and when 26957The mode's hook is called both when the mode is enabled and when
26979it is disabled. 26958it is disabled.
26980 26959
26981(fn &optional ARG)" t nil) 26960(fn &optional ARG)" t)
26982(register-definition-prefixes "scroll-lock" '("scroll-lock-")) 26961(register-definition-prefixes "scroll-lock" '("scroll-lock-"))
26983 26962
26984 26963
@@ -27053,7 +27032,7 @@ evaluate `(default-value \\='semantic-mode)'.
27053The mode's hook is called both when the mode is enabled and when 27032The mode's hook is called both when the mode is enabled and when
27054it is disabled. 27033it is disabled.
27055 27034
27056(fn &optional ARG)" t nil) 27035(fn &optional ARG)" t)
27057(register-definition-prefixes "semantic" '("bovinate" "semantic-")) 27036(register-definition-prefixes "semantic" '("bovinate" "semantic-"))
27058 27037
27059 27038
@@ -27193,12 +27172,12 @@ variable `message-default-mail-headers' instead.")
27193(custom-autoload 'mail-default-headers "sendmail" t) 27172(custom-autoload 'mail-default-headers "sendmail" t)
27194(autoload 'sendmail-query-once "sendmail" "\ 27173(autoload 'sendmail-query-once "sendmail" "\
27195Query for `send-mail-function' and send mail with it. 27174Query for `send-mail-function' and send mail with it.
27196This also saves the value of `send-mail-function' via Customize." nil nil) 27175This also saves the value of `send-mail-function' via Customize.")
27197(define-mail-user-agent 'sendmail-user-agent #'sendmail-user-agent-compose #'mail-send-and-exit) 27176(define-mail-user-agent 'sendmail-user-agent #'sendmail-user-agent-compose #'mail-send-and-exit)
27198(autoload 'sendmail-user-agent-compose "sendmail" "\ 27177(autoload 'sendmail-user-agent-compose "sendmail" "\
27199 27178
27200 27179
27201(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS RETURN-ACTION &rest IGNORED)" nil nil) 27180(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS RETURN-ACTION &rest IGNORED)")
27202(autoload 'mail-mode "sendmail" "\ 27181(autoload 'mail-mode "sendmail" "\
27203Major mode for editing mail to be sent. 27182Major mode for editing mail to be sent.
27204Like Text Mode but with these additional commands: 27183Like Text Mode but with these additional commands:
@@ -27221,12 +27200,12 @@ Here are commands that move to a header field (and create it if there isn't):
27221Turning on Mail mode runs the normal hooks `text-mode-hook' and 27200Turning on Mail mode runs the normal hooks `text-mode-hook' and
27222`mail-mode-hook' (in that order). 27201`mail-mode-hook' (in that order).
27223 27202
27224(fn)" t nil) 27203(fn)" t)
27225(autoload 'mail-send-and-exit "sendmail" "\ 27204(autoload 'mail-send-and-exit "sendmail" "\
27226Send message like `mail-send', then, if no errors, exit from mail buffer. 27205Send message like `mail-send', then, if no errors, exit from mail buffer.
27227Prefix arg means don't delete this window. 27206Prefix arg means don't delete this window.
27228 27207
27229(fn &optional ARG)" t nil) 27208(fn &optional ARG)" t)
27230(defvar mail-mailing-lists nil "\ 27209(defvar mail-mailing-lists nil "\
27231List of mailing list addresses the user is subscribed to. 27210List of mailing list addresses the user is subscribed to.
27232The variable is used to trigger insertion of the \"Mail-Followup-To\" 27211The variable is used to trigger insertion of the \"Mail-Followup-To\"
@@ -27295,15 +27274,15 @@ The seventh argument ACTIONS is a list of actions to take
27295 when the message is sent, we apply FUNCTION to ARGS. 27274 when the message is sent, we apply FUNCTION to ARGS.
27296 This is how Rmail arranges to mark messages `answered'. 27275 This is how Rmail arranges to mark messages `answered'.
27297 27276
27298(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER ACTIONS RETURN-ACTION)" t nil) 27277(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER ACTIONS RETURN-ACTION)" t)
27299(autoload 'mail-other-window "sendmail" "\ 27278(autoload 'mail-other-window "sendmail" "\
27300Like `mail' command, but display mail buffer in another window. 27279Like `mail' command, but display mail buffer in another window.
27301 27280
27302(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t nil) 27281(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t)
27303(autoload 'mail-other-frame "sendmail" "\ 27282(autoload 'mail-other-frame "sendmail" "\
27304Like `mail' command, but display mail buffer in another frame. 27283Like `mail' command, but display mail buffer in another frame.
27305 27284
27306(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t nil) 27285(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t)
27307(register-definition-prefixes "sendmail" '("mail-" "sendmail-")) 27286(register-definition-prefixes "sendmail" '("mail-" "sendmail-"))
27308 27287
27309 27288
@@ -27337,13 +27316,13 @@ To force-start a server, do \\[server-force-delete] and then
27337To check from a Lisp program whether a server is running, use 27316To check from a Lisp program whether a server is running, use
27338the `server-process' variable. 27317the `server-process' variable.
27339 27318
27340(fn &optional LEAVE-DEAD INHIBIT-PROMPT)" t nil) 27319(fn &optional LEAVE-DEAD INHIBIT-PROMPT)" t)
27341(autoload 'server-force-delete "server" "\ 27320(autoload 'server-force-delete "server" "\
27342Unconditionally delete connection file for server NAME. 27321Unconditionally delete connection file for server NAME.
27343If server is running, it is first stopped. 27322If server is running, it is first stopped.
27344NAME defaults to `server-name'. With argument, ask for NAME. 27323NAME defaults to `server-name'. With argument, ask for NAME.
27345 27324
27346(fn &optional NAME)" t nil) 27325(fn &optional NAME)" t)
27347(defvar server-mode nil "\ 27326(defvar server-mode nil "\
27348Non-nil if Server mode is enabled. 27327Non-nil if Server mode is enabled.
27349See the `server-mode' command 27328See the `server-mode' command
@@ -27373,7 +27352,7 @@ evaluate `(default-value \\='server-mode)'.
27373The mode's hook is called both when the mode is enabled and when 27352The mode's hook is called both when the mode is enabled and when
27374it is disabled. 27353it is disabled.
27375 27354
27376(fn &optional ARG)" t nil) 27355(fn &optional ARG)" t)
27377(autoload 'server-save-buffers-kill-terminal "server" "\ 27356(autoload 'server-save-buffers-kill-terminal "server" "\
27378Offer to save each buffer, then kill the current client. 27357Offer to save each buffer, then kill the current client.
27379With ARG non-nil, silently save all file-visiting buffers, then kill. 27358With ARG non-nil, silently save all file-visiting buffers, then kill.
@@ -27381,7 +27360,7 @@ With ARG non-nil, silently save all file-visiting buffers, then kill.
27381If emacsclient was started with a list of filenames to edit, then 27360If emacsclient was started with a list of filenames to edit, then
27382only these files will be asked to be saved. 27361only these files will be asked to be saved.
27383 27362
27384(fn ARG)" nil nil) 27363(fn ARG)")
27385(autoload 'server-stop-automatically "server" "\ 27364(autoload 'server-stop-automatically "server" "\
27386Automatically stop server as specified by ARG. 27365Automatically stop server as specified by ARG.
27387 27366
@@ -27403,7 +27382,7 @@ Any other value of ARG will cause this function to signal an error.
27403 27382
27404This function is meant to be called from the user init file. 27383This function is meant to be called from the user init file.
27405 27384
27406(fn ARG)" nil nil) 27385(fn ARG)")
27407(register-definition-prefixes "server" '("server-")) 27386(register-definition-prefixes "server" '("server-"))
27408 27387
27409 27388
@@ -27444,7 +27423,7 @@ part):
27444\\{ses-mode-print-map} 27423\\{ses-mode-print-map}
27445These are active only in the minibuffer, when entering or editing a 27424These are active only in the minibuffer, when entering or editing a
27446formula: 27425formula:
27447\\{ses-mode-edit-map}" t nil) 27426\\{ses-mode-edit-map}" t)
27448(register-definition-prefixes "ses" '("ses")) 27427(register-definition-prefixes "ses" '("ses"))
27449 27428
27450 27429
@@ -27469,7 +27448,7 @@ Do \\[describe-variable] sgml- SPC to see available variables.
27469Do \\[describe-key] on the following bindings to discover what they do. 27448Do \\[describe-key] on the following bindings to discover what they do.
27470\\{sgml-mode-map} 27449\\{sgml-mode-map}
27471 27450
27472(fn)" t nil) 27451(fn)" t)
27473(autoload 'html-mode "sgml-mode" "\ 27452(autoload 'html-mode "sgml-mode" "\
27474Major mode based on SGML mode for editing HTML documents. 27453Major mode based on SGML mode for editing HTML documents.
27475This allows inserting skeleton constructs used in hypertext documents with 27454This allows inserting skeleton constructs used in hypertext documents with
@@ -27508,7 +27487,7 @@ To work around that, do:
27508 27487
27509\\{html-mode-map} 27488\\{html-mode-map}
27510 27489
27511(fn)" t nil) 27490(fn)" t)
27512(register-definition-prefixes "sgml-mode" '("html-" "sgml-")) 27491(register-definition-prefixes "sgml-mode" '("html-" "sgml-"))
27513 27492
27514 27493
@@ -27567,7 +27546,7 @@ indicate what shell it is use `sh-alias-alist' to translate.
27567If your shell gives error messages with line numbers, you can use \\[executable-interpret] 27546If your shell gives error messages with line numbers, you can use \\[executable-interpret]
27568with your script for an edit-interpret-debug cycle. 27547with your script for an edit-interpret-debug cycle.
27569 27548
27570(fn)" t nil) 27549(fn)" t)
27571(defalias 'shell-script-mode 'sh-mode) 27550(defalias 'shell-script-mode 'sh-mode)
27572(register-definition-prefixes "sh-script" '("sh-")) 27551(register-definition-prefixes "sh-script" '("sh-"))
27573 27552
@@ -27616,7 +27595,7 @@ considered to shadow a later file XXX.el, and vice-versa.
27616Shadowings are located by calling the (non-interactive) companion 27595Shadowings are located by calling the (non-interactive) companion
27617function, `load-path-shadows-find'. 27596function, `load-path-shadows-find'.
27618 27597
27619(fn &optional STRINGP)" t nil) 27598(fn &optional STRINGP)" t)
27620(register-definition-prefixes "shadow" '("load-path-shadows-")) 27599(register-definition-prefixes "shadow" '("load-path-shadows-"))
27621 27600
27622 27601
@@ -27630,21 +27609,21 @@ defined by a name, the network address of a primary host (the one we copy
27630files to), and a regular expression that matches the hostnames of all the 27609files to), and a regular expression that matches the hostnames of all the
27631sites in the cluster. 27610sites in the cluster.
27632 27611
27633(fn NAME)" t nil) 27612(fn NAME)" t)
27634(autoload 'shadow-define-literal-group "shadowfile" "\ 27613(autoload 'shadow-define-literal-group "shadowfile" "\
27635Declare a single file to be shared between sites. 27614Declare a single file to be shared between sites.
27636It may have different filenames on each site. When this file is edited, the 27615It may have different filenames on each site. When this file is edited, the
27637new version will be copied to each of the other locations. Sites can be 27616new version will be copied to each of the other locations. Sites can be
27638specific hostnames, or names of clusters (see `shadow-define-cluster')." t nil) 27617specific hostnames, or names of clusters (see `shadow-define-cluster')." t)
27639(autoload 'shadow-define-regexp-group "shadowfile" "\ 27618(autoload 'shadow-define-regexp-group "shadowfile" "\
27640Make each of a group of files be shared between hosts. 27619Make each of a group of files be shared between hosts.
27641Prompts for regular expression; files matching this are shared between a list 27620Prompts for regular expression; files matching this are shared between a list
27642of sites, which are also prompted for. The filenames must be identical on all 27621of sites, which are also prompted for. The filenames must be identical on all
27643hosts (if they aren't, use `shadow-define-literal-group' instead of this 27622hosts (if they aren't, use `shadow-define-literal-group' instead of this
27644function). Each site can be either a hostname or the name of a cluster (see 27623function). Each site can be either a hostname or the name of a cluster (see
27645`shadow-define-cluster')." t nil) 27624`shadow-define-cluster')." t)
27646(autoload 'shadow-initialize "shadowfile" "\ 27625(autoload 'shadow-initialize "shadowfile" "\
27647Set up file shadowing." t nil) 27626Set up file shadowing." t)
27648(register-definition-prefixes "shadowfile" '("shadow")) 27627(register-definition-prefixes "shadowfile" '("shadow"))
27649 27628
27650 27629
@@ -27667,7 +27646,7 @@ Split STRING (a shell command) into a list of strings.
27667General shell syntax, like single and double quoting, as well as 27646General shell syntax, like single and double quoting, as well as
27668backslash quoting, is respected. 27647backslash quoting, is respected.
27669 27648
27670(fn STRING)" nil nil) 27649(fn STRING)")
27671(autoload 'shell "shell" "\ 27650(autoload 'shell "shell" "\
27672Run an inferior shell, with I/O through BUFFER (which defaults to `*shell*'). 27651Run an inferior shell, with I/O through BUFFER (which defaults to `*shell*').
27673Interactively, a prefix arg means to prompt for BUFFER. 27652Interactively, a prefix arg means to prompt for BUFFER.
@@ -27704,7 +27683,7 @@ Make the shell buffer the current buffer, and return it.
27704 27683
27705(Type \\[describe-mode] in the shell buffer for a list of commands.) 27684(Type \\[describe-mode] in the shell buffer for a list of commands.)
27706 27685
27707(fn &optional BUFFER FILE-NAME)" t nil) 27686(fn &optional BUFFER FILE-NAME)" t)
27708(register-definition-prefixes "shell" '("dirs" "explicit-" "shell-")) 27687(register-definition-prefixes "shell" '("dirs" "explicit-" "shell-"))
27709 27688
27710 27689
@@ -27779,7 +27758,7 @@ Pop to a buffer with short documentation summary for functions in GROUP.
27779If FUNCTION is non-nil, place point on the entry for FUNCTION (if any). 27758If FUNCTION is non-nil, place point on the entry for FUNCTION (if any).
27780If SAME-WINDOW, don't pop to a new window. 27759If SAME-WINDOW, don't pop to a new window.
27781 27760
27782(fn GROUP &optional FUNCTION SAME-WINDOW)" t nil) 27761(fn GROUP &optional FUNCTION SAME-WINDOW)" t)
27783(defalias 'shortdoc #'shortdoc-display-group) 27762(defalias 'shortdoc #'shortdoc-display-group)
27784(register-definition-prefixes "shortdoc" '("shortdoc-")) 27763(register-definition-prefixes "shortdoc" '("shortdoc-"))
27785 27764
@@ -27789,13 +27768,13 @@ If SAME-WINDOW, don't pop to a new window.
27789(autoload 'shr-render-region "shr" "\ 27768(autoload 'shr-render-region "shr" "\
27790Display the HTML rendering of the region between BEGIN and END. 27769Display the HTML rendering of the region between BEGIN and END.
27791 27770
27792(fn BEGIN END &optional BUFFER)" t nil) 27771(fn BEGIN END &optional BUFFER)" t)
27793(autoload 'shr-insert-document "shr" "\ 27772(autoload 'shr-insert-document "shr" "\
27794Render the parsed document DOM into the current buffer. 27773Render the parsed document DOM into the current buffer.
27795DOM should be a parse tree as generated by 27774DOM should be a parse tree as generated by
27796`libxml-parse-html-region' or similar. 27775`libxml-parse-html-region' or similar.
27797 27776
27798(fn DOM)" nil nil) 27777(fn DOM)")
27799(register-definition-prefixes "shr" '("shr-")) 27778(register-definition-prefixes "shr" '("shr-"))
27800 27779
27801 27780
@@ -27809,19 +27788,19 @@ DOM should be a parse tree as generated by
27809(autoload 'sieve-manage "sieve" "\ 27788(autoload 'sieve-manage "sieve" "\
27810 27789
27811 27790
27812(fn SERVER &optional PORT)" t nil) 27791(fn SERVER &optional PORT)" t)
27813(autoload 'sieve-upload "sieve" "\ 27792(autoload 'sieve-upload "sieve" "\
27814 27793
27815 27794
27816(fn &optional NAME)" t nil) 27795(fn &optional NAME)" t)
27817(autoload 'sieve-upload-and-bury "sieve" "\ 27796(autoload 'sieve-upload-and-bury "sieve" "\
27818 27797
27819 27798
27820(fn &optional NAME)" t nil) 27799(fn &optional NAME)" t)
27821(autoload 'sieve-upload-and-kill "sieve" "\ 27800(autoload 'sieve-upload-and-kill "sieve" "\
27822 27801
27823 27802
27824(fn &optional NAME)" t nil) 27803(fn &optional NAME)" t)
27825(register-definition-prefixes "sieve" '("sieve-")) 27804(register-definition-prefixes "sieve" '("sieve-"))
27826 27805
27827 27806
@@ -27836,7 +27815,7 @@ DOM should be a parse tree as generated by
27836Major mode for editing Sieve code. 27815Major mode for editing Sieve code.
27837Turning on Sieve mode runs `sieve-mode-hook'. 27816Turning on Sieve mode runs `sieve-mode-hook'.
27838 27817
27839(fn)" t nil) 27818(fn)" t)
27840(register-definition-prefixes "sieve-mode" '("sieve-")) 27819(register-definition-prefixes "sieve-mode" '("sieve-"))
27841 27820
27842 27821
@@ -27885,7 +27864,7 @@ Variables controlling indentation style:
27885Turning on SIMULA mode calls the value of the variable simula-mode-hook 27864Turning on SIMULA mode calls the value of the variable simula-mode-hook
27886with no arguments, if that value is non-nil. 27865with no arguments, if that value is non-nil.
27887 27866
27888(fn)" t nil) 27867(fn)" t)
27889(register-definition-prefixes "simula" '("simula-")) 27868(register-definition-prefixes "simula" '("simula-"))
27890 27869
27891 27870
@@ -27917,7 +27896,7 @@ This command can also be an abbrev expansion (3rd and 4th columns in
27917Optional second argument STR may also be a string which will be the value 27896Optional second argument STR may also be a string which will be the value
27918of `str' whereas the skeleton's interactor is then ignored. 27897of `str' whereas the skeleton's interactor is then ignored.
27919 27898
27920(fn SKELETON &optional STR ARG)" nil nil) 27899(fn SKELETON &optional STR ARG)")
27921(autoload 'skeleton-insert "skeleton" "\ 27900(autoload 'skeleton-insert "skeleton" "\
27922Insert the complex statement skeleton SKELETON describes very concisely. 27901Insert the complex statement skeleton SKELETON describes very concisely.
27923 27902
@@ -27989,7 +27968,7 @@ available:
27989 input initial input (string or cons with index) while reading str 27968 input initial input (string or cons with index) while reading str
27990 v1, v2 local variables for memorizing anything you want 27969 v1, v2 local variables for memorizing anything you want
27991 27970
27992(fn SKELETON &optional REGIONS STR)" nil nil) 27971(fn SKELETON &optional REGIONS STR)")
27993(autoload 'skeleton-pair-insert-maybe "skeleton" "\ 27972(autoload 'skeleton-pair-insert-maybe "skeleton" "\
27994Insert the character you type ARG times. 27973Insert the character you type ARG times.
27995 27974
@@ -28005,7 +27984,7 @@ the defaults are used. These are (), [], {}, <> and (grave
28005accent, apostrophe) for the paired ones, and the same character 27984accent, apostrophe) for the paired ones, and the same character
28006twice for the others. 27985twice for the others.
28007 27986
28008(fn ARG)" t nil) 27987(fn ARG)" t)
28009(register-definition-prefixes "skeleton" '("skeleton-")) 27988(register-definition-prefixes "skeleton" '("skeleton-"))
28010 27989
28011 27990
@@ -28026,13 +28005,13 @@ If non-nil, PREPROC is called with no argument in a buffer that contains
28026a copy of a region, just before preparing it to for `diff'. It can be 28005a copy of a region, just before preparing it to for `diff'. It can be
28027used to replace chars to try and eliminate some spurious differences. 28006used to replace chars to try and eliminate some spurious differences.
28028 28007
28029(fn BEG1 END1 BEG2 END2 PROPS-C &optional PREPROC PROPS-R PROPS-A)" nil nil) 28008(fn BEG1 END1 BEG2 END2 PROPS-C &optional PREPROC PROPS-R PROPS-A)")
28030(autoload 'smerge-ediff "smerge-mode" "\ 28009(autoload 'smerge-ediff "smerge-mode" "\
28031Invoke ediff to resolve the conflicts. 28010Invoke ediff to resolve the conflicts.
28032NAME-UPPER, NAME-LOWER, and NAME-BASE, if non-nil, are used for the 28011NAME-UPPER, NAME-LOWER, and NAME-BASE, if non-nil, are used for the
28033buffer names. 28012buffer names.
28034 28013
28035(fn &optional NAME-UPPER NAME-LOWER NAME-BASE)" t nil) 28014(fn &optional NAME-UPPER NAME-LOWER NAME-BASE)" t)
28036(autoload 'smerge-mode "smerge-mode" "\ 28015(autoload 'smerge-mode "smerge-mode" "\
28037Minor mode to simplify editing output from the diff3 program. 28016Minor mode to simplify editing output from the diff3 program.
28038 28017
@@ -28052,12 +28031,12 @@ evaluate `smerge-mode'.
28052The mode's hook is called both when the mode is enabled and when 28031The mode's hook is called both when the mode is enabled and when
28053it is disabled. 28032it is disabled.
28054 28033
28055(fn &optional ARG)" t nil) 28034(fn &optional ARG)" t)
28056(autoload 'smerge-start-session "smerge-mode" "\ 28035(autoload 'smerge-start-session "smerge-mode" "\
28057Turn on `smerge-mode' and move point to first conflict marker. 28036Turn on `smerge-mode' and move point to first conflict marker.
28058If no conflict maker is found, turn off `smerge-mode'. 28037If no conflict maker is found, turn off `smerge-mode'.
28059 28038
28060(fn &optional INTERACTIVELY)" t nil) 28039(fn &optional INTERACTIVELY)" t)
28061(register-definition-prefixes "smerge-mode" '("smerge-")) 28040(register-definition-prefixes "smerge-mode" '("smerge-"))
28062 28041
28063 28042
@@ -28072,12 +28051,12 @@ If no conflict maker is found, turn off `smerge-mode'.
28072Replace in the region `smiley-regexp-alist' matches with corresponding images. 28051Replace in the region `smiley-regexp-alist' matches with corresponding images.
28073A list of images is returned. 28052A list of images is returned.
28074 28053
28075(fn START END)" t nil) 28054(fn START END)" t)
28076(autoload 'smiley-buffer "smiley" "\ 28055(autoload 'smiley-buffer "smiley" "\
28077Run `smiley-region' at the BUFFER, specified in the argument or 28056Run `smiley-region' at the BUFFER, specified in the argument or
28078interactively. If there's no argument, do it at the current buffer. 28057interactively. If there's no argument, do it at the current buffer.
28079 28058
28080(fn &optional BUFFER)" t nil) 28059(fn &optional BUFFER)" t)
28081(register-definition-prefixes "smiley" '("gnus-smiley-file-types" "smiley-")) 28060(register-definition-prefixes "smiley" '("gnus-smiley-file-types" "smiley-"))
28082 28061
28083 28062
@@ -28088,9 +28067,9 @@ interactively. If there's no argument, do it at the current buffer.
28088 28067
28089;;; Generated autoloads from mail/smtpmail.el 28068;;; Generated autoloads from mail/smtpmail.el
28090 28069
28091(autoload 'smtpmail-send-it "smtpmail" nil nil nil) 28070(autoload 'smtpmail-send-it "smtpmail")
28092(autoload 'smtpmail-send-queued-mail "smtpmail" "\ 28071(autoload 'smtpmail-send-queued-mail "smtpmail" "\
28093Send mail that was queued as a result of setting `smtpmail-queue-mail'." t nil) 28072Send mail that was queued as a result of setting `smtpmail-queue-mail'." t)
28094(register-definition-prefixes "smtpmail" '("smtpmail-")) 28073(register-definition-prefixes "smtpmail" '("smtpmail-"))
28095 28074
28096 28075
@@ -28110,7 +28089,7 @@ Snake mode keybindings:
28110\\[snake-move-left] Makes the snake move left 28089\\[snake-move-left] Makes the snake move left
28111\\[snake-move-right] Makes the snake move right 28090\\[snake-move-right] Makes the snake move right
28112\\[snake-move-up] Makes the snake move up 28091\\[snake-move-up] Makes the snake move up
28113\\[snake-move-down] Makes the snake move down" t nil) 28092\\[snake-move-down] Makes the snake move down" t)
28114(register-definition-prefixes "snake" '("snake-")) 28093(register-definition-prefixes "snake" '("snake-"))
28115 28094
28116 28095
@@ -28124,7 +28103,7 @@ Comments start with -- and end with newline or another --.
28124Delete converts tabs to spaces as it moves back. 28103Delete converts tabs to spaces as it moves back.
28125\\{snmp-mode-map} 28104\\{snmp-mode-map}
28126Turning on `snmp-mode' runs the hooks in `snmp-common-mode-hook', then 28105Turning on `snmp-mode' runs the hooks in `snmp-common-mode-hook', then
28127`snmp-mode-hook'." t nil) 28106`snmp-mode-hook'." t)
28128(autoload 'snmpv2-mode "snmp-mode" "\ 28107(autoload 'snmpv2-mode "snmp-mode" "\
28129Major mode for editing SNMPv2 MIBs. 28108Major mode for editing SNMPv2 MIBs.
28130Expression and list commands understand all C brackets. 28109Expression and list commands understand all C brackets.
@@ -28133,7 +28112,7 @@ Comments start with -- and end with newline or another --.
28133Delete converts tabs to spaces as it moves back. 28112Delete converts tabs to spaces as it moves back.
28134\\{snmp-mode-map} 28113\\{snmp-mode-map}
28135Turning on `snmp-mode' runs the hooks in `snmp-common-mode-hook', 28114Turning on `snmp-mode' runs the hooks in `snmp-common-mode-hook',
28136then `snmpv2-mode-hook'." t nil) 28115then `snmpv2-mode-hook'." t)
28137(register-definition-prefixes "snmp-mode" '("snmp")) 28116(register-definition-prefixes "snmp-mode" '("snmp"))
28138 28117
28139 28118
@@ -28141,9 +28120,9 @@ then `snmpv2-mode-hook'." t nil)
28141 28120
28142(push (purecopy '(so-long 1 1 2)) package--builtin-versions) 28121(push (purecopy '(so-long 1 1 2)) package--builtin-versions)
28143(autoload 'so-long-commentary "so-long" "\ 28122(autoload 'so-long-commentary "so-long" "\
28144View the `so-long' library's documentation in `outline-mode'." t nil) 28123View the `so-long' library's documentation in `outline-mode'." t)
28145(autoload 'so-long-customize "so-long" "\ 28124(autoload 'so-long-customize "so-long" "\
28146Open the customization group `so-long'." t nil) 28125Open the customization group `so-long'." t)
28147(autoload 'so-long-minor-mode "so-long" "\ 28126(autoload 'so-long-minor-mode "so-long" "\
28148This is the minor mode equivalent of `so-long-mode'. 28127This is the minor mode equivalent of `so-long-mode'.
28149 28128
@@ -28167,7 +28146,7 @@ evaluate `so-long-minor-mode'.
28167The mode's hook is called both when the mode is enabled and when 28146The mode's hook is called both when the mode is enabled and when
28168it is disabled. 28147it is disabled.
28169 28148
28170(fn &optional ARG)" t nil) 28149(fn &optional ARG)" t)
28171(autoload 'so-long-mode "so-long" "\ 28150(autoload 'so-long-mode "so-long" "\
28172This major mode is the default `so-long-action' option. 28151This major mode is the default `so-long-action' option.
28173 28152
@@ -28195,7 +28174,7 @@ Use \\[so-long-commentary] for more information.
28195Use \\[so-long-customize] to open the customization group `so-long' to 28174Use \\[so-long-customize] to open the customization group `so-long' to
28196configure the behavior. 28175configure the behavior.
28197 28176
28198(fn)" t nil) 28177(fn)" t)
28199(autoload 'so-long "so-long" "\ 28178(autoload 'so-long "so-long" "\
28200Invoke `so-long-action' and run `so-long-hook'. 28179Invoke `so-long-action' and run `so-long-hook'.
28201 28180
@@ -28211,11 +28190,11 @@ With a prefix argument, select the action to use interactively.
28211If an action was already active in the buffer, it will be reverted before 28190If an action was already active in the buffer, it will be reverted before
28212invoking the new action. 28191invoking the new action.
28213 28192
28214(fn &optional ACTION)" t nil) 28193(fn &optional ACTION)" t)
28215(autoload 'so-long-enable "so-long" "\ 28194(autoload 'so-long-enable "so-long" "\
28216Enable the `so-long' library's functionality. 28195Enable the `so-long' library's functionality.
28217 28196
28218Equivalent to calling (global-so-long-mode 1)" t nil) 28197Equivalent to calling (global-so-long-mode 1)" t)
28219(defvar global-so-long-mode nil "\ 28198(defvar global-so-long-mode nil "\
28220Non-nil if Global So-Long mode is enabled. 28199Non-nil if Global So-Long mode is enabled.
28221See the `global-so-long-mode' command 28200See the `global-so-long-mode' command
@@ -28256,7 +28235,7 @@ evaluate `(default-value \\='global-so-long-mode)'.
28256The mode's hook is called both when the mode is enabled and when 28235The mode's hook is called both when the mode is enabled and when
28257it is disabled. 28236it is disabled.
28258 28237
28259(fn &optional ARG)" t nil) 28238(fn &optional ARG)" t)
28260(register-definition-prefixes "so-long" '("so-long-" "turn-o")) 28239(register-definition-prefixes "so-long" '("so-long-" "turn-o"))
28261 28240
28262 28241
@@ -28286,7 +28265,7 @@ longitude, latitude, time zone, and date, and always use standard time.
28286 28265
28287This function is suitable for execution in an init file. 28266This function is suitable for execution in an init file.
28288 28267
28289(fn &optional ARG)" t nil) 28268(fn &optional ARG)" t)
28290(register-definition-prefixes "solar" '("calendar-" "diary-sunrise-sunset" "solar-")) 28269(register-definition-prefixes "solar" '("calendar-" "diary-sunrise-sunset" "solar-"))
28291 28270
28292 28271
@@ -28360,7 +28339,7 @@ Pick your favorite shortcuts:
28360 28339
28361\\{solitaire-mode-map} 28340\\{solitaire-mode-map}
28362 28341
28363(fn ARG)" t nil) 28342(fn ARG)" t)
28364(register-definition-prefixes "solitaire" '("solitaire-")) 28343(register-definition-prefixes "solitaire" '("solitaire-"))
28365 28344
28366 28345
@@ -28416,7 +28395,7 @@ the keys are numbers, with `compare-buffer-substrings' if the
28416keys are cons cells (the car and cdr of each cons cell are taken 28395keys are cons cells (the car and cdr of each cons cell are taken
28417as start and end positions), and with `string<' otherwise. 28396as start and end positions), and with `string<' otherwise.
28418 28397
28419(fn REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN PREDICATE)" nil nil) 28398(fn REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN PREDICATE)")
28420(autoload 'sort-lines "sort" "\ 28399(autoload 'sort-lines "sort" "\
28421Sort lines in region alphabetically; REVERSE non-nil means descending order. 28400Sort lines in region alphabetically; REVERSE non-nil means descending order.
28422Interactively, REVERSE is the prefix argument, and BEG and END are the region. 28401Interactively, REVERSE is the prefix argument, and BEG and END are the region.
@@ -28425,7 +28404,7 @@ REVERSE (non-nil means reverse order), BEG and END (region to sort).
28425The variable `sort-fold-case' determines whether alphabetic case affects 28404The variable `sort-fold-case' determines whether alphabetic case affects
28426the sort order. 28405the sort order.
28427 28406
28428(fn REVERSE BEG END)" t nil) 28407(fn REVERSE BEG END)" t)
28429(autoload 'sort-paragraphs "sort" "\ 28408(autoload 'sort-paragraphs "sort" "\
28430Sort paragraphs in region alphabetically; argument means descending order. 28409Sort paragraphs in region alphabetically; argument means descending order.
28431Called from a program, there are three arguments: 28410Called from a program, there are three arguments:
@@ -28433,7 +28412,7 @@ REVERSE (non-nil means reverse order), BEG and END (region to sort).
28433The variable `sort-fold-case' determines whether alphabetic case affects 28412The variable `sort-fold-case' determines whether alphabetic case affects
28434the sort order. 28413the sort order.
28435 28414
28436(fn REVERSE BEG END)" t nil) 28415(fn REVERSE BEG END)" t)
28437(autoload 'sort-pages "sort" "\ 28416(autoload 'sort-pages "sort" "\
28438Sort pages in region alphabetically; argument means descending order. 28417Sort pages in region alphabetically; argument means descending order.
28439Called from a program, there are three arguments: 28418Called from a program, there are three arguments:
@@ -28441,7 +28420,7 @@ REVERSE (non-nil means reverse order), BEG and END (region to sort).
28441The variable `sort-fold-case' determines whether alphabetic case affects 28420The variable `sort-fold-case' determines whether alphabetic case affects
28442the sort order. 28421the sort order.
28443 28422
28444(fn REVERSE BEG END)" t nil) 28423(fn REVERSE BEG END)" t)
28445(put 'sort-numeric-base 'safe-local-variable 'integerp) 28424(put 'sort-numeric-base 'safe-local-variable 'integerp)
28446(autoload 'sort-numeric-fields "sort" "\ 28425(autoload 'sort-numeric-fields "sort" "\
28447Sort lines in region numerically by the ARGth field of each line. 28426Sort lines in region numerically by the ARGth field of each line.
@@ -28453,7 +28432,7 @@ With a negative arg, sorts by the ARGth field counted from the right.
28453Called from a program, there are three arguments: 28432Called from a program, there are three arguments:
28454FIELD, BEG and END. BEG and END specify region to sort. 28433FIELD, BEG and END. BEG and END specify region to sort.
28455 28434
28456(fn FIELD BEG END)" t nil) 28435(fn FIELD BEG END)" t)
28457(autoload 'sort-fields "sort" "\ 28436(autoload 'sort-fields "sort" "\
28458Sort lines in region lexicographically by the ARGth field of each line. 28437Sort lines in region lexicographically by the ARGth field of each line.
28459Fields are separated by whitespace and numbered from 1 up. 28438Fields are separated by whitespace and numbered from 1 up.
@@ -28463,7 +28442,7 @@ FIELD, BEG and END. BEG and END specify region to sort.
28463The variable `sort-fold-case' determines whether alphabetic case affects 28442The variable `sort-fold-case' determines whether alphabetic case affects
28464the sort order. 28443the sort order.
28465 28444
28466(fn FIELD BEG END)" t nil) 28445(fn FIELD BEG END)" t)
28467(autoload 'sort-regexp-fields "sort" "\ 28446(autoload 'sort-regexp-fields "sort" "\
28468Sort the text in the region lexicographically. 28447Sort the text in the region lexicographically.
28469If called interactively, prompt for two regular expressions, 28448If called interactively, prompt for two regular expressions,
@@ -28490,7 +28469,7 @@ For example: to sort lines in the region by the first word on each line
28490 starting with the letter \"f\", 28469 starting with the letter \"f\",
28491 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\" 28470 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"
28492 28471
28493(fn REVERSE RECORD-REGEXP KEY-REGEXP BEG END)" t nil) 28472(fn REVERSE RECORD-REGEXP KEY-REGEXP BEG END)" t)
28494(autoload 'sort-columns "sort" "\ 28473(autoload 'sort-columns "sort" "\
28495Sort lines in region alphabetically by a certain range of columns. 28474Sort lines in region alphabetically by a certain range of columns.
28496For the purpose of this command, the region BEG...END includes 28475For the purpose of this command, the region BEG...END includes
@@ -28506,7 +28485,7 @@ and it doesn't know how to handle that. Also, when possible,
28506it uses the `sort' utility program, which doesn't understand tabs. 28485it uses the `sort' utility program, which doesn't understand tabs.
28507Use \\[untabify] to convert tabs to spaces before sorting. 28486Use \\[untabify] to convert tabs to spaces before sorting.
28508 28487
28509(fn REVERSE &optional BEG END)" t nil) 28488(fn REVERSE &optional BEG END)" t)
28510(autoload 'reverse-region "sort" "\ 28489(autoload 'reverse-region "sort" "\
28511Reverse the order of lines in a region. 28490Reverse the order of lines in a region.
28512When called from Lisp, takes two point or marker arguments, BEG and END. 28491When called from Lisp, takes two point or marker arguments, BEG and END.
@@ -28515,7 +28494,7 @@ to be reversed is the line starting after BEG.
28515If END is not at the end of a line, the last line to be reversed 28494If END is not at the end of a line, the last line to be reversed
28516is the one that ends before END. 28495is the one that ends before END.
28517 28496
28518(fn BEG END)" t nil) 28497(fn BEG END)" t)
28519(autoload 'delete-duplicate-lines "sort" "\ 28498(autoload 'delete-duplicate-lines "sort" "\
28520Delete all but one copy of any identical lines in the region. 28499Delete all but one copy of any identical lines in the region.
28521Non-interactively, arguments BEG and END delimit the region. 28500Non-interactively, arguments BEG and END delimit the region.
@@ -28535,7 +28514,7 @@ If the argument KEEP-BLANKS is non-nil (interactively, with a
28535Returns the number of deleted lines. Interactively, or if INTERACTIVE 28514Returns the number of deleted lines. Interactively, or if INTERACTIVE
28536is non-nil, it also prints a message describing the number of deletions. 28515is non-nil, it also prints a message describing the number of deletions.
28537 28516
28538(fn BEG END &optional REVERSE ADJACENT KEEP-BLANKS INTERACTIVE)" t nil) 28517(fn BEG END &optional REVERSE ADJACENT KEEP-BLANKS INTERACTIVE)" t)
28539(register-definition-prefixes "sort" '("sort-")) 28518(register-definition-prefixes "sort" '("sort-"))
28540 28519
28541 28520
@@ -28558,7 +28537,7 @@ can call `spam-initialize' before you set spam-use-* variables on
28558explicitly, and matters only if you need the extra headers 28537explicitly, and matters only if you need the extra headers
28559installed through `spam-necessary-extra-headers'. 28538installed through `spam-necessary-extra-headers'.
28560 28539
28561(fn &rest SYMBOLS)" t nil) 28540(fn &rest SYMBOLS)" t)
28562(register-definition-prefixes "spam" '("spam-")) 28541(register-definition-prefixes "spam" '("spam-"))
28563 28542
28564 28543
@@ -28571,27 +28550,27 @@ If FILE is given, use it instead of `spam-report-requests-file'.
28571If KEEP is t, leave old requests in the file. If KEEP is the 28550If KEEP is t, leave old requests in the file. If KEEP is the
28572symbol `ask', query before flushing the queue file. 28551symbol `ask', query before flushing the queue file.
28573 28552
28574(fn &optional FILE KEEP)" t nil) 28553(fn &optional FILE KEEP)" t)
28575(autoload 'spam-report-url-ping-mm-url "spam-report" "\ 28554(autoload 'spam-report-url-ping-mm-url "spam-report" "\
28576Ping a host through HTTP, addressing a specific GET resource. 28555Ping a host through HTTP, addressing a specific GET resource.
28577Use the external program specified in `mm-url-program' to connect 28556Use the external program specified in `mm-url-program' to connect
28578to server. 28557to server.
28579 28558
28580(fn HOST REPORT)" nil nil) 28559(fn HOST REPORT)")
28581(autoload 'spam-report-url-to-file "spam-report" "\ 28560(autoload 'spam-report-url-to-file "spam-report" "\
28582Collect spam report requests in `spam-report-requests-file'. 28561Collect spam report requests in `spam-report-requests-file'.
28583Customize `spam-report-url-ping-function' to use this function. 28562Customize `spam-report-url-ping-function' to use this function.
28584 28563
28585(fn HOST REPORT)" nil nil) 28564(fn HOST REPORT)")
28586(autoload 'spam-report-agentize "spam-report" "\ 28565(autoload 'spam-report-agentize "spam-report" "\
28587Add spam-report support to the Agent. 28566Add spam-report support to the Agent.
28588Spam reports will be queued with \\[spam-report-url-to-file] when 28567Spam reports will be queued with \\[spam-report-url-to-file] when
28589the Agent is unplugged, and will be submitted in a batch when the 28568the Agent is unplugged, and will be submitted in a batch when the
28590Agent is plugged." t nil) 28569Agent is plugged." t)
28591(autoload 'spam-report-deagentize "spam-report" "\ 28570(autoload 'spam-report-deagentize "spam-report" "\
28592Remove spam-report support from the Agent. 28571Remove spam-report support from the Agent.
28593Spam reports will be queued with the method used when 28572Spam reports will be queued with the method used when
28594\\[spam-report-agentize] was run." t nil) 28573\\[spam-report-agentize] was run." t)
28595(register-definition-prefixes "spam-report" '("spam-report-")) 28574(register-definition-prefixes "spam-report" '("spam-report-"))
28596 28575
28597 28576
@@ -28621,20 +28600,20 @@ supported at a time.
28621`speedbar-before-popup-hook' is called before popping up the speedbar frame. 28600`speedbar-before-popup-hook' is called before popping up the speedbar frame.
28622`speedbar-before-delete-hook' is called before the frame is deleted. 28601`speedbar-before-delete-hook' is called before the frame is deleted.
28623 28602
28624(fn &optional ARG)" t nil) 28603(fn &optional ARG)" t)
28625(autoload 'speedbar-get-focus "speedbar" "\ 28604(autoload 'speedbar-get-focus "speedbar" "\
28626Change frame focus to or from the speedbar frame. 28605Change frame focus to or from the speedbar frame.
28627If the selected frame is not speedbar, then speedbar frame is 28606If the selected frame is not speedbar, then speedbar frame is
28628selected. If the speedbar frame is active, then select the attached frame." t nil) 28607selected. If the speedbar frame is active, then select the attached frame." t)
28629(register-definition-prefixes "speedbar" '("speedbar-")) 28608(register-definition-prefixes "speedbar" '("speedbar-"))
28630 28609
28631 28610
28632;;; Generated autoloads from play/spook.el 28611;;; Generated autoloads from play/spook.el
28633 28612
28634(autoload 'spook "spook" "\ 28613(autoload 'spook "spook" "\
28635Add that special touch of class to your outgoing mail." t nil) 28614Add that special touch of class to your outgoing mail." t)
28636(autoload 'snarf-spooks "spook" "\ 28615(autoload 'snarf-spooks "spook" "\
28637Return a vector containing the lines from `spook-phrases-file'." nil nil) 28616Return a vector containing the lines from `spook-phrases-file'.")
28638(register-definition-prefixes "spook" '("spook-phrase")) 28617(register-definition-prefixes "spook" '("spook-phrase"))
28639 28618
28640 28619
@@ -28660,7 +28639,7 @@ For example:
28660adds a fontification pattern to fontify identifiers ending in 28639adds a fontification pattern to fontify identifiers ending in
28661`_t' as data types. 28640`_t' as data types.
28662 28641
28663(fn PRODUCT KEYWORDS &optional APPEND)" nil nil) 28642(fn PRODUCT KEYWORDS &optional APPEND)")
28664(autoload 'sql-mode "sql" "\ 28643(autoload 'sql-mode "sql" "\
28665Major mode to edit SQL. 28644Major mode to edit SQL.
28666 28645
@@ -28689,7 +28668,7 @@ must tell Emacs. Here's how to do that in your init file:
28689 (lambda () 28668 (lambda ()
28690 (modify-syntax-entry ?\\\\ \"\\\\\" sql-mode-syntax-table))) 28669 (modify-syntax-entry ?\\\\ \"\\\\\" sql-mode-syntax-table)))
28691 28670
28692(fn)" t nil) 28671(fn)" t)
28693(autoload 'sql-connect "sql" "\ 28672(autoload 'sql-connect "sql" "\
28694Connect to an interactive session using CONNECTION settings. 28673Connect to an interactive session using CONNECTION settings.
28695 28674
@@ -28699,7 +28678,7 @@ their settings.
28699The user will not be prompted for any login parameters if a value 28678The user will not be prompted for any login parameters if a value
28700is specified in the connection settings. 28679is specified in the connection settings.
28701 28680
28702(fn CONNECTION &optional BUF-NAME)" t nil) 28681(fn CONNECTION &optional BUF-NAME)" t)
28703(autoload 'sql-product-interactive "sql" "\ 28682(autoload 'sql-product-interactive "sql" "\
28704Run PRODUCT interpreter as an inferior process. 28683Run PRODUCT interpreter as an inferior process.
28705 28684
@@ -28713,7 +28692,7 @@ the call to \\[sql-product-interactive] with
28713 28692
28714(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28693(Type \\[describe-mode] in the SQL buffer for a list of commands.)
28715 28694
28716(fn &optional PRODUCT NEW-NAME)" t nil) 28695(fn &optional PRODUCT NEW-NAME)" t)
28717(autoload 'sql-oracle "sql" "\ 28696(autoload 'sql-oracle "sql" "\
28718Run sqlplus by Oracle as an inferior process. 28697Run sqlplus by Oracle as an inferior process.
28719 28698
@@ -28743,7 +28722,7 @@ The default comes from `process-coding-system-alist' and
28743 28722
28744(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28723(Type \\[describe-mode] in the SQL buffer for a list of commands.)
28745 28724
28746(fn &optional BUFFER)" t nil) 28725(fn &optional BUFFER)" t)
28747(autoload 'sql-sybase "sql" "\ 28726(autoload 'sql-sybase "sql" "\
28748Run isql by Sybase as an inferior process. 28727Run isql by Sybase as an inferior process.
28749 28728
@@ -28773,7 +28752,7 @@ The default comes from `process-coding-system-alist' and
28773 28752
28774(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28753(Type \\[describe-mode] in the SQL buffer for a list of commands.)
28775 28754
28776(fn &optional BUFFER)" t nil) 28755(fn &optional BUFFER)" t)
28777(autoload 'sql-informix "sql" "\ 28756(autoload 'sql-informix "sql" "\
28778Run dbaccess by Informix as an inferior process. 28757Run dbaccess by Informix as an inferior process.
28779 28758
@@ -28801,7 +28780,7 @@ The default comes from `process-coding-system-alist' and
28801 28780
28802(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28781(Type \\[describe-mode] in the SQL buffer for a list of commands.)
28803 28782
28804(fn &optional BUFFER)" t nil) 28783(fn &optional BUFFER)" t)
28805(autoload 'sql-sqlite "sql" "\ 28784(autoload 'sql-sqlite "sql" "\
28806Run sqlite as an inferior process. 28785Run sqlite as an inferior process.
28807 28786
@@ -28833,7 +28812,7 @@ The default comes from `process-coding-system-alist' and
28833 28812
28834(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28813(Type \\[describe-mode] in the SQL buffer for a list of commands.)
28835 28814
28836(fn &optional BUFFER)" t nil) 28815(fn &optional BUFFER)" t)
28837(autoload 'sql-mysql "sql" "\ 28816(autoload 'sql-mysql "sql" "\
28838Run mysql by TcX as an inferior process. 28817Run mysql by TcX as an inferior process.
28839 28818
@@ -28865,7 +28844,7 @@ The default comes from `process-coding-system-alist' and
28865 28844
28866(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28845(Type \\[describe-mode] in the SQL buffer for a list of commands.)
28867 28846
28868(fn &optional BUFFER)" t nil) 28847(fn &optional BUFFER)" t)
28869(autoload 'sql-mariadb "sql" "\ 28848(autoload 'sql-mariadb "sql" "\
28870Run mysql by MariaDB as an inferior process. 28849Run mysql by MariaDB as an inferior process.
28871 28850
@@ -28897,7 +28876,7 @@ The default comes from `process-coding-system-alist' and
28897 28876
28898(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28877(Type \\[describe-mode] in the SQL buffer for a list of commands.)
28899 28878
28900(fn &optional BUFFER)" t nil) 28879(fn &optional BUFFER)" t)
28901(autoload 'sql-solid "sql" "\ 28880(autoload 'sql-solid "sql" "\
28902Run solsql by Solid as an inferior process. 28881Run solsql by Solid as an inferior process.
28903 28882
@@ -28926,7 +28905,7 @@ The default comes from `process-coding-system-alist' and
28926 28905
28927(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28906(Type \\[describe-mode] in the SQL buffer for a list of commands.)
28928 28907
28929(fn &optional BUFFER)" t nil) 28908(fn &optional BUFFER)" t)
28930(autoload 'sql-ingres "sql" "\ 28909(autoload 'sql-ingres "sql" "\
28931Run sql by Ingres as an inferior process. 28910Run sql by Ingres as an inferior process.
28932 28911
@@ -28954,7 +28933,7 @@ The default comes from `process-coding-system-alist' and
28954 28933
28955(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28934(Type \\[describe-mode] in the SQL buffer for a list of commands.)
28956 28935
28957(fn &optional BUFFER)" t nil) 28936(fn &optional BUFFER)" t)
28958(autoload 'sql-ms "sql" "\ 28937(autoload 'sql-ms "sql" "\
28959Run osql by Microsoft as an inferior process. 28938Run osql by Microsoft as an inferior process.
28960 28939
@@ -28984,7 +28963,7 @@ The default comes from `process-coding-system-alist' and
28984 28963
28985(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28964(Type \\[describe-mode] in the SQL buffer for a list of commands.)
28986 28965
28987(fn &optional BUFFER)" t nil) 28966(fn &optional BUFFER)" t)
28988(autoload 'sql-postgres "sql" "\ 28967(autoload 'sql-postgres "sql" "\
28989Run psql by Postgres as an inferior process. 28968Run psql by Postgres as an inferior process.
28990 28969
@@ -29018,7 +28997,7 @@ Try to set `comint-output-filter-functions' like this:
29018 28997
29019(Type \\[describe-mode] in the SQL buffer for a list of commands.) 28998(Type \\[describe-mode] in the SQL buffer for a list of commands.)
29020 28999
29021(fn &optional BUFFER)" t nil) 29000(fn &optional BUFFER)" t)
29022(autoload 'sql-interbase "sql" "\ 29001(autoload 'sql-interbase "sql" "\
29023Run isql by Interbase as an inferior process. 29002Run isql by Interbase as an inferior process.
29024 29003
@@ -29047,7 +29026,7 @@ The default comes from `process-coding-system-alist' and
29047 29026
29048(Type \\[describe-mode] in the SQL buffer for a list of commands.) 29027(Type \\[describe-mode] in the SQL buffer for a list of commands.)
29049 29028
29050(fn &optional BUFFER)" t nil) 29029(fn &optional BUFFER)" t)
29051(autoload 'sql-db2 "sql" "\ 29030(autoload 'sql-db2 "sql" "\
29052Run db2 by IBM as an inferior process. 29031Run db2 by IBM as an inferior process.
29053 29032
@@ -29080,7 +29059,7 @@ The default comes from `process-coding-system-alist' and
29080 29059
29081(Type \\[describe-mode] in the SQL buffer for a list of commands.) 29060(Type \\[describe-mode] in the SQL buffer for a list of commands.)
29082 29061
29083(fn &optional BUFFER)" t nil) 29062(fn &optional BUFFER)" t)
29084(autoload 'sql-linter "sql" "\ 29063(autoload 'sql-linter "sql" "\
29085Run inl by RELEX as an inferior process. 29064Run inl by RELEX as an inferior process.
29086 29065
@@ -29110,11 +29089,11 @@ buffer.
29110 29089
29111(Type \\[describe-mode] in the SQL buffer for a list of commands.) 29090(Type \\[describe-mode] in the SQL buffer for a list of commands.)
29112 29091
29113(fn &optional BUFFER)" t nil) 29092(fn &optional BUFFER)" t)
29114(autoload 'sql-vertica "sql" "\ 29093(autoload 'sql-vertica "sql" "\
29115Run vsql as an inferior process. 29094Run vsql as an inferior process.
29116 29095
29117(fn &optional BUFFER)" t nil) 29096(fn &optional BUFFER)" t)
29118(register-definition-prefixes "sql" '("sql-")) 29097(register-definition-prefixes "sql" '("sql-"))
29119 29098
29120 29099
@@ -29128,7 +29107,7 @@ Run vsql as an inferior process.
29128(autoload 'sqlite-mode-open-file "sqlite-mode" "\ 29107(autoload 'sqlite-mode-open-file "sqlite-mode" "\
29129Browse the contents of an sqlite file. 29108Browse the contents of an sqlite file.
29130 29109
29131(fn FILE)" t nil) 29110(fn FILE)" t)
29132(register-definition-prefixes "sqlite-mode" '("sqlite-")) 29111(register-definition-prefixes "sqlite-mode" '("sqlite-"))
29133 29112
29134 29113
@@ -29153,7 +29132,7 @@ Browse the contents of an sqlite file.
29153(autoload 'srecode-template-mode "srecode/srt-mode" "\ 29132(autoload 'srecode-template-mode "srecode/srt-mode" "\
29154Major-mode for writing SRecode macros. 29133Major-mode for writing SRecode macros.
29155 29134
29156(fn)" t nil) 29135(fn)" t)
29157(defalias 'srt-mode #'srecode-template-mode) 29136(defalias 'srt-mode #'srecode-template-mode)
29158(register-definition-prefixes "srecode/srt-mode" '("semantic-" "srecode-")) 29137(register-definition-prefixes "srecode/srt-mode" '("semantic-" "srecode-"))
29159 29138
@@ -29172,7 +29151,7 @@ PROMPT will be inserted at the start of the buffer, but won't be
29172included in the resulting string. If PROMPT is nil, no help text 29151included in the resulting string. If PROMPT is nil, no help text
29173will be inserted. 29152will be inserted.
29174 29153
29175(fn PROMPT STRING SUCCESS-CALLBACK &key ABORT-CALLBACK)" nil nil) 29154(fn PROMPT STRING SUCCESS-CALLBACK &key ABORT-CALLBACK)")
29176(autoload 'read-string-from-buffer "string-edit" "\ 29155(autoload 'read-string-from-buffer "string-edit" "\
29177Switch to a new buffer to edit STRING in a recursive edit. 29156Switch to a new buffer to edit STRING in a recursive edit.
29178The user finishes editing with \\<string-edit-mode-map>\\[string-edit-done], or aborts with \\<string-edit-mode-map>\\[string-edit-abort]). 29157The user finishes editing with \\<string-edit-mode-map>\\[string-edit-done], or aborts with \\<string-edit-mode-map>\\[string-edit-abort]).
@@ -29181,7 +29160,7 @@ PROMPT will be inserted at the start of the buffer, but won't be
29181included in the resulting string. If nil, no prompt will be 29160included in the resulting string. If nil, no prompt will be
29182inserted in the buffer. 29161inserted in the buffer.
29183 29162
29184(fn PROMPT STRING)" nil nil) 29163(fn PROMPT STRING)")
29185(register-definition-prefixes "string-edit" '("string-edit-")) 29164(register-definition-prefixes "string-edit" '("string-edit-"))
29186 29165
29187 29166
@@ -29196,7 +29175,7 @@ documentation for the `strokes-define-stroke' function.
29196 29175
29197See also `strokes-global-set-stroke-string'. 29176See also `strokes-global-set-stroke-string'.
29198 29177
29199(fn STROKE COMMAND)" t nil) 29178(fn STROKE COMMAND)" t)
29200(autoload 'strokes-read-stroke "strokes" "\ 29179(autoload 'strokes-read-stroke "strokes" "\
29201Read a simple stroke (interactively) and return the stroke. 29180Read a simple stroke (interactively) and return the stroke.
29202Optional PROMPT in minibuffer displays before and during stroke reading. 29181Optional PROMPT in minibuffer displays before and during stroke reading.
@@ -29205,7 +29184,7 @@ entered in the strokes buffer if the variable
29205`strokes-use-strokes-buffer' is non-nil. 29184`strokes-use-strokes-buffer' is non-nil.
29206Optional EVENT is acceptable as the starting event of the stroke. 29185Optional EVENT is acceptable as the starting event of the stroke.
29207 29186
29208(fn &optional PROMPT EVENT)" nil nil) 29187(fn &optional PROMPT EVENT)")
29209(autoload 'strokes-read-complex-stroke "strokes" "\ 29188(autoload 'strokes-read-complex-stroke "strokes" "\
29210Read a complex stroke (interactively) and return the stroke. 29189Read a complex stroke (interactively) and return the stroke.
29211Optional PROMPT in minibuffer displays before and during stroke reading. 29190Optional PROMPT in minibuffer displays before and during stroke reading.
@@ -29214,32 +29193,32 @@ is implemented by allowing the user to paint with button 1 or button 2 and
29214then complete the stroke with button 3. 29193then complete the stroke with button 3.
29215Optional EVENT is acceptable as the starting event of the stroke. 29194Optional EVENT is acceptable as the starting event of the stroke.
29216 29195
29217(fn &optional PROMPT EVENT)" nil nil) 29196(fn &optional PROMPT EVENT)")
29218(autoload 'strokes-do-stroke "strokes" "\ 29197(autoload 'strokes-do-stroke "strokes" "\
29219Read a simple stroke from the user and then execute its command. 29198Read a simple stroke from the user and then execute its command.
29220This must be bound to a mouse event. 29199This must be bound to a mouse event.
29221 29200
29222(fn EVENT)" t nil) 29201(fn EVENT)" t)
29223(autoload 'strokes-do-complex-stroke "strokes" "\ 29202(autoload 'strokes-do-complex-stroke "strokes" "\
29224Read a complex stroke from the user and then execute its command. 29203Read a complex stroke from the user and then execute its command.
29225This must be bound to a mouse event. 29204This must be bound to a mouse event.
29226 29205
29227(fn EVENT)" t nil) 29206(fn EVENT)" t)
29228(autoload 'strokes-describe-stroke "strokes" "\ 29207(autoload 'strokes-describe-stroke "strokes" "\
29229Displays the command which STROKE maps to, reading STROKE interactively. 29208Displays the command which STROKE maps to, reading STROKE interactively.
29230 29209
29231(fn STROKE)" t nil) 29210(fn STROKE)" t)
29232(autoload 'strokes-help "strokes" "\ 29211(autoload 'strokes-help "strokes" "\
29233Get instruction on using the Strokes package." t nil) 29212Get instruction on using the Strokes package." t)
29234(autoload 'strokes-load-user-strokes "strokes" "\ 29213(autoload 'strokes-load-user-strokes "strokes" "\
29235Load user-defined strokes from file named by `strokes-file'." t nil) 29214Load user-defined strokes from file named by `strokes-file'." t)
29236(autoload 'strokes-list-strokes "strokes" "\ 29215(autoload 'strokes-list-strokes "strokes" "\
29237Pop up a buffer containing an alphabetical listing of strokes in STROKES-MAP. 29216Pop up a buffer containing an alphabetical listing of strokes in STROKES-MAP.
29238With CHRONOLOGICAL prefix arg (\\[universal-argument]) list strokes chronologically 29217With CHRONOLOGICAL prefix arg (\\[universal-argument]) list strokes chronologically
29239by command name. 29218by command name.
29240If STROKES-MAP is not given, `strokes-global-map' will be used instead. 29219If STROKES-MAP is not given, `strokes-global-map' will be used instead.
29241 29220
29242(fn &optional CHRONOLOGICAL STROKES-MAP)" t nil) 29221(fn &optional CHRONOLOGICAL STROKES-MAP)" t)
29243(defvar strokes-mode nil "\ 29222(defvar strokes-mode nil "\
29244Non-nil if Strokes mode is enabled. 29223Non-nil if Strokes mode is enabled.
29245See the `strokes-mode' command 29224See the `strokes-mode' command
@@ -29278,15 +29257,15 @@ evaluate `(default-value \\='strokes-mode)'.
29278The mode's hook is called both when the mode is enabled and when 29257The mode's hook is called both when the mode is enabled and when
29279it is disabled. 29258it is disabled.
29280 29259
29281(fn &optional ARG)" t nil) 29260(fn &optional ARG)" t)
29282(autoload 'strokes-decode-buffer "strokes" "\ 29261(autoload 'strokes-decode-buffer "strokes" "\
29283Decode stroke strings in BUFFER and display their corresponding glyphs. 29262Decode stroke strings in BUFFER and display their corresponding glyphs.
29284Optional BUFFER defaults to the current buffer. 29263Optional BUFFER defaults to the current buffer.
29285Optional FORCE non-nil will ignore the buffer's read-only status. 29264Optional FORCE non-nil will ignore the buffer's read-only status.
29286 29265
29287(fn &optional BUFFER FORCE)" t nil) 29266(fn &optional BUFFER FORCE)" t)
29288(autoload 'strokes-compose-complex-stroke "strokes" "\ 29267(autoload 'strokes-compose-complex-stroke "strokes" "\
29289Read a complex stroke and insert its glyph into the current buffer." t nil) 29268Read a complex stroke and insert its glyph into the current buffer." t)
29290(register-definition-prefixes "strokes" '("strokes-")) 29269(register-definition-prefixes "strokes" '("strokes-"))
29291 29270
29292 29271
@@ -29295,13 +29274,13 @@ Read a complex stroke and insert its glyph into the current buffer." t nil)
29295(autoload 'studlify-region "studly" "\ 29274(autoload 'studlify-region "studly" "\
29296Studlify-case the region. 29275Studlify-case the region.
29297 29276
29298(fn BEGIN END)" t nil) 29277(fn BEGIN END)" t)
29299(autoload 'studlify-word "studly" "\ 29278(autoload 'studlify-word "studly" "\
29300Studlify-case the current word, or COUNT words if given an argument. 29279Studlify-case the current word, or COUNT words if given an argument.
29301 29280
29302(fn COUNT)" t nil) 29281(fn COUNT)" t)
29303(autoload 'studlify-buffer "studly" "\ 29282(autoload 'studlify-buffer "studly" "\
29304Studlify-case the current buffer." t nil) 29283Studlify-case the current buffer." t)
29305 29284
29306 29285
29307;;; Generated autoloads from emacs-lisp/subr-x.el 29286;;; Generated autoloads from emacs-lisp/subr-x.el
@@ -29312,14 +29291,18 @@ When truncating, \"...\" is always prepended to the string, so
29312the resulting string may be longer than the original if LENGTH is 29291the resulting string may be longer than the original if LENGTH is
293133 or smaller. 292923 or smaller.
29314 29293
29315(fn STRING LENGTH)" nil nil) 29294(fn STRING LENGTH)")
29295(defsubst string-blank-p (string) "\
29296Check whether STRING is either empty or only whitespace.
29297The following characters count as whitespace here: space, tab, newline and
29298carriage return." (string-match-p "\\`[ \11\n\15]*\\'" string))
29316(autoload 'string-clean-whitespace "subr-x" "\ 29299(autoload 'string-clean-whitespace "subr-x" "\
29317Clean up whitespace in STRING. 29300Clean up whitespace in STRING.
29318All sequences of whitespaces in STRING are collapsed into a 29301All sequences of whitespaces in STRING are collapsed into a
29319single space character, and leading/trailing whitespace is 29302single space character, and leading/trailing whitespace is
29320removed. 29303removed.
29321 29304
29322(fn STRING)" nil nil) 29305(fn STRING)")
29323(autoload 'named-let "subr-x" "\ 29306(autoload 'named-let "subr-x" "\
29324Looping construct taken from Scheme. 29307Looping construct taken from Scheme.
29325Like `let', bind variables in BINDINGS and then evaluate BODY, 29308Like `let', bind variables in BINDINGS and then evaluate BODY,
@@ -29332,12 +29315,12 @@ as the new values of the bound variables in the recursive invocation.
29332(autoload 'string-pixel-width "subr-x" "\ 29315(autoload 'string-pixel-width "subr-x" "\
29333Return the width of STRING in pixels. 29316Return the width of STRING in pixels.
29334 29317
29335(fn STRING)" nil nil) 29318(fn STRING)")
29336(autoload 'string-glyph-split "subr-x" "\ 29319(autoload 'string-glyph-split "subr-x" "\
29337Split STRING into a list of strings representing separate glyphs. 29320Split STRING into a list of strings representing separate glyphs.
29338This takes into account combining characters and grapheme clusters. 29321This takes into account combining characters and grapheme clusters.
29339 29322
29340(fn STRING)" nil nil) 29323(fn STRING)")
29341(autoload 'add-display-text-property "subr-x" "\ 29324(autoload 'add-display-text-property "subr-x" "\
29342Add display property PROP with VALUE to the text from START to END. 29325Add display property PROP with VALUE to the text from START to END.
29343If any text in the region has a non-nil `display' property, those 29326If any text in the region has a non-nil `display' property, those
@@ -29346,12 +29329,12 @@ properties are retained.
29346If OBJECT is non-nil, it should be a string or a buffer. If nil, 29329If OBJECT is non-nil, it should be a string or a buffer. If nil,
29347this defaults to the current buffer. 29330this defaults to the current buffer.
29348 29331
29349(fn START END PROP VALUE &optional OBJECT)" nil nil) 29332(fn START END PROP VALUE &optional OBJECT)")
29350(autoload 'read-process-name "subr-x" "\ 29333(autoload 'read-process-name "subr-x" "\
29351Query the user for a process and return the process object. 29334Query the user for a process and return the process object.
29352 29335
29353(fn PROMPT)" nil nil) 29336(fn PROMPT)")
29354(register-definition-prefixes "subr-x" '("hash-table-" "internal--thread-argument" "replace-region-contents" "string-" "thread-" "with-buffer-unmodified-if-unchanged")) 29337(register-definition-prefixes "subr-x" '("emacs-etc--hide-local-variables" "hash-table-" "internal--thread-argument" "replace-region-contents" "string-" "thread-" "with-buffer-unmodified-if-unchanged"))
29355 29338
29356 29339
29357;;; Generated autoloads from progmodes/subword.el 29340;;; Generated autoloads from progmodes/subword.el
@@ -29392,7 +29375,7 @@ evaluate `subword-mode'.
29392The mode's hook is called both when the mode is enabled and when 29375The mode's hook is called both when the mode is enabled and when
29393it is disabled. 29376it is disabled.
29394 29377
29395(fn &optional ARG)" t nil) 29378(fn &optional ARG)" t)
29396(put 'global-subword-mode 'globalized-minor-mode t) 29379(put 'global-subword-mode 'globalized-minor-mode t)
29397(defvar global-subword-mode nil "\ 29380(defvar global-subword-mode nil "\
29398Non-nil if Global Subword mode is enabled. 29381Non-nil if Global Subword mode is enabled.
@@ -29416,7 +29399,7 @@ Subword mode is enabled in all buffers where `(lambda nil
29416 29399
29417See `subword-mode' for more information on Subword mode. 29400See `subword-mode' for more information on Subword mode.
29418 29401
29419(fn &optional ARG)" t nil) 29402(fn &optional ARG)" t)
29420(autoload 'superword-mode "subword" "\ 29403(autoload 'superword-mode "subword" "\
29421Toggle superword movement and editing (Superword mode). 29404Toggle superword movement and editing (Superword mode).
29422 29405
@@ -29441,7 +29424,7 @@ evaluate `superword-mode'.
29441The mode's hook is called both when the mode is enabled and when 29424The mode's hook is called both when the mode is enabled and when
29442it is disabled. 29425it is disabled.
29443 29426
29444(fn &optional ARG)" t nil) 29427(fn &optional ARG)" t)
29445(put 'global-superword-mode 'globalized-minor-mode t) 29428(put 'global-superword-mode 'globalized-minor-mode t)
29446(defvar global-superword-mode nil "\ 29429(defvar global-superword-mode nil "\
29447Non-nil if Global Superword mode is enabled. 29430Non-nil if Global Superword mode is enabled.
@@ -29465,7 +29448,7 @@ Superword mode is enabled in all buffers where `(lambda nil
29465 29448
29466See `superword-mode' for more information on Superword mode. 29449See `superword-mode' for more information on Superword mode.
29467 29450
29468(fn &optional ARG)" t nil) 29451(fn &optional ARG)" t)
29469(register-definition-prefixes "subword" '("subword-" "superword-mode-map")) 29452(register-definition-prefixes "subword" '("subword-" "superword-mode-map"))
29470 29453
29471 29454
@@ -29494,7 +29477,7 @@ original message but it does require a few things:
29494 29477
29495The region need not be active (and typically isn't when this 29478The region need not be active (and typically isn't when this
29496function is called). Also, the hook `sc-pre-hook' is run before, 29479function is called). Also, the hook `sc-pre-hook' is run before,
29497and `sc-post-hook' is run after the guts of this function." nil nil) 29480and `sc-post-hook' is run after the guts of this function.")
29498(register-definition-prefixes "supercite" '("sc-")) 29481(register-definition-prefixes "supercite" '("sc-"))
29499 29482
29500 29483
@@ -29544,7 +29527,7 @@ evaluate `(default-value \\='gpm-mouse-mode)'.
29544The mode's hook is called both when the mode is enabled and when 29527The mode's hook is called both when the mode is enabled and when
29545it is disabled. 29528it is disabled.
29546 29529
29547(fn &optional ARG)" t nil) 29530(fn &optional ARG)" t)
29548(register-definition-prefixes "t-mouse" '("gpm-mouse-")) 29531(register-definition-prefixes "t-mouse" '("gpm-mouse-"))
29549 29532
29550 29533
@@ -29567,7 +29550,7 @@ evaluate `tab-line-mode'.
29567The mode's hook is called both when the mode is enabled and when 29550The mode's hook is called both when the mode is enabled and when
29568it is disabled. 29551it is disabled.
29569 29552
29570(fn &optional ARG)" t nil) 29553(fn &optional ARG)" t)
29571(defvar-local tab-line-exclude nil) 29554(defvar-local tab-line-exclude nil)
29572(put 'global-tab-line-mode 'globalized-minor-mode t) 29555(put 'global-tab-line-mode 'globalized-minor-mode t)
29573(defvar global-tab-line-mode nil "\ 29556(defvar global-tab-line-mode nil "\
@@ -29592,7 +29575,7 @@ would do it.
29592 29575
29593See `tab-line-mode' for more information on Tab-Line mode. 29576See `tab-line-mode' for more information on Tab-Line mode.
29594 29577
29595(fn &optional ARG)" t nil) 29578(fn &optional ARG)" t)
29596(register-definition-prefixes "tab-line" '("tab-line-")) 29579(register-definition-prefixes "tab-line" '("tab-line-"))
29597 29580
29598 29581
@@ -29607,7 +29590,7 @@ Called non-interactively, the region is specified by arguments
29607START and END, rather than by the position of point and mark. 29590START and END, rather than by the position of point and mark.
29608The variable `tab-width' controls the spacing of tab stops. 29591The variable `tab-width' controls the spacing of tab stops.
29609 29592
29610(fn START END &optional ARG)" t nil) 29593(fn START END &optional ARG)" t)
29611(autoload 'tabify "tabify" "\ 29594(autoload 'tabify "tabify" "\
29612Convert multiple spaces in region to tabs when possible. 29595Convert multiple spaces in region to tabs when possible.
29613A group of spaces is partially replaced by tabs 29596A group of spaces is partially replaced by tabs
@@ -29619,7 +29602,7 @@ Called non-interactively, the region is specified by arguments
29619START and END, rather than by the position of point and mark. 29602START and END, rather than by the position of point and mark.
29620The variable `tab-width' controls the spacing of tab stops. 29603The variable `tab-width' controls the spacing of tab stops.
29621 29604
29622(fn START END &optional ARG)" t nil) 29605(fn START END &optional ARG)" t)
29623(register-definition-prefixes "tabify" '("tabify-regexp")) 29606(register-definition-prefixes "tabify" '("tabify-regexp"))
29624 29607
29625 29608
@@ -29651,7 +29634,7 @@ evaluate `table-fixed-width-mode'.
29651The mode's hook is called both when the mode is enabled and when 29634The mode's hook is called both when the mode is enabled and when
29652it is disabled. 29635it is disabled.
29653 29636
29654(fn &optional ARG)" t nil) 29637(fn &optional ARG)" t)
29655(autoload 'table-insert "table" "\ 29638(autoload 'table-insert "table" "\
29656Insert an editable text table. 29639Insert an editable text table.
29657Insert a table of specified number of COLUMNS and ROWS. Optional 29640Insert a table of specified number of COLUMNS and ROWS. Optional
@@ -29773,7 +29756,7 @@ Inside a table cell has a special keymap.
29773 29756
29774\\{table-cell-map} 29757\\{table-cell-map}
29775 29758
29776(fn COLUMNS ROWS &optional CELL-WIDTH CELL-HEIGHT)" t nil) 29759(fn COLUMNS ROWS &optional CELL-WIDTH CELL-HEIGHT)" t)
29777(autoload 'table-insert-row "table" "\ 29760(autoload 'table-insert-row "table" "\
29778Insert N table row(s). 29761Insert N table row(s).
29779When point is in a table the newly inserted row(s) are placed above 29762When point is in a table the newly inserted row(s) are placed above
@@ -29781,7 +29764,7 @@ the current row. When point is outside of the table it must be below
29781the table within the table width range, then the newly created row(s) 29764the table within the table width range, then the newly created row(s)
29782are appended at the bottom of the table. 29765are appended at the bottom of the table.
29783 29766
29784(fn N)" t nil) 29767(fn N)" t)
29785(autoload 'table-insert-column "table" "\ 29768(autoload 'table-insert-column "table" "\
29786Insert N table column(s). 29769Insert N table column(s).
29787When point is in a table the newly inserted column(s) are placed left 29770When point is in a table the newly inserted column(s) are placed left
@@ -29789,12 +29772,12 @@ of the current column. When point is outside of the table it must be
29789right side of the table within the table height range, then the newly 29772right side of the table within the table height range, then the newly
29790created column(s) are appended at the right of the table. 29773created column(s) are appended at the right of the table.
29791 29774
29792(fn N)" t nil) 29775(fn N)" t)
29793(autoload 'table-insert-row-column "table" "\ 29776(autoload 'table-insert-row-column "table" "\
29794Insert row(s) or column(s). 29777Insert row(s) or column(s).
29795See `table-insert-row' and `table-insert-column'. 29778See `table-insert-row' and `table-insert-column'.
29796 29779
29797(fn ROW-COLUMN N)" t nil) 29780(fn ROW-COLUMN N)" t)
29798(autoload 'table-recognize "table" "\ 29781(autoload 'table-recognize "table" "\
29799Recognize all tables within the current buffer and activate them. 29782Recognize all tables within the current buffer and activate them.
29800Scans the entire buffer and recognizes valid table cells. If the 29783Scans the entire buffer and recognizes valid table cells. If the
@@ -29802,8 +29785,8 @@ optional numeric prefix argument ARG is negative the tables in the
29802buffer become inactive, meaning the tables become plain text and loses 29785buffer become inactive, meaning the tables become plain text and loses
29803all the table specific features. 29786all the table specific features.
29804 29787
29805(fn &optional ARG)" t nil) 29788(fn &optional ARG)" t)
29806(autoload 'table-unrecognize "table" nil t nil) 29789(autoload 'table-unrecognize "table" nil t)
29807(autoload 'table-recognize-region "table" "\ 29790(autoload 'table-recognize-region "table" "\
29808Recognize all tables within region. 29791Recognize all tables within region.
29809BEG and END specify the region to work on. If the optional numeric 29792BEG and END specify the region to work on. If the optional numeric
@@ -29811,19 +29794,19 @@ prefix argument ARG is negative the tables in the region become
29811inactive, meaning the tables become plain text and lose all the table 29794inactive, meaning the tables become plain text and lose all the table
29812specific features. 29795specific features.
29813 29796
29814(fn BEG END &optional ARG)" t nil) 29797(fn BEG END &optional ARG)" t)
29815(autoload 'table-unrecognize-region "table" "\ 29798(autoload 'table-unrecognize-region "table" "\
29816 29799
29817 29800
29818(fn BEG END)" t nil) 29801(fn BEG END)" t)
29819(autoload 'table-recognize-table "table" "\ 29802(autoload 'table-recognize-table "table" "\
29820Recognize a table at point. 29803Recognize a table at point.
29821If the optional numeric prefix argument ARG is negative the table 29804If the optional numeric prefix argument ARG is negative the table
29822becomes inactive, meaning the table becomes plain text and loses all 29805becomes inactive, meaning the table becomes plain text and loses all
29823the table specific features. 29806the table specific features.
29824 29807
29825(fn &optional ARG)" t nil) 29808(fn &optional ARG)" t)
29826(autoload 'table-unrecognize-table "table" nil t nil) 29809(autoload 'table-unrecognize-table "table" nil t)
29827(autoload 'table-recognize-cell "table" "\ 29810(autoload 'table-recognize-cell "table" "\
29828Recognize a table cell that contains current point. 29811Recognize a table cell that contains current point.
29829Probe the cell dimension and prepare the cell information. The 29812Probe the cell dimension and prepare the cell information. The
@@ -29832,8 +29815,8 @@ must not be specified. When the optional numeric prefix argument ARG
29832is negative the cell becomes inactive, meaning that the cell becomes 29815is negative the cell becomes inactive, meaning that the cell becomes
29833plain text and loses all the table specific features. 29816plain text and loses all the table specific features.
29834 29817
29835(fn &optional FORCE NO-COPY ARG)" t nil) 29818(fn &optional FORCE NO-COPY ARG)" t)
29836(autoload 'table-unrecognize-cell "table" nil t nil) 29819(autoload 'table-unrecognize-cell "table" nil t)
29837(autoload 'table-heighten-cell "table" "\ 29820(autoload 'table-heighten-cell "table" "\
29838Heighten the current cell by N lines by expanding the cell vertically. 29821Heighten the current cell by N lines by expanding the cell vertically.
29839Heightening is done by adding blank lines at the bottom of the current 29822Heightening is done by adding blank lines at the bottom of the current
@@ -29842,7 +29825,7 @@ heightened in order to keep the rectangular table structure. The
29842optional argument NO-COPY is internal use only and must not be 29825optional argument NO-COPY is internal use only and must not be
29843specified. 29826specified.
29844 29827
29845(fn N &optional NO-COPY NO-UPDATE)" t nil) 29828(fn N &optional NO-COPY NO-UPDATE)" t)
29846(autoload 'table-shorten-cell "table" "\ 29829(autoload 'table-shorten-cell "table" "\
29847Shorten the current cell by N lines by shrinking the cell vertically. 29830Shorten the current cell by N lines by shrinking the cell vertically.
29848Shortening is done by removing blank lines from the bottom of the cell 29831Shortening is done by removing blank lines from the bottom of the cell
@@ -29852,19 +29835,19 @@ is applicable to all the cells aligned horizontally with the current
29852one because they are also shortened in order to keep the rectangular 29835one because they are also shortened in order to keep the rectangular
29853table structure. 29836table structure.
29854 29837
29855(fn N)" t nil) 29838(fn N)" t)
29856(autoload 'table-widen-cell "table" "\ 29839(autoload 'table-widen-cell "table" "\
29857Widen the current cell by N columns and expand the cell horizontally. 29840Widen the current cell by N columns and expand the cell horizontally.
29858Some other cells in the same table are widen as well to keep the 29841Some other cells in the same table are widen as well to keep the
29859table's rectangle structure. 29842table's rectangle structure.
29860 29843
29861(fn N &optional NO-COPY NO-UPDATE)" t nil) 29844(fn N &optional NO-COPY NO-UPDATE)" t)
29862(autoload 'table-narrow-cell "table" "\ 29845(autoload 'table-narrow-cell "table" "\
29863Narrow the current cell by N columns and shrink the cell horizontally. 29846Narrow the current cell by N columns and shrink the cell horizontally.
29864Some other cells in the same table are narrowed as well to keep the 29847Some other cells in the same table are narrowed as well to keep the
29865table's rectangle structure. 29848table's rectangle structure.
29866 29849
29867(fn N)" t nil) 29850(fn N)" t)
29868(autoload 'table-forward-cell "table" "\ 29851(autoload 'table-forward-cell "table" "\
29869Move point forward to the beginning of the next cell. 29852Move point forward to the beginning of the next cell.
29870With argument ARG, do it ARG times; 29853With argument ARG, do it ARG times;
@@ -29904,36 +29887,36 @@ You can actually try how it works in this buffer. Press
29904| |6 | | | |6 | | +--+--+--+--+ +--+--+--+--+ +--+-----+--+ 29887| |6 | | | |6 | | +--+--+--+--+ +--+--+--+--+ +--+-----+--+
29905+--+--+--+ +--+--+--+ 29888+--+--+--+ +--+--+--+
29906 29889
29907(fn &optional ARG NO-RECOGNIZE UNRECOGNIZE)" t nil) 29890(fn &optional ARG NO-RECOGNIZE UNRECOGNIZE)" t)
29908(autoload 'table-backward-cell "table" "\ 29891(autoload 'table-backward-cell "table" "\
29909Move backward to the beginning of the previous cell. 29892Move backward to the beginning of the previous cell.
29910With argument ARG, do it ARG times; 29893With argument ARG, do it ARG times;
29911a negative argument ARG = -N means move forward N cells. 29894a negative argument ARG = -N means move forward N cells.
29912 29895
29913(fn &optional ARG)" t nil) 29896(fn &optional ARG)" t)
29914(autoload 'table-span-cell "table" "\ 29897(autoload 'table-span-cell "table" "\
29915Span current cell into adjacent cell in DIRECTION. 29898Span current cell into adjacent cell in DIRECTION.
29916DIRECTION is one of symbols; right, left, above or below. 29899DIRECTION is one of symbols; right, left, above or below.
29917 29900
29918(fn DIRECTION)" t nil) 29901(fn DIRECTION)" t)
29919(autoload 'table-split-cell-vertically "table" "\ 29902(autoload 'table-split-cell-vertically "table" "\
29920Split current cell vertically. 29903Split current cell vertically.
29921Creates a cell above and a cell below the current point location." t nil) 29904Creates a cell above and a cell below the current point location." t)
29922(autoload 'table-split-cell-horizontally "table" "\ 29905(autoload 'table-split-cell-horizontally "table" "\
29923Split current cell horizontally. 29906Split current cell horizontally.
29924Creates a cell on the left and a cell on the right of the current 29907Creates a cell on the left and a cell on the right of the current
29925point location." t nil) 29908point location." t)
29926(autoload 'table-split-cell "table" "\ 29909(autoload 'table-split-cell "table" "\
29927Split current cell in ORIENTATION. 29910Split current cell in ORIENTATION.
29928ORIENTATION is a symbol either horizontally or vertically. 29911ORIENTATION is a symbol either horizontally or vertically.
29929 29912
29930(fn ORIENTATION)" t nil) 29913(fn ORIENTATION)" t)
29931(autoload 'table-justify "table" "\ 29914(autoload 'table-justify "table" "\
29932Justify contents of a cell, a row of cells or a column of cells. 29915Justify contents of a cell, a row of cells or a column of cells.
29933WHAT is a symbol `cell', `row' or `column'. JUSTIFY is a symbol 29916WHAT is a symbol `cell', `row' or `column'. JUSTIFY is a symbol
29934`left', `center', `right', `top', `middle', `bottom' or `none'. 29917`left', `center', `right', `top', `middle', `bottom' or `none'.
29935 29918
29936(fn WHAT JUSTIFY)" t nil) 29919(fn WHAT JUSTIFY)" t)
29937(autoload 'table-justify-cell "table" "\ 29920(autoload 'table-justify-cell "table" "\
29938Justify cell contents. 29921Justify cell contents.
29939JUSTIFY is a symbol `left', `center' or `right' for horizontal, or `top', 29922JUSTIFY is a symbol `left', `center' or `right' for horizontal, or `top',
@@ -29941,19 +29924,19 @@ JUSTIFY is a symbol `left', `center' or `right' for horizontal, or `top',
29941non-nil the justify operation is limited to the current paragraph, 29924non-nil the justify operation is limited to the current paragraph,
29942otherwise the entire cell contents is justified. 29925otherwise the entire cell contents is justified.
29943 29926
29944(fn JUSTIFY &optional PARAGRAPH)" t nil) 29927(fn JUSTIFY &optional PARAGRAPH)" t)
29945(autoload 'table-justify-row "table" "\ 29928(autoload 'table-justify-row "table" "\
29946Justify cells of a row. 29929Justify cells of a row.
29947JUSTIFY is a symbol `left', `center' or `right' for horizontal, 29930JUSTIFY is a symbol `left', `center' or `right' for horizontal,
29948or `top', `middle', `bottom' or `none' for vertical. 29931or `top', `middle', `bottom' or `none' for vertical.
29949 29932
29950(fn JUSTIFY)" t nil) 29933(fn JUSTIFY)" t)
29951(autoload 'table-justify-column "table" "\ 29934(autoload 'table-justify-column "table" "\
29952Justify cells of a column. 29935Justify cells of a column.
29953JUSTIFY is a symbol `left', `center' or `right' for horizontal, 29936JUSTIFY is a symbol `left', `center' or `right' for horizontal,
29954or `top', `middle', `bottom' or `none' for vertical. 29937or `top', `middle', `bottom' or `none' for vertical.
29955 29938
29956(fn JUSTIFY)" t nil) 29939(fn JUSTIFY)" t)
29957(autoload 'table-query-dimension "table" "\ 29940(autoload 'table-query-dimension "table" "\
29958Return the dimension of the current cell and the current table. 29941Return the dimension of the current cell and the current table.
29959The result is a list (cw ch tw th c r cells) where cw is the cell 29942The result is a list (cw ch tw th c r cells) where cw is the cell
@@ -29966,7 +29949,7 @@ the number tends to be larger than it appears for the tables with
29966non-uniform cell structure (heavily spanned and split). When optional 29949non-uniform cell structure (heavily spanned and split). When optional
29967WHERE is provided the cell and table at that location is reported. 29950WHERE is provided the cell and table at that location is reported.
29968 29951
29969(fn &optional WHERE)" t nil) 29952(fn &optional WHERE)" t)
29970(autoload 'table-generate-source "table" "\ 29953(autoload 'table-generate-source "table" "\
29971Generate source of the current table in the specified language. 29954Generate source of the current table in the specified language.
29972LANGUAGE is a symbol that specifies the language to describe the 29955LANGUAGE is a symbol that specifies the language to describe the
@@ -29994,7 +29977,7 @@ CALS (DocBook DTD):
29994 URL `https://www.oasis-open.org/html/a502.htm' 29977 URL `https://www.oasis-open.org/html/a502.htm'
29995 URL `https://www.oreilly.com/catalog/docbook/chapter/book/table.html#AEN114751' 29978 URL `https://www.oreilly.com/catalog/docbook/chapter/book/table.html#AEN114751'
29996 29979
29997(fn LANGUAGE &optional DEST-BUFFER CAPTION)" t nil) 29980(fn LANGUAGE &optional DEST-BUFFER CAPTION)" t)
29998(autoload 'table-insert-sequence "table" "\ 29981(autoload 'table-insert-sequence "table" "\
29999Travel cells forward while inserting a specified sequence string in each cell. 29982Travel cells forward while inserting a specified sequence string in each cell.
30000STR is the base string from which the sequence starts. When STR is an 29983STR is the base string from which the sequence starts. When STR is an
@@ -30030,21 +30013,21 @@ Example:
30030 (table-forward-cell 1) 30013 (table-forward-cell 1)
30031 (table-insert-sequence \"64\" 0 1 2 \\='left)) 30014 (table-insert-sequence \"64\" 0 1 2 \\='left))
30032 30015
30033(fn STR N INCREMENT INTERVAL JUSTIFY)" t nil) 30016(fn STR N INCREMENT INTERVAL JUSTIFY)" t)
30034(autoload 'table-delete-row "table" "\ 30017(autoload 'table-delete-row "table" "\
30035Delete N row(s) of cells. 30018Delete N row(s) of cells.
30036Delete N rows of cells from current row. The current row is the row 30019Delete N rows of cells from current row. The current row is the row
30037contains the current cell where point is located. Each row must 30020contains the current cell where point is located. Each row must
30038consists from cells of same height. 30021consists from cells of same height.
30039 30022
30040(fn N)" t nil) 30023(fn N)" t)
30041(autoload 'table-delete-column "table" "\ 30024(autoload 'table-delete-column "table" "\
30042Delete N column(s) of cells. 30025Delete N column(s) of cells.
30043Delete N columns of cells from current column. The current column is 30026Delete N columns of cells from current column. The current column is
30044the column contains the current cell where point is located. Each 30027the column contains the current cell where point is located. Each
30045column must consists from cells of same width. 30028column must consists from cells of same width.
30046 30029
30047(fn N)" t nil) 30030(fn N)" t)
30048(autoload 'table-capture "table" "\ 30031(autoload 'table-capture "table" "\
30049Convert plain text into a table by capturing the text in the region. 30032Convert plain text into a table by capturing the text in the region.
30050Create a table with the text in region as cell contents. BEG and END 30033Create a table with the text in region as cell contents. BEG and END
@@ -30156,12 +30139,12 @@ By applying `table-release', which does the opposite process, the
30156contents become once again plain text. `table-release' works as 30139contents become once again plain text. `table-release' works as
30157companion command to `table-capture' this way. 30140companion command to `table-capture' this way.
30158 30141
30159(fn BEG END &optional COL-DELIM-REGEXP ROW-DELIM-REGEXP JUSTIFY MIN-CELL-WIDTH COLUMNS)" t nil) 30142(fn BEG END &optional COL-DELIM-REGEXP ROW-DELIM-REGEXP JUSTIFY MIN-CELL-WIDTH COLUMNS)" t)
30160(autoload 'table-release "table" "\ 30143(autoload 'table-release "table" "\
30161Convert a table into plain text by removing the frame from a table. 30144Convert a table into plain text by removing the frame from a table.
30162Remove the frame from a table and deactivate the table. This command 30145Remove the frame from a table and deactivate the table. This command
30163converts a table into plain text without frames. It is a companion to 30146converts a table into plain text without frames. It is a companion to
30164`table-capture' which does the opposite process." t nil) 30147`table-capture' which does the opposite process." t)
30165(register-definition-prefixes "table" '("*table--" "table-")) 30148(register-definition-prefixes "table" '("*table--" "table-"))
30166 30149
30167 30150
@@ -30200,9 +30183,9 @@ converts a table into plain text without frames. It is a companion to
30200(autoload 'talk-connect "talk" "\ 30183(autoload 'talk-connect "talk" "\
30201Connect to display DISPLAY for the Emacs talk group. 30184Connect to display DISPLAY for the Emacs talk group.
30202 30185
30203(fn DISPLAY)" t nil) 30186(fn DISPLAY)" t)
30204(autoload 'talk "talk" "\ 30187(autoload 'talk "talk" "\
30205Connect to the Emacs talk group from the current X display or tty frame." t nil) 30188Connect to the Emacs talk group from the current X display or tty frame." t)
30206(register-definition-prefixes "talk" '("talk-")) 30189(register-definition-prefixes "talk" '("talk-"))
30207 30190
30208 30191
@@ -30224,7 +30207,7 @@ inside of a tar archive without extracting it and re-archiving it.
30224See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. 30207See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
30225\\{tar-mode-map} 30208\\{tar-mode-map}
30226 30209
30227(fn)" t nil) 30210(fn)" t)
30228(register-definition-prefixes "tar-mode" '("tar-")) 30211(register-definition-prefixes "tar-mode" '("tar-"))
30229 30212
30230 30213
@@ -30258,18 +30241,18 @@ Turning on Tcl mode runs `tcl-mode-hook'. Read the documentation for
30258`tcl-mode-hook' to see what kinds of interesting hook functions 30241`tcl-mode-hook' to see what kinds of interesting hook functions
30259already exist. 30242already exist.
30260 30243
30261(fn)" t nil) 30244(fn)" t)
30262(autoload 'inferior-tcl "tcl" "\ 30245(autoload 'inferior-tcl "tcl" "\
30263Run inferior Tcl process. 30246Run inferior Tcl process.
30264Prefix arg means enter program name interactively. 30247Prefix arg means enter program name interactively.
30265See documentation for function `inferior-tcl-mode' for more information. 30248See documentation for function `inferior-tcl-mode' for more information.
30266 30249
30267(fn CMD)" t nil) 30250(fn CMD)" t)
30268(autoload 'tcl-help-on-word "tcl" "\ 30251(autoload 'tcl-help-on-word "tcl" "\
30269Get help on Tcl command. Default is word at point. 30252Get help on Tcl command. Default is word at point.
30270Prefix argument means invert sense of `tcl-use-smart-word-finder'. 30253Prefix argument means invert sense of `tcl-use-smart-word-finder'.
30271 30254
30272(fn COMMAND &optional ARG)" t nil) 30255(fn COMMAND &optional ARG)" t)
30273(register-definition-prefixes "tcl" '("inferior-tcl-" "run-tcl" "switch-to-tcl" "tcl-")) 30256(register-definition-prefixes "tcl" '("inferior-tcl-" "run-tcl" "switch-to-tcl" "tcl-"))
30274 30257
30275 30258
@@ -30291,13 +30274,13 @@ is controlled by the contents of the global variable `telnet-host-properties',
30291falling back on the value of the global variable `telnet-program'. 30274falling back on the value of the global variable `telnet-program'.
30292Normally input is edited in Emacs and sent a line at a time. 30275Normally input is edited in Emacs and sent a line at a time.
30293 30276
30294(fn HOST &optional PORT)" t nil) 30277(fn HOST &optional PORT)" t)
30295(autoload 'rsh "telnet" "\ 30278(autoload 'rsh "telnet" "\
30296Open a network login connection to host named HOST (a string). 30279Open a network login connection to host named HOST (a string).
30297Communication with HOST is recorded in a buffer `*rsh-HOST*'. 30280Communication with HOST is recorded in a buffer `*rsh-HOST*'.
30298Normally input is edited in Emacs and sent a line at a time. 30281Normally input is edited in Emacs and sent a line at a time.
30299 30282
30300(fn HOST)" t nil) 30283(fn HOST)" t)
30301(make-obsolete 'rsh 'nil "29.1") 30284(make-obsolete 'rsh 'nil "29.1")
30302(register-definition-prefixes "telnet" '("send-process-next-char" "telnet-")) 30285(register-definition-prefixes "telnet" '("send-process-next-char" "telnet-"))
30303 30286
@@ -30321,7 +30304,7 @@ If there is already a running process in that buffer, it is not restarted.
30321Optional third arg STARTFILE is the name of a file to send the contents of to 30304Optional third arg STARTFILE is the name of a file to send the contents of to
30322the process. Any more args are arguments to PROGRAM. 30305the process. Any more args are arguments to PROGRAM.
30323 30306
30324(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil) 30307(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)")
30325(autoload 'term "term" "\ 30308(autoload 'term "term" "\
30326Start a terminal-emulator in a new buffer. 30309Start a terminal-emulator in a new buffer.
30327The buffer is in Term mode; see `term-mode' for the 30310The buffer is in Term mode; see `term-mode' for the
@@ -30329,13 +30312,13 @@ commands to use in that buffer.
30329 30312
30330\\<term-raw-map>Type \\[switch-to-buffer] to switch to another buffer. 30313\\<term-raw-map>Type \\[switch-to-buffer] to switch to another buffer.
30331 30314
30332(fn PROGRAM)" t nil) 30315(fn PROGRAM)" t)
30333(autoload 'ansi-term "term" "\ 30316(autoload 'ansi-term "term" "\
30334Start a terminal-emulator in a new buffer. 30317Start a terminal-emulator in a new buffer.
30335This is almost the same as `term' apart from always creating a new buffer, 30318This is almost the same as `term' apart from always creating a new buffer,
30336and \\`C-x' being marked as a `term-escape-char'. 30319and \\`C-x' being marked as a `term-escape-char'.
30337 30320
30338(fn PROGRAM &optional NEW-BUFFER-NAME)" t nil) 30321(fn PROGRAM &optional NEW-BUFFER-NAME)" t)
30339(autoload 'serial-term "term" "\ 30322(autoload 'serial-term "term" "\
30340Start a terminal-emulator for a serial port in a new buffer. 30323Start a terminal-emulator for a serial port in a new buffer.
30341PORT is the path or name of the serial port. For example, this 30324PORT is the path or name of the serial port. For example, this
@@ -30355,7 +30338,7 @@ use in that buffer.
30355 30338
30356\\<term-raw-map>Type \\[switch-to-buffer] to switch to another buffer. 30339\\<term-raw-map>Type \\[switch-to-buffer] to switch to another buffer.
30357 30340
30358(fn PORT SPEED &optional LINE-MODE)" t nil) 30341(fn PORT SPEED &optional LINE-MODE)" t)
30359(register-definition-prefixes "term" '("ansi-term-color-vector" "serial-" "term-")) 30342(register-definition-prefixes "term" '("ansi-term-color-vector" "serial-" "term-"))
30360 30343
30361 30344
@@ -30365,9 +30348,9 @@ use in that buffer.
30365Use Edebug to instrument for coverage all macros and functions in FILENAME. 30348Use Edebug to instrument for coverage all macros and functions in FILENAME.
30366If BYTE-COMPILE is non-nil, byte compile each function after instrumenting. 30349If BYTE-COMPILE is non-nil, byte compile each function after instrumenting.
30367 30350
30368(fn FILENAME &optional BYTE-COMPILE)" t nil) 30351(fn FILENAME &optional BYTE-COMPILE)" t)
30369(autoload 'testcover-this-defun "testcover" "\ 30352(autoload 'testcover-this-defun "testcover" "\
30370Start coverage on function under point." t nil) 30353Start coverage on function under point." t)
30371(register-definition-prefixes "testcover" '("testcover-")) 30354(register-definition-prefixes "testcover" '("testcover-"))
30372 30355
30373 30356
@@ -30388,7 +30371,7 @@ as to form complete rows.
30388\\[tetris-move-right] Move the shape one square to the right 30371\\[tetris-move-right] Move the shape one square to the right
30389\\[tetris-rotate-prev] Rotate the shape clockwise 30372\\[tetris-rotate-prev] Rotate the shape clockwise
30390\\[tetris-rotate-next] Rotate the shape anticlockwise 30373\\[tetris-rotate-next] Rotate the shape anticlockwise
30391\\[tetris-move-bottom] Drop the shape to the bottom of the playing area" t nil) 30374\\[tetris-move-bottom] Drop the shape to the bottom of the playing area" t)
30392(register-definition-prefixes "tetris" '("tetris-")) 30375(register-definition-prefixes "tetris" '("tetris-"))
30393 30376
30394 30377
@@ -30505,7 +30488,7 @@ this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode',
30505such as if there are no commands in the file, the value of `tex-default-mode' 30488such as if there are no commands in the file, the value of `tex-default-mode'
30506says which mode to use. 30489says which mode to use.
30507 30490
30508(fn)" t nil) 30491(fn)" t)
30509(defalias 'TeX-mode #'tex-mode) 30492(defalias 'TeX-mode #'tex-mode)
30510(defalias 'plain-TeX-mode #'plain-tex-mode) 30493(defalias 'plain-TeX-mode #'plain-tex-mode)
30511(defalias 'LaTeX-mode #'latex-mode) 30494(defalias 'LaTeX-mode #'latex-mode)
@@ -30550,7 +30533,7 @@ Entering Plain-tex mode runs the hook `text-mode-hook', then the hook
30550`tex-mode-hook', and finally the hook `plain-tex-mode-hook'. When the 30533`tex-mode-hook', and finally the hook `plain-tex-mode-hook'. When the
30551special subshell is initiated, the hook `tex-shell-hook' is run. 30534special subshell is initiated, the hook `tex-shell-hook' is run.
30552 30535
30553(fn)" t nil) 30536(fn)" t)
30554(autoload 'latex-mode "tex-mode" "\ 30537(autoload 'latex-mode "tex-mode" "\
30555Major mode for editing files of input for LaTeX. 30538Major mode for editing files of input for LaTeX.
30556Makes $ and } display the characters they match. 30539Makes $ and } display the characters they match.
@@ -30592,7 +30575,7 @@ Entering Latex mode runs the hook `text-mode-hook', then
30592`tex-mode-hook', and finally `latex-mode-hook'. When the special 30575`tex-mode-hook', and finally `latex-mode-hook'. When the special
30593subshell is initiated, `tex-shell-hook' is run. 30576subshell is initiated, `tex-shell-hook' is run.
30594 30577
30595(fn)" t nil) 30578(fn)" t)
30596(autoload 'slitex-mode "tex-mode" "\ 30579(autoload 'slitex-mode "tex-mode" "\
30597Major mode for editing files of input for SliTeX. 30580Major mode for editing files of input for SliTeX.
30598Makes $ and } display the characters they match. 30581Makes $ and } display the characters they match.
@@ -30635,12 +30618,12 @@ Entering SliTeX mode runs the hook `text-mode-hook', then the hook
30635`slitex-mode-hook'. When the special subshell is initiated, the hook 30618`slitex-mode-hook'. When the special subshell is initiated, the hook
30636`tex-shell-hook' is run. 30619`tex-shell-hook' is run.
30637 30620
30638(fn)" t nil) 30621(fn)" t)
30639(autoload 'tex-start-shell "tex-mode" nil nil nil) 30622(autoload 'tex-start-shell "tex-mode")
30640(autoload 'doctex-mode "tex-mode" "\ 30623(autoload 'doctex-mode "tex-mode" "\
30641Major mode to edit DocTeX files. 30624Major mode to edit DocTeX files.
30642 30625
30643(fn)" t nil) 30626(fn)" t)
30644(register-definition-prefixes "tex-mode" '("doctex-font-lock-" "latex-" "plain-tex-mode-map" "tex-")) 30627(register-definition-prefixes "tex-mode" '("doctex-font-lock-" "latex-" "plain-tex-mode-map" "tex-"))
30645 30628
30646 30629
@@ -30665,14 +30648,14 @@ Non-nil argument (prefix, if interactive) means don't make tag table
30665and don't split the file if large. You can use `Info-tagify' and 30648and don't split the file if large. You can use `Info-tagify' and
30666`Info-split' to do these manually. 30649`Info-split' to do these manually.
30667 30650
30668(fn &optional NOSPLIT)" t nil) 30651(fn &optional NOSPLIT)" t)
30669(autoload 'texinfo-format-region "texinfmt" "\ 30652(autoload 'texinfo-format-region "texinfmt" "\
30670Convert the current region of the Texinfo file to Info format. 30653Convert the current region of the Texinfo file to Info format.
30671This lets you see what that part of the file will look like in Info. 30654This lets you see what that part of the file will look like in Info.
30672The command is bound to \\[texinfo-format-region]. The text that is 30655The command is bound to \\[texinfo-format-region]. The text that is
30673converted to Info is stored in a temporary buffer. 30656converted to Info is stored in a temporary buffer.
30674 30657
30675(fn REGION-BEGINNING REGION-END)" t nil) 30658(fn REGION-BEGINNING REGION-END)" t)
30676(autoload 'texi2info "texinfmt" "\ 30659(autoload 'texi2info "texinfmt" "\
30677Convert the current buffer (written in Texinfo code) into an Info file. 30660Convert the current buffer (written in Texinfo code) into an Info file.
30678The Info file output is generated in a buffer visiting the Info file 30661The Info file output is generated in a buffer visiting the Info file
@@ -30686,7 +30669,7 @@ Texinfo source buffer is not changed.
30686Non-nil argument (prefix, if interactive) means don't split the file 30669Non-nil argument (prefix, if interactive) means don't split the file
30687if large. You can use `Info-split' to do this manually. 30670if large. You can use `Info-split' to do this manually.
30688 30671
30689(fn &optional NOSPLIT)" t nil) 30672(fn &optional NOSPLIT)" t)
30690(register-definition-prefixes "texinfmt" '("batch-texinfo-format" "texinf")) 30673(register-definition-prefixes "texinfmt" '("batch-texinfo-format" "texinf"))
30691 30674
30692 30675
@@ -30765,7 +30748,7 @@ be the first node in the file.
30765Entering Texinfo mode calls the value of `text-mode-hook', and then the 30748Entering Texinfo mode calls the value of `text-mode-hook', and then the
30766value of `texinfo-mode-hook'. 30749value of `texinfo-mode-hook'.
30767 30750
30768(fn)" t nil) 30751(fn)" t)
30769(register-definition-prefixes "texinfo" '("texinfo-")) 30752(register-definition-prefixes "texinfo" '("texinfo-"))
30770 30753
30771 30754
@@ -30813,7 +30796,7 @@ Available values of TYPE and corresponding OBJECTs are:
30813If the user option `textsec-check' is nil, these checks are 30796If the user option `textsec-check' is nil, these checks are
30814disabled, and this function always returns nil. 30797disabled, and this function always returns nil.
30815 30798
30816(fn OBJECT TYPE)" nil nil) 30799(fn OBJECT TYPE)")
30817(register-definition-prefixes "textsec-check" '("textsec-check")) 30800(register-definition-prefixes "textsec-check" '("textsec-check"))
30818 30801
30819 30802
@@ -30829,17 +30812,17 @@ Compose Thai characters in the region.
30829When called from a program, expects two arguments, 30812When called from a program, expects two arguments,
30830positions (integers or markers) specifying the region. 30813positions (integers or markers) specifying the region.
30831 30814
30832(fn BEG END)" t nil) 30815(fn BEG END)" t)
30833(autoload 'thai-compose-string "thai-util" "\ 30816(autoload 'thai-compose-string "thai-util" "\
30834Compose Thai characters in STRING and return the resulting string. 30817Compose Thai characters in STRING and return the resulting string.
30835 30818
30836(fn STRING)" nil nil) 30819(fn STRING)")
30837(autoload 'thai-compose-buffer "thai-util" "\ 30820(autoload 'thai-compose-buffer "thai-util" "\
30838Compose Thai characters in the current buffer." t nil) 30821Compose Thai characters in the current buffer." t)
30839(autoload 'thai-composition-function "thai-util" "\ 30822(autoload 'thai-composition-function "thai-util" "\
30840 30823
30841 30824
30842(fn GSTRING DIRECTION)" nil nil) 30825(fn GSTRING DIRECTION)")
30843(register-definition-prefixes "thai-util" '("exit-thai-language-environment-internal" "setup-thai-language-environment-internal" "thai-")) 30826(register-definition-prefixes "thai-util" '("exit-thai-language-environment-internal" "setup-thai-language-environment-internal" "thai-"))
30844 30827
30845 30828
@@ -30857,7 +30840,7 @@ Possibilities include `symbol', `list', `sexp', `defun', `number',
30857`filename', `url', `email', `uuid', `word', `sentence', `whitespace', 30840`filename', `url', `email', `uuid', `word', `sentence', `whitespace',
30858`line', and `page'. 30841`line', and `page'.
30859 30842
30860(fn THING &optional N)" nil nil) 30843(fn THING &optional N)")
30861(autoload 'bounds-of-thing-at-point "thingatpt" "\ 30844(autoload 'bounds-of-thing-at-point "thingatpt" "\
30862Determine the start and end buffer locations for the THING at point. 30845Determine the start and end buffer locations for the THING at point.
30863THING should be a symbol specifying a type of syntactic entity. 30846THING should be a symbol specifying a type of syntactic entity.
@@ -30871,13 +30854,13 @@ valid THING.
30871Return a cons cell (START . END) giving the start and end 30854Return a cons cell (START . END) giving the start and end
30872positions of the thing found. 30855positions of the thing found.
30873 30856
30874(fn THING)" nil nil) 30857(fn THING)")
30875(autoload 'thing-at-point "thingatpt" "\ 30858(autoload 'thing-at-point "thingatpt" "\
30876Return the THING at point. 30859Return the THING at point.
30877THING should be a symbol specifying a type of syntactic entity. 30860THING should be a symbol specifying a type of syntactic entity.
30878Possibilities include `symbol', `list', `sexp', `defun', 30861Possibilities include `symbol', `list', `sexp', `defun',
30879`filename', `existing-filename', `url', `email', `uuid', `word', 30862`filename', `existing-filename', `url', `email', `uuid', `word',
30880`sentence', `whitespace', `line', `number', and `page'. 30863`sentence', `whitespace', `line', `number', `face' and `page'.
30881 30864
30882When the optional argument NO-PROPERTIES is non-nil, 30865When the optional argument NO-PROPERTIES is non-nil,
30883strip text properties from the return value. 30866strip text properties from the return value.
@@ -30885,33 +30868,33 @@ strip text properties from the return value.
30885See the file `thingatpt.el' for documentation on how to define 30868See the file `thingatpt.el' for documentation on how to define
30886a symbol as a valid THING. 30869a symbol as a valid THING.
30887 30870
30888(fn THING &optional NO-PROPERTIES)" nil nil) 30871(fn THING &optional NO-PROPERTIES)")
30889(autoload 'bounds-of-thing-at-mouse "thingatpt" "\ 30872(autoload 'bounds-of-thing-at-mouse "thingatpt" "\
30890Determine start and end locations for THING at mouse click given by EVENT. 30873Determine start and end locations for THING at mouse click given by EVENT.
30891Like `bounds-of-thing-at-point', but tries to use the position in EVENT 30874Like `bounds-of-thing-at-point', but tries to use the position in EVENT
30892where the mouse button is clicked to find the thing nearby. 30875where the mouse button is clicked to find the thing nearby.
30893 30876
30894(fn EVENT THING)" nil nil) 30877(fn EVENT THING)")
30895(autoload 'thing-at-mouse "thingatpt" "\ 30878(autoload 'thing-at-mouse "thingatpt" "\
30896Return the THING at mouse click specified by EVENT. 30879Return the THING at mouse click specified by EVENT.
30897Like `thing-at-point', but tries to use the position in EVENT 30880Like `thing-at-point', but tries to use the position in EVENT
30898where the mouse button is clicked to find the thing nearby. 30881where the mouse button is clicked to find the thing nearby.
30899 30882
30900(fn EVENT THING &optional NO-PROPERTIES)" nil nil) 30883(fn EVENT THING &optional NO-PROPERTIES)")
30901(autoload 'sexp-at-point "thingatpt" "\ 30884(autoload 'sexp-at-point "thingatpt" "\
30902Return the sexp at point, or nil if none is found." nil nil) 30885Return the sexp at point, or nil if none is found.")
30903(autoload 'symbol-at-point "thingatpt" "\ 30886(autoload 'symbol-at-point "thingatpt" "\
30904Return the symbol at point, or nil if none is found." nil nil) 30887Return the symbol at point, or nil if none is found.")
30905(autoload 'number-at-point "thingatpt" "\ 30888(autoload 'number-at-point "thingatpt" "\
30906Return the number at point, or nil if none is found. 30889Return the number at point, or nil if none is found.
30907Decimal numbers like \"14\" or \"-14.5\", as well as hex numbers 30890Decimal numbers like \"14\" or \"-14.5\", as well as hex numbers
30908like \"0xBEEF09\" or \"#xBEEF09\", are recognized." nil nil) 30891like \"0xBEEF09\" or \"#xBEEF09\", are recognized.")
30909(autoload 'list-at-point "thingatpt" "\ 30892(autoload 'list-at-point "thingatpt" "\
30910Return the Lisp list at point, or nil if none is found. 30893Return the Lisp list at point, or nil if none is found.
30911If IGNORE-COMMENT-OR-STRING is non-nil comments and strings are 30894If IGNORE-COMMENT-OR-STRING is non-nil comments and strings are
30912treated as white space. 30895treated as white space.
30913 30896
30914(fn &optional IGNORE-COMMENT-OR-STRING)" nil nil) 30897(fn &optional IGNORE-COMMENT-OR-STRING)")
30915(register-definition-prefixes "thingatpt" '("beginning-of-thing" "define-thing-chars" "end-of-thing" "filename" "form-at-point" "in-string-p" "sentence-at-point" "thing-at-point-" "word-at-point")) 30898(register-definition-prefixes "thingatpt" '("beginning-of-thing" "define-thing-chars" "end-of-thing" "filename" "form-at-point" "in-string-p" "sentence-at-point" "thing-at-point-" "word-at-point"))
30916 30899
30917 30900
@@ -30922,9 +30905,9 @@ Handle thread events, propagated by `thread-signal'.
30922An EVENT has the format 30905An EVENT has the format
30923 (thread-event THREAD ERROR-SYMBOL DATA) 30906 (thread-event THREAD ERROR-SYMBOL DATA)
30924 30907
30925(fn EVENT)" t nil) 30908(fn EVENT)" t)
30926(autoload 'list-threads "thread" "\ 30909(autoload 'list-threads "thread" "\
30927Display a list of threads." t nil) 30910Display a list of threads." t)
30928 (put 'list-threads 'disabled "Beware: manually canceling threads can ruin your Emacs session.") 30911 (put 'list-threads 'disabled "Beware: manually canceling threads can ruin your Emacs session.")
30929(register-definition-prefixes "thread" '("thread-list-")) 30912(register-definition-prefixes "thread" '("thread-list-"))
30930 30913
@@ -30934,20 +30917,20 @@ Display a list of threads." t nil)
30934(autoload 'thumbs-find-thumb "thumbs" "\ 30917(autoload 'thumbs-find-thumb "thumbs" "\
30935Display the thumbnail for IMG. 30918Display the thumbnail for IMG.
30936 30919
30937(fn IMG)" t nil) 30920(fn IMG)" t)
30938(autoload 'thumbs-show-from-dir "thumbs" "\ 30921(autoload 'thumbs-show-from-dir "thumbs" "\
30939Make a preview buffer for all images in DIR. 30922Make a preview buffer for all images in DIR.
30940Optional argument REG to select file matching a regexp, 30923Optional argument REG to select file matching a regexp,
30941and SAME-WINDOW to show thumbs in the same window. 30924and SAME-WINDOW to show thumbs in the same window.
30942 30925
30943(fn DIR &optional REG SAME-WINDOW)" t nil) 30926(fn DIR &optional REG SAME-WINDOW)" t)
30944(autoload 'thumbs-dired-show-marked "thumbs" "\ 30927(autoload 'thumbs-dired-show-marked "thumbs" "\
30945In dired, make a thumbs buffer with marked files." t nil) 30928In dired, make a thumbs buffer with marked files." t)
30946(autoload 'thumbs-dired-show "thumbs" "\ 30929(autoload 'thumbs-dired-show "thumbs" "\
30947In dired, make a thumbs buffer with all files in current directory." t nil) 30930In dired, make a thumbs buffer with all files in current directory." t)
30948(defalias 'thumbs 'thumbs-show-from-dir) 30931(defalias 'thumbs 'thumbs-show-from-dir)
30949(autoload 'thumbs-dired-setroot "thumbs" "\ 30932(autoload 'thumbs-dired-setroot "thumbs" "\
30950In dired, call the setroot program on the image at point." t nil) 30933In dired, call the setroot program on the image at point." t)
30951(register-definition-prefixes "thumbs" '("thumbs-")) 30934(register-definition-prefixes "thumbs" '("thumbs-"))
30952 30935
30953 30936
@@ -30963,56 +30946,56 @@ In dired, call the setroot program on the image at point." t nil)
30963Check if char CH is Tibetan character. 30946Check if char CH is Tibetan character.
30964Returns non-nil if CH is Tibetan. Otherwise, returns nil. 30947Returns non-nil if CH is Tibetan. Otherwise, returns nil.
30965 30948
30966(fn CH)" nil nil) 30949(fn CH)")
30967(autoload 'tibetan-tibetan-to-transcription "tibet-util" "\ 30950(autoload 'tibetan-tibetan-to-transcription "tibet-util" "\
30968Transcribe Tibetan string STR and return the corresponding Roman string. 30951Transcribe Tibetan string STR and return the corresponding Roman string.
30969 30952
30970(fn STR)" nil nil) 30953(fn STR)")
30971(autoload 'tibetan-transcription-to-tibetan "tibet-util" "\ 30954(autoload 'tibetan-transcription-to-tibetan "tibet-util" "\
30972Convert Tibetan Roman string STR to Tibetan character string. 30955Convert Tibetan Roman string STR to Tibetan character string.
30973The returned string has no composition information. 30956The returned string has no composition information.
30974 30957
30975(fn STR)" nil nil) 30958(fn STR)")
30976(autoload 'tibetan-compose-string "tibet-util" "\ 30959(autoload 'tibetan-compose-string "tibet-util" "\
30977Compose Tibetan string STR. 30960Compose Tibetan string STR.
30978 30961
30979(fn STR)" nil nil) 30962(fn STR)")
30980(autoload 'tibetan-compose-region "tibet-util" "\ 30963(autoload 'tibetan-compose-region "tibet-util" "\
30981Compose Tibetan text the region BEG and END. 30964Compose Tibetan text the region BEG and END.
30982 30965
30983(fn BEG END)" t nil) 30966(fn BEG END)" t)
30984(autoload 'tibetan-decompose-region "tibet-util" "\ 30967(autoload 'tibetan-decompose-region "tibet-util" "\
30985Decompose Tibetan text in the region FROM and TO. 30968Decompose Tibetan text in the region FROM and TO.
30986This is different from `decompose-region' because precomposed 30969This is different from `decompose-region' because precomposed
30987Tibetan characters are decomposed into normal Tibetan character 30970Tibetan characters are decomposed into normal Tibetan character
30988sequences. 30971sequences.
30989 30972
30990(fn FROM TO)" t nil) 30973(fn FROM TO)" t)
30991(autoload 'tibetan-decompose-string "tibet-util" "\ 30974(autoload 'tibetan-decompose-string "tibet-util" "\
30992Decompose Tibetan string STR. 30975Decompose Tibetan string STR.
30993This is different from `decompose-string' because precomposed 30976This is different from `decompose-string' because precomposed
30994Tibetan characters are decomposed into normal Tibetan character 30977Tibetan characters are decomposed into normal Tibetan character
30995sequences. 30978sequences.
30996 30979
30997(fn STR)" nil nil) 30980(fn STR)")
30998(autoload 'tibetan-decompose-buffer "tibet-util" "\ 30981(autoload 'tibetan-decompose-buffer "tibet-util" "\
30999Decomposes Tibetan characters in the buffer into their components. 30982Decomposes Tibetan characters in the buffer into their components.
31000See also the documentation of the function `tibetan-decompose-region'." t nil) 30983See also the documentation of the function `tibetan-decompose-region'." t)
31001(autoload 'tibetan-compose-buffer "tibet-util" "\ 30984(autoload 'tibetan-compose-buffer "tibet-util" "\
31002Composes Tibetan character components in the buffer. 30985Composes Tibetan character components in the buffer.
31003See also docstring of the function `tibetan-compose-region'." t nil) 30986See also docstring of the function `tibetan-compose-region'." t)
31004(autoload 'tibetan-post-read-conversion "tibet-util" "\ 30987(autoload 'tibetan-post-read-conversion "tibet-util" "\
31005 30988
31006 30989
31007(fn LEN)" nil nil) 30990(fn LEN)")
31008(autoload 'tibetan-pre-write-conversion "tibet-util" "\ 30991(autoload 'tibetan-pre-write-conversion "tibet-util" "\
31009 30992
31010 30993
31011(fn FROM TO)" nil nil) 30994(fn FROM TO)")
31012(autoload 'tibetan-pre-write-canonicalize-for-unicode "tibet-util" "\ 30995(autoload 'tibetan-pre-write-canonicalize-for-unicode "tibet-util" "\
31013 30996
31014 30997
31015(fn FROM TO)" nil nil) 30998(fn FROM TO)")
31016(register-definition-prefixes "tibet-util" '("tibetan-")) 30999(register-definition-prefixes "tibet-util" '("tibetan-"))
31017 31000
31018 31001
@@ -31033,7 +31016,7 @@ This function performs no refilling of the changed text.
31033If DONT-ASK is set, or called interactively with prefix argument, user 31016If DONT-ASK is set, or called interactively with prefix argument, user
31034won't be prompted for confirmation of each substitution. 31017won't be prompted for confirmation of each substitution.
31035 31018
31036(fn BEG END &optional DONT-ASK)" t nil) 31019(fn BEG END &optional DONT-ASK)" t)
31037(autoload 'tildify-buffer "tildify" "\ 31020(autoload 'tildify-buffer "tildify" "\
31038Add hard spaces in the current buffer. 31021Add hard spaces in the current buffer.
31039See variables `tildify-pattern', `tildify-space-string', and 31022See variables `tildify-pattern', `tildify-space-string', and
@@ -31043,7 +31026,7 @@ This function performs no refilling of the changed text.
31043If DONT-ASK is set, or called interactively with prefix argument, user 31026If DONT-ASK is set, or called interactively with prefix argument, user
31044won't be prompted for confirmation of each substitution. 31027won't be prompted for confirmation of each substitution.
31045 31028
31046(fn &optional DONT-ASK)" t nil) 31029(fn &optional DONT-ASK)" t)
31047(autoload 'tildify-space "tildify" "\ 31030(autoload 'tildify-space "tildify" "\
31048Convert space before point into a hard space if the context is right. 31031Convert space before point into a hard space if the context is right.
31049 31032
@@ -31064,7 +31047,7 @@ Otherwise, if
31064 `tildify-space-string' variable, 31047 `tildify-space-string' variable,
31065remove the hard space and leave only the space character. 31048remove the hard space and leave only the space character.
31066 31049
31067This function is meant to be used as a `post-self-insert-hook'." t nil) 31050This function is meant to be used as a `post-self-insert-hook'." t)
31068(autoload 'tildify-mode "tildify" "\ 31051(autoload 'tildify-mode "tildify" "\
31069Adds electric behavior to space character. 31052Adds electric behavior to space character.
31070 31053
@@ -31091,7 +31074,7 @@ evaluate `tildify-mode'.
31091The mode's hook is called both when the mode is enabled and when 31074The mode's hook is called both when the mode is enabled and when
31092it is disabled. 31075it is disabled.
31093 31076
31094(fn &optional ARG)" t nil) 31077(fn &optional ARG)" t)
31095(register-definition-prefixes "tildify" '("tildify-")) 31078(register-definition-prefixes "tildify" '("tildify-"))
31096 31079
31097 31080
@@ -31106,7 +31089,7 @@ Enable display of time, load level, and mail flag in mode lines.
31106This display updates automatically every minute. 31089This display updates automatically every minute.
31107If `display-time-day-and-date' is non-nil, the current day and date 31090If `display-time-day-and-date' is non-nil, the current day and date
31108are displayed as well. 31091are displayed as well.
31109This runs the normal hook `display-time-hook' after each update." t nil) 31092This runs the normal hook `display-time-hook' after each update." t)
31110(defvar display-time-mode nil "\ 31093(defvar display-time-mode nil "\
31111Non-nil if Display-Time mode is enabled. 31094Non-nil if Display-Time mode is enabled.
31112See the `display-time-mode' command 31095See the `display-time-mode' command
@@ -31138,12 +31121,12 @@ evaluate `(default-value \\='display-time-mode)'.
31138The mode's hook is called both when the mode is enabled and when 31121The mode's hook is called both when the mode is enabled and when
31139it is disabled. 31122it is disabled.
31140 31123
31141(fn &optional ARG)" t nil) 31124(fn &optional ARG)" t)
31142(define-obsolete-function-alias 'display-time-world #'world-clock "28.1") 31125(define-obsolete-function-alias 'display-time-world #'world-clock "28.1")
31143(autoload 'world-clock "time" "\ 31126(autoload 'world-clock "time" "\
31144Display a world clock buffer with times in various time zones. 31127Display a world clock buffer with times in various time zones.
31145The variable `world-clock-list' specifies which time zones to use. 31128The variable `world-clock-list' specifies which time zones to use.
31146To turn off the world time display, go to the window and type `\\[quit-window]'." t nil) 31129To turn off the world time display, go to the window and type `\\[quit-window]'." t)
31147(autoload 'emacs-uptime "time" "\ 31130(autoload 'emacs-uptime "time" "\
31148Return a string giving the uptime of this instance of Emacs. 31131Return a string giving the uptime of this instance of Emacs.
31149FORMAT is a string to format the result, using `format-seconds'. 31132FORMAT is a string to format the result, using `format-seconds'.
@@ -31151,13 +31134,13 @@ For example, the Unix uptime command format is \"%D, %z%2h:%.2m\".
31151If the optional argument HERE is non-nil, insert string at 31134If the optional argument HERE is non-nil, insert string at
31152point. 31135point.
31153 31136
31154(fn &optional FORMAT HERE)" t nil) 31137(fn &optional FORMAT HERE)" t)
31155(autoload 'emacs-init-time "time" "\ 31138(autoload 'emacs-init-time "time" "\
31156Return a string giving the duration of the Emacs initialization. 31139Return a string giving the duration of the Emacs initialization.
31157FORMAT is a string to format the result, using `format'. If nil, 31140FORMAT is a string to format the result, using `format'. If nil,
31158the default format \"%f seconds\" is used. 31141the default format \"%f seconds\" is used.
31159 31142
31160(fn &optional FORMAT)" t nil) 31143(fn &optional FORMAT)" t)
31161(register-definition-prefixes "time" '("display-time-" "legacy-style-world-list" "time--display-world-list" "world-clock-" "zoneinfo-style-world-list")) 31144(register-definition-prefixes "time" '("display-time-" "legacy-style-world-list" "time--display-world-list" "world-clock-" "zoneinfo-style-world-list"))
31162 31145
31163 31146
@@ -31168,53 +31151,52 @@ Parse a string DATE that represents a date-time and return a time value.
31168DATE should be in one of the forms recognized by `parse-time-string'. 31151DATE should be in one of the forms recognized by `parse-time-string'.
31169If DATE lacks timezone information, GMT is assumed. 31152If DATE lacks timezone information, GMT is assumed.
31170 31153
31171(fn DATE)" nil nil) 31154(fn DATE)")
31172(defalias 'time-to-seconds 'float-time) 31155(defalias 'time-to-seconds #'float-time)
31173(autoload 'seconds-to-time "time-date" "\ 31156(autoload 'seconds-to-time "time-date" "\
31174Convert SECONDS to a proper time, like `current-time' would. 31157Convert SECONDS to a proper time, like `current-time' would.
31175FORM means the same as in `time-convert'.
31176 31158
31177(fn SECONDS &rest FORM)" nil nil) 31159(fn SECONDS)")
31178(autoload 'days-to-time "time-date" "\ 31160(autoload 'days-to-time "time-date" "\
31179Convert DAYS into a time value. 31161Convert DAYS into a time value.
31180 31162
31181(fn DAYS)" nil nil) 31163(fn DAYS)")
31182(autoload 'time-since "time-date" "\ 31164(autoload 'time-since "time-date" "\
31183Return the time elapsed since TIME. 31165Return the time elapsed since TIME.
31184TIME should be either a time value or a date-time string. 31166TIME should be either a time value or a date-time string.
31185 31167
31186(fn TIME)" nil nil) 31168(fn TIME)")
31187(define-obsolete-function-alias 'subtract-time 'time-subtract "26.1") 31169(define-obsolete-function-alias 'subtract-time #'time-subtract "26.1")
31188(autoload 'date-to-day "time-date" "\ 31170(autoload 'date-to-day "time-date" "\
31189Return the absolute date of DATE, a date-time string. 31171Return the absolute date of DATE, a date-time string.
31190The absolute date is the number of days elapsed since the imaginary 31172The absolute date is the number of days elapsed since the imaginary
31191Gregorian date Sunday, December 31, 1 BC. 31173Gregorian date Sunday, December 31, 1 BC.
31192 31174
31193(fn DATE)" nil nil) 31175(fn DATE)")
31194(autoload 'days-between "time-date" "\ 31176(autoload 'days-between "time-date" "\
31195Return the number of days between DATE1 and DATE2. 31177Return the number of days between DATE1 and DATE2.
31196DATE1 and DATE2 should be date-time strings. 31178DATE1 and DATE2 should be date-time strings.
31197 31179
31198(fn DATE1 DATE2)" nil nil) 31180(fn DATE1 DATE2)")
31199(autoload 'date-leap-year-p "time-date" "\ 31181(autoload 'date-leap-year-p "time-date" "\
31200Return t if YEAR is a leap year. 31182Return t if YEAR is a leap year.
31201 31183
31202(fn YEAR)" nil nil) 31184(fn YEAR)")
31203(autoload 'time-to-day-in-year "time-date" "\ 31185(autoload 'time-to-day-in-year "time-date" "\
31204Return the day number within the year corresponding to TIME. 31186Return the day number within the year corresponding to TIME.
31205 31187
31206(fn TIME)" nil nil) 31188(fn TIME)")
31207(autoload 'time-to-days "time-date" "\ 31189(autoload 'time-to-days "time-date" "\
31208The absolute date corresponding to TIME, a time value. 31190The absolute date corresponding to TIME, a time value.
31209The absolute date is the number of days elapsed since the imaginary 31191The absolute date is the number of days elapsed since the imaginary
31210Gregorian date Sunday, December 31, 1 BC. 31192Gregorian date Sunday, December 31, 1 BC.
31211 31193
31212(fn TIME)" nil nil) 31194(fn TIME)")
31213(autoload 'safe-date-to-time "time-date" "\ 31195(autoload 'safe-date-to-time "time-date" "\
31214Parse a string DATE that represents a date-time and return a time value. 31196Parse a string DATE that represents a date-time and return a time value.
31215If DATE is malformed, return a time value of zero. 31197If DATE is malformed, return a time value of zero.
31216 31198
31217(fn DATE)" nil nil) 31199(fn DATE)")
31218(autoload 'format-seconds "time-date" "\ 31200(autoload 'format-seconds "time-date" "\
31219Use format control STRING to format the number SECONDS. 31201Use format control STRING to format the number SECONDS.
31220The valid format specifiers are: 31202The valid format specifiers are:
@@ -31245,11 +31227,11 @@ The \"%x\" specifier does not print anything. When it is used,
31245specifiers must be given in order of decreasing size. To the 31227specifiers must be given in order of decreasing size. To the
31246right of \"%x\", trailing zero units are not output. 31228right of \"%x\", trailing zero units are not output.
31247 31229
31248(fn STRING SECONDS)" nil nil) 31230(fn STRING SECONDS)")
31249(autoload 'seconds-to-string "time-date" "\ 31231(autoload 'seconds-to-string "time-date" "\
31250Convert the time interval in seconds to a short string. 31232Convert the time interval in seconds to a short string.
31251 31233
31252(fn DELAY)" nil nil) 31234(fn DELAY)")
31253(register-definition-prefixes "time-date" '("date-" "decoded-time-" "encode-time-value" "seconds-to-string" "time-" "with-decoded-time-value")) 31235(register-definition-prefixes "time-date" '("date-" "decoded-time-" "encode-time-value" "seconds-to-string" "time-" "with-decoded-time-value"))
31254 31236
31255 31237
@@ -31261,7 +31243,7 @@ Convert the time interval in seconds to a short string.
31261Return non-nil if ZONE is of the correct type for a timezone rule. 31243Return non-nil if ZONE is of the correct type for a timezone rule.
31262Valid ZONE values are described in the documentation of `format-time-string'. 31244Valid ZONE values are described in the documentation of `format-time-string'.
31263 31245
31264(fn ZONE)" nil nil) 31246(fn ZONE)")
31265(put 'time-stamp-line-limit 'safe-local-variable 'integerp) 31247(put 'time-stamp-line-limit 'safe-local-variable 'integerp)
31266(put 'time-stamp-start 'safe-local-variable 'stringp) 31248(put 'time-stamp-start 'safe-local-variable 'stringp)
31267(put 'time-stamp-end 'safe-local-variable 'stringp) 31249(put 'time-stamp-end 'safe-local-variable 'stringp)
@@ -31299,12 +31281,12 @@ If the file has no time-stamp template, this function does nothing.
31299You can set `time-stamp-pattern' in a file's local variables list 31281You can set `time-stamp-pattern' in a file's local variables list
31300to customize the information in the time stamp and where it is written. 31282to customize the information in the time stamp and where it is written.
31301 31283
31302The time stamp is updated only if `time-stamp-active' is non-nil." t nil) 31284The time stamp is updated only if `time-stamp-active' is non-nil." t)
31303(autoload 'time-stamp-toggle-active "time-stamp" "\ 31285(autoload 'time-stamp-toggle-active "time-stamp" "\
31304Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer. 31286Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer.
31305With ARG, turn time stamping on if and only if ARG is positive. 31287With ARG, turn time stamping on if and only if ARG is positive.
31306 31288
31307(fn &optional ARG)" t nil) 31289(fn &optional ARG)" t)
31308(register-definition-prefixes "time-stamp" '("time-stamp-")) 31290(register-definition-prefixes "time-stamp" '("time-stamp-"))
31309 31291
31310 31292
@@ -31331,7 +31313,7 @@ display (non-nil means on).
31331If using a customized `timeclock-workday' value, this should be 31313If using a customized `timeclock-workday' value, this should be
31332set before switching this mode on. 31314set before switching this mode on.
31333 31315
31334(fn &optional ARG)" t nil) 31316(fn &optional ARG)" t)
31335(autoload 'timeclock-in "timeclock" "\ 31317(autoload 'timeclock-in "timeclock" "\
31336Clock in, recording the current time moment in the timelog. 31318Clock in, recording the current time moment in the timelog.
31337With a numeric prefix ARG, record the fact that today has only that 31319With a numeric prefix ARG, record the fact that today has only that
@@ -31346,7 +31328,7 @@ FIND-PROJECT is non-nil -- or the user calls `timeclock-in'
31346interactively -- call the function `timeclock-get-project-function' to 31328interactively -- call the function `timeclock-get-project-function' to
31347discover the name of the project. 31329discover the name of the project.
31348 31330
31349(fn &optional ARG PROJECT FIND-PROJECT)" t nil) 31331(fn &optional ARG PROJECT FIND-PROJECT)" t)
31350(autoload 'timeclock-out "timeclock" "\ 31332(autoload 'timeclock-out "timeclock" "\
31351Clock out, recording the current time moment in the timelog. 31333Clock out, recording the current time moment in the timelog.
31352If a prefix ARG is given, the user has completed the project that was 31334If a prefix ARG is given, the user has completed the project that was
@@ -31357,14 +31339,14 @@ FIND-REASON is non-nil -- or the user calls `timeclock-out'
31357interactively -- call the function `timeclock-get-reason-function' to 31339interactively -- call the function `timeclock-get-reason-function' to
31358discover the reason. 31340discover the reason.
31359 31341
31360(fn &optional ARG REASON FIND-REASON)" t nil) 31342(fn &optional ARG REASON FIND-REASON)" t)
31361(autoload 'timeclock-status-string "timeclock" "\ 31343(autoload 'timeclock-status-string "timeclock" "\
31362Report the overall timeclock status at the present moment. 31344Report the overall timeclock status at the present moment.
31363If SHOW-SECONDS is non-nil, display second resolution. 31345If SHOW-SECONDS is non-nil, display second resolution.
31364If TODAY-ONLY is non-nil, the display will be relative only to time 31346If TODAY-ONLY is non-nil, the display will be relative only to time
31365worked today, ignoring the time worked on previous days. 31347worked today, ignoring the time worked on previous days.
31366 31348
31367(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil) 31349(fn &optional SHOW-SECONDS TODAY-ONLY)" t)
31368(autoload 'timeclock-change "timeclock" "\ 31350(autoload 'timeclock-change "timeclock" "\
31369Change to working on a different project. 31351Change to working on a different project.
31370This clocks out of the current project, then clocks in on a new one. 31352This clocks out of the current project, then clocks in on a new one.
@@ -31372,13 +31354,13 @@ With a prefix ARG, consider the previous project as finished at the
31372time of changeover. PROJECT is the name of the last project you were 31354time of changeover. PROJECT is the name of the last project you were
31373working on. 31355working on.
31374 31356
31375(fn &optional ARG PROJECT)" t nil) 31357(fn &optional ARG PROJECT)" t)
31376(autoload 'timeclock-query-out "timeclock" "\ 31358(autoload 'timeclock-query-out "timeclock" "\
31377Ask the user whether to clock out. 31359Ask the user whether to clock out.
31378This is a useful function for adding to `kill-emacs-query-functions'." nil nil) 31360This is a useful function for adding to `kill-emacs-query-functions'.")
31379(autoload 'timeclock-reread-log "timeclock" "\ 31361(autoload 'timeclock-reread-log "timeclock" "\
31380Re-read the timeclock, to account for external changes. 31362Re-read the timeclock, to account for external changes.
31381Returns the new value of `timeclock-discrepancy'." t nil) 31363Returns the new value of `timeclock-discrepancy'." t)
31382(autoload 'timeclock-workday-remaining-string "timeclock" "\ 31364(autoload 'timeclock-workday-remaining-string "timeclock" "\
31383Return a string representing the amount of time left today. 31365Return a string representing the amount of time left today.
31384Display second resolution if SHOW-SECONDS is non-nil. If TODAY-ONLY 31366Display second resolution if SHOW-SECONDS is non-nil. If TODAY-ONLY
@@ -31386,13 +31368,13 @@ is non-nil, the display will be relative only to time worked today.
31386See `timeclock-relative' for more information about the meaning of 31368See `timeclock-relative' for more information about the meaning of
31387\"relative to today\". 31369\"relative to today\".
31388 31370
31389(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil) 31371(fn &optional SHOW-SECONDS TODAY-ONLY)" t)
31390(autoload 'timeclock-workday-elapsed-string "timeclock" "\ 31372(autoload 'timeclock-workday-elapsed-string "timeclock" "\
31391Return a string representing the amount of time worked today. 31373Return a string representing the amount of time worked today.
31392Display seconds resolution if SHOW-SECONDS is non-nil. If RELATIVE is 31374Display seconds resolution if SHOW-SECONDS is non-nil. If RELATIVE is
31393non-nil, the amount returned will be relative to past time worked. 31375non-nil, the amount returned will be relative to past time worked.
31394 31376
31395(fn &optional SHOW-SECONDS)" t nil) 31377(fn &optional SHOW-SECONDS)" t)
31396(autoload 'timeclock-when-to-leave-string "timeclock" "\ 31378(autoload 'timeclock-when-to-leave-string "timeclock" "\
31397Return a string representing the end of today's workday. 31379Return a string representing the end of today's workday.
31398This string is relative to the value of `timeclock-workday'. If 31380This string is relative to the value of `timeclock-workday'. If
@@ -31400,7 +31382,7 @@ SHOW-SECONDS is non-nil, the value printed/returned will include
31400seconds. If TODAY-ONLY is non-nil, the value returned will be 31382seconds. If TODAY-ONLY is non-nil, the value returned will be
31401relative only to the time worked today, and not to past time. 31383relative only to the time worked today, and not to past time.
31402 31384
31403(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil) 31385(fn &optional SHOW-SECONDS TODAY-ONLY)" t)
31404(register-definition-prefixes "timeclock" '("timeclock-")) 31386(register-definition-prefixes "timeclock" '("timeclock-"))
31405 31387
31406 31388
@@ -31409,7 +31391,7 @@ relative only to the time worked today, and not to past time.
31409(autoload 'list-timers "timer-list" "\ 31391(autoload 'list-timers "timer-list" "\
31410List all timers in a buffer. 31392List all timers in a buffer.
31411 31393
31412(fn &optional IGNORE-AUTO NONCONFIRM)" t nil) 31394(fn &optional IGNORE-AUTO NONCONFIRM)" t)
31413 (put 'list-timers 'disabled "Beware: manually canceling timers can ruin your Emacs session.") 31395 (put 'list-timers 'disabled "Beware: manually canceling timers can ruin your Emacs session.")
31414(register-definition-prefixes "timer-list" '("timer-list-")) 31396(register-definition-prefixes "timer-list" '("timer-list-"))
31415 31397
@@ -31426,7 +31408,7 @@ Convert a TIT dictionary of FILENAME into a Quail package.
31426Optional argument DIRNAME if specified is the directory name under which 31408Optional argument DIRNAME if specified is the directory name under which
31427the generated Quail package is saved. 31409the generated Quail package is saved.
31428 31410
31429(fn FILENAME &optional DIRNAME)" t nil) 31411(fn FILENAME &optional DIRNAME)" t)
31430(autoload 'batch-titdic-convert "titdic-cnv" "\ 31412(autoload 'batch-titdic-convert "titdic-cnv" "\
31431Run `titdic-convert' on the files remaining on the command line. 31413Run `titdic-convert' on the files remaining on the command line.
31432Use this from the command line, with `-batch'; 31414Use this from the command line, with `-batch';
@@ -31435,7 +31417,7 @@ For example, invoke \"emacs -batch -f batch-titdic-convert XXX.tit\" to
31435 generate Quail package file \"xxx.el\" from TIT dictionary file \"XXX.tit\". 31417 generate Quail package file \"xxx.el\" from TIT dictionary file \"XXX.tit\".
31436To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". 31418To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\".
31437 31419
31438(fn &optional FORCE)" nil nil) 31420(fn &optional FORCE)")
31439(register-definition-prefixes "titdic-cnv" '("batch-miscdic-convert" "ctlau-" "miscdic-convert" "pinyin-convert" "py-converter" "quail-" "quick-" "tit-" "tsang-" "ziranma-converter")) 31421(register-definition-prefixes "titdic-cnv" '("batch-miscdic-convert" "ctlau-" "miscdic-convert" "pinyin-convert" "py-converter" "quail-" "quick-" "tit-" "tsang-" "ziranma-converter"))
31440 31422
31441 31423
@@ -31452,14 +31434,14 @@ Note that \\[menu-bar-open] by default drops down TTY menus; if you want it
31452to invoke `tmm-menubar' instead, customize the variable 31434to invoke `tmm-menubar' instead, customize the variable
31453`tty-menu-open-use-tmm' to a non-nil value. 31435`tty-menu-open-use-tmm' to a non-nil value.
31454 31436
31455(fn &optional X-POSITION)" t nil) 31437(fn &optional X-POSITION)" t)
31456(autoload 'tmm-menubar-mouse "tmm" "\ 31438(autoload 'tmm-menubar-mouse "tmm" "\
31457Text-mode emulation of looking and choosing from a menubar. 31439Text-mode emulation of looking and choosing from a menubar.
31458This command is used when you click the mouse in the menubar 31440This command is used when you click the mouse in the menubar
31459on a console which has no window system but does have a mouse. 31441on a console which has no window system but does have a mouse.
31460See the documentation for `tmm-prompt'. 31442See the documentation for `tmm-prompt'.
31461 31443
31462(fn EVENT)" t nil) 31444(fn EVENT)" t)
31463(autoload 'tmm-prompt "tmm" "\ 31445(autoload 'tmm-prompt "tmm" "\
31464Text-mode emulation of calling the bindings in keymap. 31446Text-mode emulation of calling the bindings in keymap.
31465Creates a text-mode menu of possible choices. You can access the elements 31447Creates a text-mode menu of possible choices. You can access the elements
@@ -31475,7 +31457,7 @@ Its value should be an event that has a binding in MENU.
31475NO-EXECUTE, if non-nil, means to return the command the user selects 31457NO-EXECUTE, if non-nil, means to return the command the user selects
31476instead of executing it. 31458instead of executing it.
31477 31459
31478(fn MENU &optional IN-POPUP DEFAULT-ITEM NO-EXECUTE)" nil nil) 31460(fn MENU &optional IN-POPUP DEFAULT-ITEM NO-EXECUTE)")
31479(register-definition-prefixes "tmm" '("tmm-")) 31461(register-definition-prefixes "tmm" '("tmm-"))
31480 31462
31481 31463
@@ -31518,25 +31500,25 @@ by default. The done items are hidden, but typing
31518items. With non-nil user option `todo-show-with-done' both todo 31500items. With non-nil user option `todo-show-with-done' both todo
31519and done items are always shown on visiting a category. 31501and done items are always shown on visiting a category.
31520 31502
31521(fn &optional SOLICIT-FILE INTERACTIVE)" t nil) 31503(fn &optional SOLICIT-FILE INTERACTIVE)" t)
31522(autoload 'todo-mode "todo-mode" "\ 31504(autoload 'todo-mode "todo-mode" "\
31523Major mode for displaying, navigating and editing todo lists. 31505Major mode for displaying, navigating and editing todo lists.
31524 31506
31525\\{todo-mode-map} 31507\\{todo-mode-map}
31526 31508
31527(fn)" t nil) 31509(fn)" t)
31528(autoload 'todo-archive-mode "todo-mode" "\ 31510(autoload 'todo-archive-mode "todo-mode" "\
31529Major mode for archived todo categories. 31511Major mode for archived todo categories.
31530 31512
31531\\{todo-archive-mode-map} 31513\\{todo-archive-mode-map}
31532 31514
31533(fn)" t nil) 31515(fn)" t)
31534(autoload 'todo-filtered-items-mode "todo-mode" "\ 31516(autoload 'todo-filtered-items-mode "todo-mode" "\
31535Mode for displaying and reprioritizing top priority Todo. 31517Mode for displaying and reprioritizing top priority Todo.
31536 31518
31537\\{todo-filtered-items-mode-map} 31519\\{todo-filtered-items-mode-map}
31538 31520
31539(fn)" t nil) 31521(fn)" t)
31540(register-definition-prefixes "todo-mode" '("todo-")) 31522(register-definition-prefixes "todo-mode" '("todo-"))
31541 31523
31542 31524
@@ -31546,7 +31528,7 @@ Mode for displaying and reprioritizing top priority Todo.
31546Toggle tool bar on or off, based on the status of the current frame. 31528Toggle tool bar on or off, based on the status of the current frame.
31547See `tool-bar-mode' for more information. 31529See `tool-bar-mode' for more information.
31548 31530
31549(fn &optional ARG)" t nil) 31531(fn &optional ARG)" t)
31550(autoload 'tool-bar-add-item "tool-bar" "\ 31532(autoload 'tool-bar-add-item "tool-bar" "\
31551Add an item to the tool bar. 31533Add an item to the tool bar.
31552ICON names the image, DEF is the key definition and KEY is a symbol 31534ICON names the image, DEF is the key definition and KEY is a symbol
@@ -31562,7 +31544,7 @@ ICON.xbm, using `find-image'.
31562Use this function only to make bindings in the global value of `tool-bar-map'. 31544Use this function only to make bindings in the global value of `tool-bar-map'.
31563To define items in any other map, use `tool-bar-local-item'. 31545To define items in any other map, use `tool-bar-local-item'.
31564 31546
31565(fn ICON DEF KEY &rest PROPS)" nil nil) 31547(fn ICON DEF KEY &rest PROPS)")
31566(autoload 'tool-bar-local-item "tool-bar" "\ 31548(autoload 'tool-bar-local-item "tool-bar" "\
31567Add an item to the tool bar in map MAP. 31549Add an item to the tool bar in map MAP.
31568ICON names the image, DEF is the key definition and KEY is a symbol 31550ICON names the image, DEF is the key definition and KEY is a symbol
@@ -31575,7 +31557,7 @@ function will first try to use low-color/ICON.xpm if `display-color-cells'
31575is less or equal to 256, then ICON.xpm, then ICON.pbm, and finally 31557is less or equal to 256, then ICON.xpm, then ICON.pbm, and finally
31576ICON.xbm, using `find-image'. 31558ICON.xbm, using `find-image'.
31577 31559
31578(fn ICON DEF KEY MAP &rest PROPS)" nil nil) 31560(fn ICON DEF KEY MAP &rest PROPS)")
31579(autoload 'tool-bar-add-item-from-menu "tool-bar" "\ 31561(autoload 'tool-bar-add-item-from-menu "tool-bar" "\
31580Define tool bar binding for COMMAND in keymap MAP using the given ICON. 31562Define tool bar binding for COMMAND in keymap MAP using the given ICON.
31581This makes a binding for COMMAND in `tool-bar-map', copying its 31563This makes a binding for COMMAND in `tool-bar-map', copying its
@@ -31589,7 +31571,7 @@ MAP must contain appropriate binding for `[menu-bar]' which holds a keymap.
31589Use this function only to make bindings in the global value of `tool-bar-map'. 31571Use this function only to make bindings in the global value of `tool-bar-map'.
31590To define items in any other map, use `tool-bar-local-item-from-menu'. 31572To define items in any other map, use `tool-bar-local-item-from-menu'.
31591 31573
31592(fn COMMAND ICON &optional MAP &rest PROPS)" nil nil) 31574(fn COMMAND ICON &optional MAP &rest PROPS)")
31593(autoload 'tool-bar-local-item-from-menu "tool-bar" "\ 31575(autoload 'tool-bar-local-item-from-menu "tool-bar" "\
31594Define local tool bar binding for COMMAND using the given ICON. 31576Define local tool bar binding for COMMAND using the given ICON.
31595This makes a binding for COMMAND in IN-MAP, copying its binding from 31577This makes a binding for COMMAND in IN-MAP, copying its binding from
@@ -31601,7 +31583,7 @@ properties to add to the binding.
31601FROM-MAP must contain appropriate binding for `[menu-bar]' which 31583FROM-MAP must contain appropriate binding for `[menu-bar]' which
31602holds a keymap. 31584holds a keymap.
31603 31585
31604(fn COMMAND ICON IN-MAP &optional FROM-MAP &rest PROPS)" nil nil) 31586(fn COMMAND ICON IN-MAP &optional FROM-MAP &rest PROPS)")
31605(register-definition-prefixes "tool-bar" '("toggle-tool-bar-mode-from-frame" "tool-bar-")) 31587(register-definition-prefixes "tool-bar" '("toggle-tool-bar-mode-from-frame" "tool-bar-"))
31606 31588
31607 31589
@@ -31618,7 +31600,7 @@ PROCESS should be a subprocess capable of sending and receiving
31618streams of bytes. It may be a local process, or it may be connected 31600streams of bytes. It may be a local process, or it may be connected
31619to a tcp server on another machine. 31601to a tcp server on another machine.
31620 31602
31621(fn PROCESS)" nil nil) 31603(fn PROCESS)")
31622(register-definition-prefixes "tq" '("tq-")) 31604(register-definition-prefixes "tq" '("tq-"))
31623 31605
31624 31606
@@ -31631,7 +31613,7 @@ Trace output will by default go to that buffer.")
31631Helper function to get internal values. 31613Helper function to get internal values.
31632You can call this function to add internal values in the trace buffer. 31614You can call this function to add internal values in the trace buffer.
31633 31615
31634(fn &rest VALUES)" nil nil) 31616(fn &rest VALUES)")
31635(autoload 'trace-function-foreground "trace" "\ 31617(autoload 'trace-function-foreground "trace" "\
31636Trace calls to function FUNCTION. 31618Trace calls to function FUNCTION.
31637With a prefix argument, also prompt for the trace buffer (default 31619With a prefix argument, also prompt for the trace buffer (default
@@ -31652,13 +31634,13 @@ stuff - use `trace-function-background' instead.
31652 31634
31653To stop tracing a function, use `untrace-function' or `untrace-all'. 31635To stop tracing a function, use `untrace-function' or `untrace-all'.
31654 31636
31655(fn FUNCTION &optional BUFFER CONTEXT)" t nil) 31637(fn FUNCTION &optional BUFFER CONTEXT)" t)
31656(autoload 'trace-function-background "trace" "\ 31638(autoload 'trace-function-background "trace" "\
31657Trace calls to function FUNCTION, quietly. 31639Trace calls to function FUNCTION, quietly.
31658This is like `trace-function-foreground', but without popping up 31640This is like `trace-function-foreground', but without popping up
31659the output buffer or changing the window configuration. 31641the output buffer or changing the window configuration.
31660 31642
31661(fn FUNCTION &optional BUFFER CONTEXT)" t nil) 31643(fn FUNCTION &optional BUFFER CONTEXT)" t)
31662(defalias 'trace-function 'trace-function-foreground) 31644(defalias 'trace-function 'trace-function-foreground)
31663(register-definition-prefixes "trace" '("inhibit-trace" "trace-" "untrace-")) 31645(register-definition-prefixes "trace" '("inhibit-trace" "trace-" "untrace-"))
31664 31646
@@ -31695,7 +31677,7 @@ calling HANDLER.")
31695Invoke Tramp file name handler for OPERATION and ARGS. 31677Invoke Tramp file name handler for OPERATION and ARGS.
31696Fall back to normal file name handler if no Tramp file name handler exists. 31678Fall back to normal file name handler if no Tramp file name handler exists.
31697 31679
31698(fn OPERATION &rest ARGS)" nil nil) 31680(fn OPERATION &rest ARGS)")
31699(defun tramp-autoload-file-name-handler (operation &rest args) "\ 31681(defun tramp-autoload-file-name-handler (operation &rest args) "\
31700Load Tramp file name handler, and perform OPERATION." (tramp-unload-file-name-handlers) (when tramp-mode (let ((default-directory temporary-file-directory)) (when (bound-and-true-p tramp-archive-autoload) (load "tramp-archive" 'noerror 'nomessage)) (load "tramp" 'noerror 'nomessage))) (apply operation args)) 31682Load Tramp file name handler, and perform OPERATION." (tramp-unload-file-name-handlers) (when tramp-mode (let ((default-directory temporary-file-directory)) (when (bound-and-true-p tramp-archive-autoload) (load "tramp-archive" 'noerror 'nomessage)) (load "tramp" 'noerror 'nomessage))) (apply operation args))
31701(defun tramp-register-autoload-file-name-handlers nil "\ 31683(defun tramp-register-autoload-file-name-handlers nil "\
@@ -31725,7 +31707,7 @@ List of suffixes which indicate a compressed file.
31725It must be supported by libarchive(3).") 31707It must be supported by libarchive(3).")
31726(defmacro tramp-archive-autoload-file-name-regexp nil "\ 31708(defmacro tramp-archive-autoload-file-name-regexp nil "\
31727Regular expression matching archive file names." '(concat "\\`" "\\(" ".+" "\\." (regexp-opt tramp-archive-suffixes) "\\(?:" "\\." (regexp-opt tramp-archive-compression-suffixes) "\\)*" "\\)" "\\(" "/" ".*" "\\)" "\\'")) 31709Regular expression matching archive file names." '(concat "\\`" "\\(" ".+" "\\." (regexp-opt tramp-archive-suffixes) "\\(?:" "\\." (regexp-opt tramp-archive-compression-suffixes) "\\)*" "\\)" "\\(" "/" ".*" "\\)" "\\'"))
31728(autoload 'tramp-archive-file-name-handler "tramp-archine") 31710(autoload 'tramp-archive-file-name-handler "tramp-archive")
31729(defun tramp-archive-autoload-file-name-handler (operation &rest args) "\ 31711(defun tramp-archive-autoload-file-name-handler (operation &rest args) "\
31730Load Tramp archive file name handler, and perform OPERATION." (defvar tramp-archive-autoload) (let ((default-directory temporary-file-directory) (tramp-archive-autoload tramp-archive-enabled)) (apply #'tramp-autoload-file-name-handler operation args))) 31712Load Tramp archive file name handler, and perform OPERATION." (defvar tramp-archive-autoload) (let ((default-directory temporary-file-directory) (tramp-archive-autoload tramp-archive-enabled)) (apply #'tramp-autoload-file-name-handler operation args)))
31731(defun tramp-register-archive-file-name-handler nil "\ 31713(defun tramp-register-archive-file-name-handler nil "\
@@ -31867,7 +31849,7 @@ Remove a conflicting binding unless optional KEEP-OTHER is
31867 non-nil. 31849 non-nil.
31868See info node `(transient)Modifying Existing Transients'. 31850See info node `(transient)Modifying Existing Transients'.
31869 31851
31870(fn PREFIX LOC SUFFIX &optional KEEP-OTHER)" nil nil) 31852(fn PREFIX LOC SUFFIX &optional KEEP-OTHER)")
31871(function-put 'transient-insert-suffix 'lisp-indent-function 'defun) 31853(function-put 'transient-insert-suffix 'lisp-indent-function 'defun)
31872(autoload 'transient-append-suffix "transient" "\ 31854(autoload 'transient-append-suffix "transient" "\
31873Insert a SUFFIX into PREFIX after LOC. 31855Insert a SUFFIX into PREFIX after LOC.
@@ -31881,7 +31863,7 @@ Remove a conflicting binding unless optional KEEP-OTHER is
31881 non-nil. 31863 non-nil.
31882See info node `(transient)Modifying Existing Transients'. 31864See info node `(transient)Modifying Existing Transients'.
31883 31865
31884(fn PREFIX LOC SUFFIX &optional KEEP-OTHER)" nil nil) 31866(fn PREFIX LOC SUFFIX &optional KEEP-OTHER)")
31885(function-put 'transient-append-suffix 'lisp-indent-function 'defun) 31867(function-put 'transient-append-suffix 'lisp-indent-function 'defun)
31886(autoload 'transient-replace-suffix "transient" "\ 31868(autoload 'transient-replace-suffix "transient" "\
31887Replace the suffix at LOC in PREFIX with SUFFIX. 31869Replace the suffix at LOC in PREFIX with SUFFIX.
@@ -31893,7 +31875,7 @@ LOC is a command, a key vector, a key description (a string
31893 (whose last element may also be a command or key). 31875 (whose last element may also be a command or key).
31894See info node `(transient)Modifying Existing Transients'. 31876See info node `(transient)Modifying Existing Transients'.
31895 31877
31896(fn PREFIX LOC SUFFIX)" nil nil) 31878(fn PREFIX LOC SUFFIX)")
31897(function-put 'transient-replace-suffix 'lisp-indent-function 'defun) 31879(function-put 'transient-replace-suffix 'lisp-indent-function 'defun)
31898(autoload 'transient-remove-suffix "transient" "\ 31880(autoload 'transient-remove-suffix "transient" "\
31899Remove the suffix or group at LOC in PREFIX. 31881Remove the suffix or group at LOC in PREFIX.
@@ -31903,9 +31885,9 @@ LOC is a command, a key vector, a key description (a string
31903 (whose last element may also be a command or key). 31885 (whose last element may also be a command or key).
31904See info node `(transient)Modifying Existing Transients'. 31886See info node `(transient)Modifying Existing Transients'.
31905 31887
31906(fn PREFIX LOC)" nil nil) 31888(fn PREFIX LOC)")
31907(function-put 'transient-remove-suffix 'lisp-indent-function 'defun) 31889(function-put 'transient-remove-suffix 'lisp-indent-function 'defun)
31908(register-definition-prefixes "transient" '("magit--fit-window-to-buffer" "transient")) 31890(register-definition-prefixes "transient" '("transient"))
31909 31891
31910 31892
31911;;; Generated autoloads from tree-widget.el 31893;;; Generated autoloads from tree-widget.el
@@ -31932,7 +31914,7 @@ When the tutorial buffer is killed the content and the point
31932position in the buffer is saved so that the tutorial may be 31914position in the buffer is saved so that the tutorial may be
31933resumed later. 31915resumed later.
31934 31916
31935(fn &optional ARG DONT-ASK-FOR-REVERT)" t nil) 31917(fn &optional ARG DONT-ASK-FOR-REVERT)" t)
31936(register-definition-prefixes "tutorial" '("get-lang-string" "lang-strings" "tutorial--")) 31918(register-definition-prefixes "tutorial" '("get-lang-string" "lang-strings" "tutorial--"))
31937 31919
31938 31920
@@ -31941,7 +31923,7 @@ resumed later.
31941(autoload 'tai-viet-composition-function "tv-util" "\ 31923(autoload 'tai-viet-composition-function "tv-util" "\
31942 31924
31943 31925
31944(fn FROM TO FONT-OBJECT STRING DIRECTION)" nil nil) 31926(fn FROM TO FONT-OBJECT STRING DIRECTION)")
31945(register-definition-prefixes "tv-util" '("tai-viet-")) 31927(register-definition-prefixes "tv-util" '("tai-viet-"))
31946 31928
31947 31929
@@ -31958,7 +31940,7 @@ for details.). It runs `2C-other-buffer-hook' in the new buffer.
31958When called again, restores the screen layout with the current buffer 31940When called again, restores the screen layout with the current buffer
31959first and the associated buffer to its right. 31941first and the associated buffer to its right.
31960 31942
31961(fn &optional BUFFER)" t nil) 31943(fn &optional BUFFER)" t)
31962(autoload '2C-associate-buffer "two-column" "\ 31944(autoload '2C-associate-buffer "two-column" "\
31963Associate another BUFFER with this one in two-column minor mode. 31945Associate another BUFFER with this one in two-column minor mode.
31964Can also be used to associate a just previously visited file, by 31946Can also be used to associate a just previously visited file, by
@@ -31966,7 +31948,7 @@ accepting the proposed default buffer.
31966 31948
31967(See \\[describe-mode] .) 31949(See \\[describe-mode] .)
31968 31950
31969(fn BUFFER)" t nil) 31951(fn BUFFER)" t)
31970(autoload '2C-split "two-column" "\ 31952(autoload '2C-split "two-column" "\
31971Split a two-column text at point, into two buffers in two-column minor mode. 31953Split a two-column text at point, into two buffers in two-column minor mode.
31972Point becomes the local value of `2C-window-width'. Only lines that 31954Point becomes the local value of `2C-window-width'. Only lines that
@@ -31985,7 +31967,7 @@ First column's text sSs Second column's text
31985 31967
31986(See \\[describe-mode] .) 31968(See \\[describe-mode] .)
31987 31969
31988(fn ARG)" t nil) 31970(fn ARG)" t)
31989(register-definition-prefixes "two-column" '("2C-")) 31971(register-definition-prefixes "two-column" '("2C-"))
31990 31972
31991 31973
@@ -32085,7 +32067,7 @@ evaluate `(default-value \\='type-break-mode)'.
32085The mode's hook is called both when the mode is enabled and when 32067The mode's hook is called both when the mode is enabled and when
32086it is disabled. 32068it is disabled.
32087 32069
32088(fn &optional ARG)" t nil) 32070(fn &optional ARG)" t)
32089(autoload 'type-break "type-break" "\ 32071(autoload 'type-break "type-break" "\
32090Take a typing break. 32072Take a typing break.
32091 32073
@@ -32093,11 +32075,11 @@ During the break, a demo selected from the functions listed in
32093`type-break-demo-functions' is run. 32075`type-break-demo-functions' is run.
32094 32076
32095After the typing break is finished, the next break is scheduled 32077After the typing break is finished, the next break is scheduled
32096as per the function `type-break-schedule'." t nil) 32078as per the function `type-break-schedule'." t)
32097(autoload 'type-break-statistics "type-break" "\ 32079(autoload 'type-break-statistics "type-break" "\
32098Print statistics about typing breaks in a temporary buffer. 32080Print statistics about typing breaks in a temporary buffer.
32099This includes the last time a typing break was taken, when the next one is 32081This includes the last time a typing break was taken, when the next one is
32100scheduled, the keystroke thresholds and the current keystroke count, etc." t nil) 32082scheduled, the keystroke thresholds and the current keystroke count, etc." t)
32101(autoload 'type-break-guesstimate-keystroke-threshold "type-break" "\ 32083(autoload 'type-break-guesstimate-keystroke-threshold "type-break" "\
32102Guess values for the minimum/maximum keystroke threshold for typing breaks. 32084Guess values for the minimum/maximum keystroke threshold for typing breaks.
32103 32085
@@ -32120,7 +32102,7 @@ fraction of the maximum threshold to which to set the minimum threshold.
32120FRAC should be the inverse of the fractional value; for example, a value of 32102FRAC should be the inverse of the fractional value; for example, a value of
321212 would mean to use one half, a value of 4 would mean to use one quarter, etc. 321032 would mean to use one half, a value of 4 would mean to use one quarter, etc.
32122 32104
32123(fn WPM &optional WORDLEN FRAC)" t nil) 32105(fn WPM &optional WORDLEN FRAC)" t)
32124(register-definition-prefixes "type-break" '("type-break-")) 32106(register-definition-prefixes "type-break" '("type-break-"))
32125 32107
32126 32108
@@ -32135,7 +32117,7 @@ For instance:
32135 32117
32136 (string-glyph-compose \"AÌŠ\") => \"Ã…\" 32118 (string-glyph-compose \"AÌŠ\") => \"Ã…\"
32137 32119
32138(fn STRING)" nil nil) 32120(fn STRING)")
32139(autoload 'string-glyph-decompose "ucs-normalize" "\ 32121(autoload 'string-glyph-decompose "ucs-normalize" "\
32140Decompose STRING according to the Unicode NFD. 32122Decompose STRING according to the Unicode NFD.
32141This returns a new string that is the canonical decomposition of STRING, 32123This returns a new string that is the canonical decomposition of STRING,
@@ -32143,7 +32125,7 @@ a.k.a. the \"Unicode Normalization Form D\" of STRING. For instance:
32143 32125
32144 (ucs-normalize-NFD-string \"â„«\") => \"AÌŠ\" 32126 (ucs-normalize-NFD-string \"â„«\") => \"AÌŠ\"
32145 32127
32146(fn STRING)" nil nil) 32128(fn STRING)")
32147(register-definition-prefixes "ucs-normalize" '("ucs-normalize-" "utf-8-hfs")) 32129(register-definition-prefixes "ucs-normalize" '("ucs-normalize-" "utf-8-hfs"))
32148 32130
32149 32131
@@ -32155,25 +32137,25 @@ Works by overstriking underscores.
32155Called from program, takes two arguments START and END 32137Called from program, takes two arguments START and END
32156which specify the range to operate on. 32138which specify the range to operate on.
32157 32139
32158(fn START END)" t nil) 32140(fn START END)" t)
32159(autoload 'ununderline-region "underline" "\ 32141(autoload 'ununderline-region "underline" "\
32160Remove all underlining (overstruck underscores) in the region. 32142Remove all underlining (overstruck underscores) in the region.
32161Called from program, takes two arguments START and END 32143Called from program, takes two arguments START and END
32162which specify the range to operate on. 32144which specify the range to operate on.
32163 32145
32164(fn START END)" t nil) 32146(fn START END)" t)
32165 32147
32166 32148
32167;;; Generated autoloads from mail/undigest.el 32149;;; Generated autoloads from mail/undigest.el
32168 32150
32169(autoload 'undigestify-rmail-message "undigest" "\ 32151(autoload 'undigestify-rmail-message "undigest" "\
32170Break up a digest message into its constituent messages. 32152Break up a digest message into its constituent messages.
32171Leaves original message, deleted, before the undigestified messages." t nil) 32153Leaves original message, deleted, before the undigestified messages." t)
32172(autoload 'unforward-rmail-message "undigest" "\ 32154(autoload 'unforward-rmail-message "undigest" "\
32173Extract a forwarded message from the containing message. 32155Extract a forwarded message from the containing message.
32174This puts the forwarded message into a separate rmail message following 32156This puts the forwarded message into a separate rmail message following
32175the containing message. This command is only useful when messages are 32157the containing message. This command is only useful when messages are
32176forwarded with `rmail-enable-mime-composing' set to nil." t nil) 32158forwarded with `rmail-enable-mime-composing' set to nil." t)
32177(register-definition-prefixes "undigest" '("rmail-")) 32159(register-definition-prefixes "undigest" '("rmail-"))
32178 32160
32179 32161
@@ -32186,7 +32168,7 @@ With ARG, activate UCS input method if and only if ARG is positive.
32186While this input method is active, the variable 32168While this input method is active, the variable
32187`input-method-function' is bound to the function `ucs-input-method'. 32169`input-method-function' is bound to the function `ucs-input-method'.
32188 32170
32189(fn &optional ARG)" nil nil) 32171(fn &optional ARG)")
32190(register-definition-prefixes "quail/uni-input" '("ucs-input-")) 32172(register-definition-prefixes "quail/uni-input" '("ucs-input-"))
32191 32173
32192 32174
@@ -32197,12 +32179,12 @@ Convert old-style Rmail Babyl files to mbox format.
32197Specify the input Rmail Babyl file names as command line arguments. 32179Specify the input Rmail Babyl file names as command line arguments.
32198For each Rmail file, the corresponding output file name 32180For each Rmail file, the corresponding output file name
32199is made by adding `.mail' at the end. 32181is made by adding `.mail' at the end.
32200For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil) 32182For example, invoke `emacs -batch -f batch-unrmail RMAIL'.")
32201(autoload 'unrmail "unrmail" "\ 32183(autoload 'unrmail "unrmail" "\
32202Convert old-style Rmail Babyl file FILE to mbox format file TO-FILE. 32184Convert old-style Rmail Babyl file FILE to mbox format file TO-FILE.
32203The variable `unrmail-mbox-format' controls which mbox format to use. 32185The variable `unrmail-mbox-format' controls which mbox format to use.
32204 32186
32205(fn FILE TO-FILE)" t nil) 32187(fn FILE TO-FILE)" t)
32206(register-definition-prefixes "unrmail" '("unrmail-mbox-format")) 32188(register-definition-prefixes "unrmail" '("unrmail-mbox-format"))
32207 32189
32208 32190
@@ -32213,7 +32195,7 @@ Return nil if evaluating FORM couldn't possibly do any harm.
32213Otherwise result is a reason why FORM is unsafe. 32195Otherwise result is a reason why FORM is unsafe.
32214VARS is a list of symbols with local bindings like `unsafep-vars'. 32196VARS is a list of symbols with local bindings like `unsafep-vars'.
32215 32197
32216(fn FORM &optional VARS)" nil nil) 32198(fn FORM &optional VARS)")
32217(register-definition-prefixes "unsafep" '("safe-functions" "unsafep-")) 32199(register-definition-prefixes "unsafep" '("safe-functions" "unsafep-"))
32218 32200
32219 32201
@@ -32253,7 +32235,7 @@ the server.
32253If URL is a multibyte string, it will be encoded as utf-8 and 32235If URL is a multibyte string, it will be encoded as utf-8 and
32254URL-encoded before it's used. 32236URL-encoded before it's used.
32255 32237
32256(fn URL CALLBACK &optional CBARGS SILENT INHIBIT-COOKIES)" nil nil) 32238(fn URL CALLBACK &optional CBARGS SILENT INHIBIT-COOKIES)")
32257(autoload 'url-retrieve-synchronously "url" "\ 32239(autoload 'url-retrieve-synchronously "url" "\
32258Retrieve URL synchronously. 32240Retrieve URL synchronously.
32259Return the buffer containing the data, or nil if there are no data 32241Return the buffer containing the data, or nil if there are no data
@@ -32265,7 +32247,7 @@ If INHIBIT-COOKIES is non-nil, refuse to store cookies. If
32265TIMEOUT is passed, it should be a number that says (in seconds) 32247TIMEOUT is passed, it should be a number that says (in seconds)
32266how long to wait for a response before giving up. 32248how long to wait for a response before giving up.
32267 32249
32268(fn URL &optional SILENT INHIBIT-COOKIES TIMEOUT)" nil nil) 32250(fn URL &optional SILENT INHIBIT-COOKIES TIMEOUT)")
32269(register-definition-prefixes "url" '("url-")) 32251(register-definition-prefixes "url" '("url-"))
32270 32252
32271 32253
@@ -32290,7 +32272,7 @@ TYPE is the type of authentication to be returned. This is either a string
32290PROMPT is boolean - specifies whether to ask the user for a username/password 32272PROMPT is boolean - specifies whether to ask the user for a username/password
32291 if one cannot be found in the cache 32273 if one cannot be found in the cache
32292 32274
32293(fn URL REALM TYPE PROMPT &optional ARGS)" nil nil) 32275(fn URL REALM TYPE PROMPT &optional ARGS)")
32294(autoload 'url-register-auth-scheme "url-auth" "\ 32276(autoload 'url-register-auth-scheme "url-auth" "\
32295Register an HTTP authentication method. 32277Register an HTTP authentication method.
32296 32278
@@ -32303,7 +32285,7 @@ RATING a rating between 1 and 10 of the strength of the authentication.
32303 This is used when asking for the best authentication for a specific 32285 This is used when asking for the best authentication for a specific
32304 URL. The item with the highest rating is returned. 32286 URL. The item with the highest rating is returned.
32305 32287
32306(fn TYPE &optional FUNCTION RATING)" nil nil) 32288(fn TYPE &optional FUNCTION RATING)")
32307(register-definition-prefixes "url-auth" '("url-")) 32289(register-definition-prefixes "url-auth" '("url-"))
32308 32290
32309 32291
@@ -32312,16 +32294,16 @@ RATING a rating between 1 and 10 of the strength of the authentication.
32312(autoload 'url-store-in-cache "url-cache" "\ 32294(autoload 'url-store-in-cache "url-cache" "\
32313Store buffer BUFF in the cache. 32295Store buffer BUFF in the cache.
32314 32296
32315(fn &optional BUFF)" nil nil) 32297(fn &optional BUFF)")
32316(autoload 'url-is-cached "url-cache" "\ 32298(autoload 'url-is-cached "url-cache" "\
32317Return non-nil if the URL is cached. 32299Return non-nil if the URL is cached.
32318The actual return value is the last modification time of the cache file. 32300The actual return value is the last modification time of the cache file.
32319 32301
32320(fn URL)" nil nil) 32302(fn URL)")
32321(autoload 'url-cache-extract "url-cache" "\ 32303(autoload 'url-cache-extract "url-cache" "\
32322Extract FNAM from the local disk cache. 32304Extract FNAM from the local disk cache.
32323 32305
32324(fn FNAM)" nil nil) 32306(fn FNAM)")
32325(register-definition-prefixes "url-cache" '("url-")) 32307(register-definition-prefixes "url-cache" '("url-"))
32326 32308
32327 32309
@@ -32330,7 +32312,7 @@ Extract FNAM from the local disk cache.
32330(autoload 'url-cid "url-cid" "\ 32312(autoload 'url-cid "url-cid" "\
32331 32313
32332 32314
32333(fn URL)" nil nil) 32315(fn URL)")
32334(register-definition-prefixes "url-cid" '("url-cid-gnus")) 32316(register-definition-prefixes "url-cid" '("url-cid-gnus"))
32335 32317
32336 32318
@@ -32345,7 +32327,7 @@ Extract FNAM from the local disk cache.
32345Return WebDAV protocol version supported by URL. 32327Return WebDAV protocol version supported by URL.
32346Returns nil if WebDAV is not supported. 32328Returns nil if WebDAV is not supported.
32347 32329
32348(fn URL)" nil nil) 32330(fn URL)")
32349(autoload 'url-dav-request "url-dav" "\ 32331(autoload 'url-dav-request "url-dav" "\
32350Perform WebDAV operation METHOD on URL. Return the parsed responses. 32332Perform WebDAV operation METHOD on URL. Return the parsed responses.
32351Automatically creates an XML request body if TAG is non-nil. 32333Automatically creates an XML request body if TAG is non-nil.
@@ -32362,11 +32344,11 @@ NAMESPACES is an assoc list of (NAMESPACE . EXPANSION), and these are
32362added to the <TAG> element. The DAV=DAV: namespace is automatically 32344added to the <TAG> element. The DAV=DAV: namespace is automatically
32363added to this list, so most requests can just pass in nil. 32345added to this list, so most requests can just pass in nil.
32364 32346
32365(fn URL METHOD TAG BODY &optional DEPTH HEADERS NAMESPACES)" nil nil) 32347(fn URL METHOD TAG BODY &optional DEPTH HEADERS NAMESPACES)")
32366(autoload 'url-dav-vc-registered "url-dav" "\ 32348(autoload 'url-dav-vc-registered "url-dav" "\
32367 32349
32368 32350
32369(fn URL)" nil nil) 32351(fn URL)")
32370(register-definition-prefixes "url-dav" '("url-dav-")) 32352(register-definition-prefixes "url-dav" '("url-dav-"))
32371 32353
32372 32354
@@ -32385,7 +32367,7 @@ added to this list, so most requests can just pass in nil.
32385(autoload 'url-file "url-file" "\ 32367(autoload 'url-file "url-file" "\
32386Handle file: and ftp: URLs. 32368Handle file: and ftp: URLs.
32387 32369
32388(fn URL CALLBACK CBARGS)" nil nil) 32370(fn URL CALLBACK CBARGS)")
32389(register-definition-prefixes "url-file" '("url-")) 32371(register-definition-prefixes "url-file" '("url-"))
32390 32372
32391 32373
@@ -32404,7 +32386,7 @@ Handle file: and ftp: URLs.
32404(autoload 'url-gateway-nslookup-host "url-gw" "\ 32386(autoload 'url-gateway-nslookup-host "url-gw" "\
32405Attempt to resolve the given HOST using nslookup if possible. 32387Attempt to resolve the given HOST using nslookup if possible.
32406 32388
32407(fn HOST)" t nil) 32389(fn HOST)" t)
32408(autoload 'url-open-stream "url-gw" "\ 32390(autoload 'url-open-stream "url-gw" "\
32409Open a stream to HOST, possibly via a gateway. 32391Open a stream to HOST, possibly via a gateway.
32410Args per `open-network-stream'. 32392Args per `open-network-stream'.
@@ -32414,7 +32396,7 @@ Might do a non-blocking connection; use `process-status' to check.
32414Optional arg GATEWAY-METHOD specifies the gateway to be used, 32396Optional arg GATEWAY-METHOD specifies the gateway to be used,
32415overriding the value of `url-gateway-method'. 32397overriding the value of `url-gateway-method'.
32416 32398
32417(fn NAME BUFFER HOST SERVICE &optional GATEWAY-METHOD)" nil nil) 32399(fn NAME BUFFER HOST SERVICE &optional GATEWAY-METHOD)")
32418(register-definition-prefixes "url-gw" '("url-")) 32400(register-definition-prefixes "url-gw" '("url-"))
32419 32401
32420 32402
@@ -32454,13 +32436,13 @@ evaluate `(default-value \\='url-handler-mode)'.
32454The mode's hook is called both when the mode is enabled and when 32436The mode's hook is called both when the mode is enabled and when
32455it is disabled. 32437it is disabled.
32456 32438
32457(fn &optional ARG)" t nil) 32439(fn &optional ARG)" t)
32458(autoload 'url-file-handler "url-handlers" "\ 32440(autoload 'url-file-handler "url-handlers" "\
32459Function called from the `file-name-handler-alist' routines. 32441Function called from the `file-name-handler-alist' routines.
32460OPERATION is what needs to be done (`file-exists-p', etc.). 32442OPERATION is what needs to be done (`file-exists-p', etc.).
32461ARGS are the arguments that would have been passed to OPERATION. 32443ARGS are the arguments that would have been passed to OPERATION.
32462 32444
32463(fn OPERATION &rest ARGS)" nil nil) 32445(fn OPERATION &rest ARGS)")
32464(autoload 'url-copy-file "url-handlers" "\ 32446(autoload 'url-copy-file "url-handlers" "\
32465Copy URL to NEWNAME. Both arguments must be strings. 32447Copy URL to NEWNAME. Both arguments must be strings.
32466Signal a `file-already-exists' error if file NEWNAME already 32448Signal a `file-already-exists' error if file NEWNAME already
@@ -32468,23 +32450,23 @@ exists, unless a third argument OK-IF-ALREADY-EXISTS is supplied
32468and non-nil. An integer as third argument means request 32450and non-nil. An integer as third argument means request
32469confirmation if NEWNAME already exists. 32451confirmation if NEWNAME already exists.
32470 32452
32471(fn URL NEWNAME &optional OK-IF-ALREADY-EXISTS &rest IGNORED)" nil nil) 32453(fn URL NEWNAME &optional OK-IF-ALREADY-EXISTS &rest IGNORED)")
32472(autoload 'url-file-local-copy "url-handlers" "\ 32454(autoload 'url-file-local-copy "url-handlers" "\
32473Copy URL into a temporary file on this machine. 32455Copy URL into a temporary file on this machine.
32474Returns the name of the local copy, or nil, if FILE is directly 32456Returns the name of the local copy, or nil, if FILE is directly
32475accessible. 32457accessible.
32476 32458
32477(fn URL &rest IGNORED)" nil nil) 32459(fn URL &rest IGNORED)")
32478(autoload 'url-insert-buffer-contents "url-handlers" "\ 32460(autoload 'url-insert-buffer-contents "url-handlers" "\
32479Insert the contents of BUFFER into current buffer. 32461Insert the contents of BUFFER into current buffer.
32480This is like `url-insert', but also decodes the current buffer as 32462This is like `url-insert', but also decodes the current buffer as
32481if it had been inserted from a file named URL. 32463if it had been inserted from a file named URL.
32482 32464
32483(fn BUFFER URL &optional VISIT BEG END REPLACE)" nil nil) 32465(fn BUFFER URL &optional VISIT BEG END REPLACE)")
32484(autoload 'url-insert-file-contents "url-handlers" "\ 32466(autoload 'url-insert-file-contents "url-handlers" "\
32485 32467
32486 32468
32487(fn URL &optional VISIT BEG END REPLACE)" nil nil) 32469(fn URL &optional VISIT BEG END REPLACE)")
32488(register-definition-prefixes "url-handlers" '("url-")) 32470(register-definition-prefixes "url-handlers" '("url-"))
32489 32471
32490 32472
@@ -32514,7 +32496,7 @@ if it had been inserted from a file named URL.
32514(autoload 'url-irc "url-irc" "\ 32496(autoload 'url-irc "url-irc" "\
32515 32497
32516 32498
32517(fn URL)" nil nil) 32499(fn URL)")
32518(register-definition-prefixes "url-irc" '("url-irc-")) 32500(register-definition-prefixes "url-irc" '("url-irc-"))
32519 32501
32520 32502
@@ -32526,7 +32508,7 @@ The return value is a buffer displaying the search results in HTML.
32526URL can be a URL string, or a URL record of the type returned by 32508URL can be a URL string, or a URL record of the type returned by
32527`url-generic-parse-url'. 32509`url-generic-parse-url'.
32528 32510
32529(fn URL)" nil nil) 32511(fn URL)")
32530(register-definition-prefixes "url-ldap" '("url-ldap-")) 32512(register-definition-prefixes "url-ldap" '("url-ldap-"))
32531 32513
32532 32514
@@ -32535,11 +32517,11 @@ URL can be a URL string, or a URL record of the type returned by
32535(autoload 'url-mail "url-mailto" "\ 32517(autoload 'url-mail "url-mailto" "\
32536 32518
32537 32519
32538(fn &rest ARGS)" t nil) 32520(fn &rest ARGS)" t)
32539(autoload 'url-mailto "url-mailto" "\ 32521(autoload 'url-mailto "url-mailto" "\
32540Handle the mailto: URL syntax. 32522Handle the mailto: URL syntax.
32541 32523
32542(fn URL)" nil nil) 32524(fn URL)")
32543(register-definition-prefixes "url-mailto" '("url-mail-goto-field")) 32525(register-definition-prefixes "url-mailto" '("url-mail-goto-field"))
32544 32526
32545 32527
@@ -32553,22 +32535,22 @@ Handle the mailto: URL syntax.
32553(autoload 'url-man "url-misc" "\ 32535(autoload 'url-man "url-misc" "\
32554Fetch a Unix manual page URL. 32536Fetch a Unix manual page URL.
32555 32537
32556(fn URL)" nil nil) 32538(fn URL)")
32557(autoload 'url-info "url-misc" "\ 32539(autoload 'url-info "url-misc" "\
32558Fetch a GNU Info URL. 32540Fetch a GNU Info URL.
32559 32541
32560(fn URL)" nil nil) 32542(fn URL)")
32561(autoload 'url-generic-emulator-loader "url-misc" "\ 32543(autoload 'url-generic-emulator-loader "url-misc" "\
32562 32544
32563 32545
32564(fn URL)" nil nil) 32546(fn URL)")
32565(defalias 'url-rlogin 'url-generic-emulator-loader) 32547(defalias 'url-rlogin 'url-generic-emulator-loader)
32566(defalias 'url-telnet 'url-generic-emulator-loader) 32548(defalias 'url-telnet 'url-generic-emulator-loader)
32567(defalias 'url-tn3270 'url-generic-emulator-loader) 32549(defalias 'url-tn3270 'url-generic-emulator-loader)
32568(autoload 'url-data "url-misc" "\ 32550(autoload 'url-data "url-misc" "\
32569Fetch a data URL (RFC 2397). 32551Fetch a data URL (RFC 2397).
32570 32552
32571(fn URL)" nil nil) 32553(fn URL)")
32572(register-definition-prefixes "url-misc" '("url-do-terminal-emulator")) 32554(register-definition-prefixes "url-misc" '("url-do-terminal-emulator"))
32573 32555
32574 32556
@@ -32577,11 +32559,11 @@ Fetch a data URL (RFC 2397).
32577(autoload 'url-news "url-news" "\ 32559(autoload 'url-news "url-news" "\
32578 32560
32579 32561
32580(fn URL)" nil nil) 32562(fn URL)")
32581(autoload 'url-snews "url-news" "\ 32563(autoload 'url-snews "url-news" "\
32582 32564
32583 32565
32584(fn URL)" nil nil) 32566(fn URL)")
32585(register-definition-prefixes "url-news" '("url-news-")) 32567(register-definition-prefixes "url-news" '("url-news-"))
32586 32568
32587 32569
@@ -32595,7 +32577,7 @@ Fetch a data URL (RFC 2397).
32595(autoload 'url-recreate-url "url-parse" "\ 32577(autoload 'url-recreate-url "url-parse" "\
32596Recreate a URL string from the parsed URLOBJ. 32578Recreate a URL string from the parsed URLOBJ.
32597 32579
32598(fn URLOBJ)" nil nil) 32580(fn URLOBJ)")
32599(autoload 'url-generic-parse-url "url-parse" "\ 32581(autoload 'url-generic-parse-url "url-parse" "\
32600Return an URL-struct of the parts of URL. 32582Return an URL-struct of the parts of URL.
32601The CL-style struct contains the following fields: 32583The CL-style struct contains the following fields:
@@ -32635,14 +32617,14 @@ parses to
32635 ATTRIBUTES = nil 32617 ATTRIBUTES = nil
32636 FULLNESS = t 32618 FULLNESS = t
32637 32619
32638(fn URL)" nil nil) 32620(fn URL)")
32639(register-definition-prefixes "url-parse" '("url-")) 32621(register-definition-prefixes "url-parse" '("url-"))
32640 32622
32641 32623
32642;;; Generated autoloads from url/url-privacy.el 32624;;; Generated autoloads from url/url-privacy.el
32643 32625
32644(autoload 'url-setup-privacy-info "url-privacy" "\ 32626(autoload 'url-setup-privacy-info "url-privacy" "\
32645Setup variables that expose info about you and your system." t nil) 32627Setup variables that expose info about you and your system." t)
32646(register-definition-prefixes "url-privacy" '("url-device-type")) 32628(register-definition-prefixes "url-privacy" '("url-device-type"))
32647 32629
32648 32630
@@ -32660,7 +32642,7 @@ but with limits on the degree of parallelism. The variable
32660`url-queue-parallel-processes' sets the number of concurrent processes. 32642`url-queue-parallel-processes' sets the number of concurrent processes.
32661The variable `url-queue-timeout' sets a timeout. 32643The variable `url-queue-timeout' sets a timeout.
32662 32644
32663(fn URL CALLBACK &optional CBARGS SILENT INHIBIT-COOKIES)" nil nil) 32645(fn URL CALLBACK &optional CBARGS SILENT INHIBIT-COOKIES)")
32664(register-definition-prefixes "url-queue" '("url-queue")) 32646(register-definition-prefixes "url-queue" '("url-queue"))
32665 32647
32666 32648
@@ -32675,7 +32657,7 @@ Function called from the `file-name-handler-alist' routines.
32675OPERATION is what needs to be done. ARGS are the arguments that 32657OPERATION is what needs to be done. ARGS are the arguments that
32676would have been passed to OPERATION. 32658would have been passed to OPERATION.
32677 32659
32678(fn OPERATION &rest ARGS)" nil nil) 32660(fn OPERATION &rest ARGS)")
32679(register-definition-prefixes "url-tramp" '("url-tramp-convert-")) 32661(register-definition-prefixes "url-tramp" '("url-tramp-convert-"))
32680 32662
32681 32663
@@ -32692,11 +32674,11 @@ If a list, it is a list of the types of messages to be logged.")
32692(autoload 'url-debug "url-util" "\ 32674(autoload 'url-debug "url-util" "\
32693 32675
32694 32676
32695(fn TAG &rest ARGS)" nil nil) 32677(fn TAG &rest ARGS)")
32696(autoload 'url-parse-args "url-util" "\ 32678(autoload 'url-parse-args "url-util" "\
32697 32679
32698 32680
32699(fn STR &optional NODOWNCASE)" nil nil) 32681(fn STR &optional NODOWNCASE)")
32700(autoload 'url-insert-entities-in-string "url-util" "\ 32682(autoload 'url-insert-entities-in-string "url-util" "\
32701Convert HTML markup-start characters to entity references in STRING. 32683Convert HTML markup-start characters to entity references in STRING.
32702Also replaces the \" character, so that the result may be safely used as 32684Also replaces the \" character, so that the result may be safely used as
@@ -32707,44 +32689,49 @@ conversion. Replaces these characters as follows:
32707 > ==> &gt; 32689 > ==> &gt;
32708 \" ==> &quot; 32690 \" ==> &quot;
32709 32691
32710(fn STRING)" nil nil) 32692(fn STRING)")
32711(autoload 'url-normalize-url "url-util" "\ 32693(autoload 'url-normalize-url "url-util" "\
32712Return a \"normalized\" version of URL. 32694Return a \"normalized\" version of URL.
32713Strips out default port numbers, etc. 32695Strips out default port numbers, etc.
32714 32696
32715(fn URL)" nil nil) 32697(fn URL)")
32716(autoload 'url-lazy-message "url-util" "\ 32698(autoload 'url-lazy-message "url-util" "\
32717Just like `message', but is a no-op if called more than once a second. 32699Just like `message', but is a no-op if called more than once a second.
32718Will not do anything if `url-show-status' is nil. 32700Will not do anything if `url-show-status' is nil.
32719 32701
32720(fn &rest ARGS)" nil nil) 32702(fn &rest ARGS)")
32721(autoload 'url-get-normalized-date "url-util" "\ 32703(autoload 'url-get-normalized-date "url-util" "\
32722Return a date string that most HTTP servers can understand. 32704Return a date string that most HTTP servers can understand.
32723 32705
32724(fn &optional SPECIFIED-TIME)" nil nil) 32706(fn &optional SPECIFIED-TIME)")
32725(define-obsolete-function-alias 'url-eat-trailing-space #'string-trim-right "29.1") 32707(define-obsolete-function-alias 'url-eat-trailing-space #'string-trim-right "29.1")
32726(define-obsolete-function-alias 'url-strip-leading-spaces #'string-trim-left "29.1") 32708(define-obsolete-function-alias 'url-strip-leading-spaces #'string-trim-left "29.1")
32709(autoload 'url-display-message "url-util" "\
32710Like `message', but do nothing if `url-show-status' is nil.
32711
32712(fn FMT &rest ARGS)")
32727(autoload 'url-display-percentage "url-util" "\ 32713(autoload 'url-display-percentage "url-util" "\
32728 32714
32729 32715
32730(fn FMT PERC &rest ARGS)" nil nil) 32716(fn FMT PERC &rest ARGS)")
32717(make-obsolete 'url-display-percentage 'url-display-message "29.1")
32731(autoload 'url-percentage "url-util" "\ 32718(autoload 'url-percentage "url-util" "\
32732 32719
32733 32720
32734(fn X Y)" nil nil) 32721(fn X Y)")
32735(defalias 'url-basepath 'url-file-directory) 32722(defalias 'url-basepath 'url-file-directory)
32736(autoload 'url-file-directory "url-util" "\ 32723(autoload 'url-file-directory "url-util" "\
32737Return the directory part of FILE, for a URL. 32724Return the directory part of FILE, for a URL.
32738 32725
32739(fn FILE)" nil nil) 32726(fn FILE)")
32740(autoload 'url-file-nondirectory "url-util" "\ 32727(autoload 'url-file-nondirectory "url-util" "\
32741Return the nondirectory part of FILE, for a URL. 32728Return the nondirectory part of FILE, for a URL.
32742 32729
32743(fn FILE)" nil nil) 32730(fn FILE)")
32744(autoload 'url-parse-query-string "url-util" "\ 32731(autoload 'url-parse-query-string "url-util" "\
32745 32732
32746 32733
32747(fn QUERY &optional DOWNCASE ALLOW-NEWLINES)" nil nil) 32734(fn QUERY &optional DOWNCASE ALLOW-NEWLINES)")
32748(autoload 'url-build-query-string "url-util" "\ 32735(autoload 'url-build-query-string "url-util" "\
32749Build a query-string. 32736Build a query-string.
32750 32737
@@ -32767,7 +32754,7 @@ When SEMICOLONS is given, the separator will be \";\".
32767When KEEP-EMPTY is given, empty values will show as \"key=\" 32754When KEEP-EMPTY is given, empty values will show as \"key=\"
32768instead of just \"key\" as in the example above. 32755instead of just \"key\" as in the example above.
32769 32756
32770(fn QUERY &optional SEMICOLONS KEEP-EMPTY)" nil nil) 32757(fn QUERY &optional SEMICOLONS KEEP-EMPTY)")
32771(autoload 'url-unhex-string "url-util" "\ 32758(autoload 'url-unhex-string "url-util" "\
32772Decode %XX sequences in a percent-encoded URL. 32759Decode %XX sequences in a percent-encoded URL.
32773If optional second argument ALLOW-NEWLINES is non-nil, then allow the 32760If optional second argument ALLOW-NEWLINES is non-nil, then allow the
@@ -32777,7 +32764,7 @@ forbidden in URL encoding.
32777The resulting string in general requires decoding using an 32764The resulting string in general requires decoding using an
32778appropriate coding-system; see `decode-coding-string'. 32765appropriate coding-system; see `decode-coding-string'.
32779 32766
32780(fn STR &optional ALLOW-NEWLINES)" nil nil) 32767(fn STR &optional ALLOW-NEWLINES)")
32781(autoload 'url-hexify-string "url-util" "\ 32768(autoload 'url-hexify-string "url-util" "\
32782URI-encode STRING and return the result. 32769URI-encode STRING and return the result.
32783If STRING is multibyte, it is first converted to a utf-8 byte 32770If STRING is multibyte, it is first converted to a utf-8 byte
@@ -32791,7 +32778,7 @@ allowed characters. Otherwise, ALLOWED-CHARS should be either a
32791list of allowed chars, or a vector whose Nth element is non-nil 32778list of allowed chars, or a vector whose Nth element is non-nil
32792if character N is allowed. 32779if character N is allowed.
32793 32780
32794(fn STRING &optional ALLOWED-CHARS)" nil nil) 32781(fn STRING &optional ALLOWED-CHARS)")
32795(autoload 'url-encode-url "url-util" "\ 32782(autoload 'url-encode-url "url-util" "\
32796Return a properly URI-encoded version of URL. 32783Return a properly URI-encoded version of URL.
32797This function also performs URI normalization, e.g. converting 32784This function also performs URI normalization, e.g. converting
@@ -32799,18 +32786,18 @@ the scheme to lowercase if it is uppercase. Apart from
32799normalization, if URL is already URI-encoded, this function 32786normalization, if URL is already URI-encoded, this function
32800should return it unchanged. 32787should return it unchanged.
32801 32788
32802(fn URL)" nil nil) 32789(fn URL)")
32803(autoload 'url-file-extension "url-util" "\ 32790(autoload 'url-file-extension "url-util" "\
32804Return the filename extension of FNAME. 32791Return the filename extension of FNAME.
32805If optional argument X is t, then return the basename 32792If optional argument X is t, then return the basename
32806of the file with the extension stripped off. 32793of the file with the extension stripped off.
32807 32794
32808(fn FNAME &optional X)" nil nil) 32795(fn FNAME &optional X)")
32809(autoload 'url-truncate-url-for-viewing "url-util" "\ 32796(autoload 'url-truncate-url-for-viewing "url-util" "\
32810Return a shortened version of URL that is WIDTH characters wide or less. 32797Return a shortened version of URL that is WIDTH characters wide or less.
32811WIDTH defaults to the current frame width. 32798WIDTH defaults to the current frame width.
32812 32799
32813(fn URL &optional WIDTH)" nil nil) 32800(fn URL &optional WIDTH)")
32814(autoload 'url-view-url "url-util" "\ 32801(autoload 'url-view-url "url-util" "\
32815View the current document's URL. 32802View the current document's URL.
32816Optional argument NO-SHOW means just return the URL, don't show it in 32803Optional argument NO-SHOW means just return the URL, don't show it in
@@ -32818,7 +32805,7 @@ the minibuffer.
32818 32805
32819This uses `url-current-object', set locally to the buffer. 32806This uses `url-current-object', set locally to the buffer.
32820 32807
32821(fn &optional NO-SHOW)" t nil) 32808(fn &optional NO-SHOW)" t)
32822(autoload 'url-domain "url-util" "\ 32809(autoload 'url-domain "url-util" "\
32823Return the domain of the host of the URL. 32810Return the domain of the host of the URL.
32824Return nil if this can't be determined. 32811Return nil if this can't be determined.
@@ -32826,7 +32813,7 @@ Return nil if this can't be determined.
32826For instance, this function will return \"fsf.co.uk\" if the host in URL 32813For instance, this function will return \"fsf.co.uk\" if the host in URL
32827is \"www.fsf.co.uk\". 32814is \"www.fsf.co.uk\".
32828 32815
32829(fn URL)" nil nil) 32816(fn URL)")
32830(register-definition-prefixes "url-util" '("url-")) 32817(register-definition-prefixes "url-util" '("url-"))
32831 32818
32832 32819
@@ -32848,11 +32835,11 @@ This function has a choice of three things to do:
32848You can redefine this function to choose among those three alternatives 32835You can redefine this function to choose among those three alternatives
32849in any way you like. 32836in any way you like.
32850 32837
32851(fn FILE OPPONENT)" nil nil) 32838(fn FILE OPPONENT)")
32852(autoload 'userlock--ask-user-about-supersession-threat "userlock" "\ 32839(autoload 'userlock--ask-user-about-supersession-threat "userlock" "\
32853 32840
32854 32841
32855(fn FILENAME)" nil nil) 32842(fn FILENAME)")
32856(autoload 'ask-user-about-supersession-threat "userlock" "\ 32843(autoload 'ask-user-about-supersession-threat "userlock" "\
32857Ask a user who is about to modify an obsolete buffer what to do. 32844Ask a user who is about to modify an obsolete buffer what to do.
32858This function has two choices: it can return, in which case the modification 32845This function has two choices: it can return, in which case the modification
@@ -32862,11 +32849,11 @@ in which case the proposed buffer modification will not be made.
32862You can rewrite this to use any criterion you like to choose which one to do. 32849You can rewrite this to use any criterion you like to choose which one to do.
32863The buffer in question is current when this function is called. 32850The buffer in question is current when this function is called.
32864 32851
32865(fn FILENAME)" nil nil) 32852(fn FILENAME)")
32866(autoload 'userlock--handle-unlock-error "userlock" "\ 32853(autoload 'userlock--handle-unlock-error "userlock" "\
32867Report an ERROR that occurred while unlocking a file. 32854Report an ERROR that occurred while unlocking a file.
32868 32855
32869(fn ERROR)" nil nil) 32856(fn ERROR)")
32870(register-definition-prefixes "userlock" '("ask-user-about-" "file-" "userlock--check-content-unchanged")) 32857(register-definition-prefixes "userlock" '("ask-user-about-" "file-" "userlock--check-content-unchanged"))
32871 32858
32872 32859
@@ -32875,19 +32862,19 @@ Report an ERROR that occurred while unlocking a file.
32875(autoload 'utf-7-post-read-conversion "utf-7" "\ 32862(autoload 'utf-7-post-read-conversion "utf-7" "\
32876 32863
32877 32864
32878(fn LEN)" nil nil) 32865(fn LEN)")
32879(autoload 'utf-7-imap-post-read-conversion "utf-7" "\ 32866(autoload 'utf-7-imap-post-read-conversion "utf-7" "\
32880 32867
32881 32868
32882(fn LEN)" nil nil) 32869(fn LEN)")
32883(autoload 'utf-7-pre-write-conversion "utf-7" "\ 32870(autoload 'utf-7-pre-write-conversion "utf-7" "\
32884 32871
32885 32872
32886(fn FROM TO)" nil nil) 32873(fn FROM TO)")
32887(autoload 'utf-7-imap-pre-write-conversion "utf-7" "\ 32874(autoload 'utf-7-imap-pre-write-conversion "utf-7" "\
32888 32875
32889 32876
32890(fn FROM TO)" nil nil) 32877(fn FROM TO)")
32891(register-definition-prefixes "utf-7" '("utf-7-")) 32878(register-definition-prefixes "utf-7" '("utf-7-"))
32892 32879
32893 32880
@@ -32896,7 +32883,7 @@ Report an ERROR that occurred while unlocking a file.
32896(autoload 'utf7-encode "utf7" "\ 32883(autoload 'utf7-encode "utf7" "\
32897Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil. 32884Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil.
32898 32885
32899(fn STRING &optional FOR-IMAP)" nil nil) 32886(fn STRING &optional FOR-IMAP)")
32900(register-definition-prefixes "utf7" '("utf7-")) 32887(register-definition-prefixes "utf7" '("utf7-"))
32901 32888
32902 32889
@@ -32922,17 +32909,17 @@ Uudecode region between START and END using external program.
32922If FILE-NAME is non-nil, save the result to FILE-NAME. The program 32909If FILE-NAME is non-nil, save the result to FILE-NAME. The program
32923used is specified by `uudecode-decoder-program'. 32910used is specified by `uudecode-decoder-program'.
32924 32911
32925(fn START END &optional FILE-NAME)" t nil) 32912(fn START END &optional FILE-NAME)" t)
32926(autoload 'uudecode-decode-region-internal "uudecode" "\ 32913(autoload 'uudecode-decode-region-internal "uudecode" "\
32927Uudecode region between START and END without using an external program. 32914Uudecode region between START and END without using an external program.
32928If FILE-NAME is non-nil, save the result to FILE-NAME. 32915If FILE-NAME is non-nil, save the result to FILE-NAME.
32929 32916
32930(fn START END &optional FILE-NAME)" t nil) 32917(fn START END &optional FILE-NAME)" t)
32931(autoload 'uudecode-decode-region "uudecode" "\ 32918(autoload 'uudecode-decode-region "uudecode" "\
32932Uudecode region between START and END. 32919Uudecode region between START and END.
32933If FILE-NAME is non-nil, save the result to FILE-NAME. 32920If FILE-NAME is non-nil, save the result to FILE-NAME.
32934 32921
32935(fn START END &optional FILE-NAME)" nil nil) 32922(fn START END &optional FILE-NAME)")
32936(register-definition-prefixes "uudecode" '("uudecode-")) 32923(register-definition-prefixes "uudecode" '("uudecode-"))
32937 32924
32938 32925
@@ -32965,7 +32952,7 @@ be reported.
32965If NO-ERROR is nil, signal an error that no VC backend is 32952If NO-ERROR is nil, signal an error that no VC backend is
32966responsible for the given file. 32953responsible for the given file.
32967 32954
32968(fn FILE &optional NO-ERROR)" nil nil) 32955(fn FILE &optional NO-ERROR)")
32969(autoload 'vc-next-action "vc" "\ 32956(autoload 'vc-next-action "vc" "\
32970Do the next logical version control operation on the current fileset. 32957Do the next logical version control operation on the current fileset.
32971This requires that all files in the current VC fileset be in the 32958This requires that all files in the current VC fileset be in the
@@ -32993,7 +32980,7 @@ When using this command to register a new file (or files), it
32993will automatically deduce which VC repository to register it 32980will automatically deduce which VC repository to register it
32994with, using the most specific one. 32981with, using the most specific one.
32995 32982
32996(fn VERBOSE)" t nil) 32983(fn VERBOSE)" t)
32997(autoload 'vc-register "vc" "\ 32984(autoload 'vc-register "vc" "\
32998Register into a version control system. 32985Register into a version control system.
32999If VC-FILESET is given, register the files in that fileset. 32986If VC-FILESET is given, register the files in that fileset.
@@ -33007,7 +32994,7 @@ directory are already registered under that backend) will be used to
33007register the file. If no backend declares itself responsible, the 32994register the file. If no backend declares itself responsible, the
33008first backend that could register the file is used. 32995first backend that could register the file is used.
33009 32996
33010(fn &optional VC-FILESET COMMENT)" t nil) 32997(fn &optional VC-FILESET COMMENT)" t)
33011(autoload 'vc-ignore "vc" "\ 32998(autoload 'vc-ignore "vc" "\
33012Ignore FILE under the VCS of DIRECTORY. 32999Ignore FILE under the VCS of DIRECTORY.
33013 33000
@@ -33022,7 +33009,7 @@ When called interactively, prompt for a FILE to ignore, unless a
33022prefix argument is given, in which case prompt for a file FILE to 33009prefix argument is given, in which case prompt for a file FILE to
33023remove from the list of ignored files. 33010remove from the list of ignored files.
33024 33011
33025(fn FILE &optional DIRECTORY REMOVE)" t nil) 33012(fn FILE &optional DIRECTORY REMOVE)" t)
33026(autoload 'vc-version-diff "vc" "\ 33013(autoload 'vc-version-diff "vc" "\
33027Report diffs between revisions REV1 and REV2 in the repository history. 33014Report diffs between revisions REV1 and REV2 in the repository history.
33028This compares two revisions of the current fileset. 33015This compares two revisions of the current fileset.
@@ -33031,11 +33018,11 @@ of the last commit.
33031If REV2 is nil, it defaults to the work tree, i.e. the current 33018If REV2 is nil, it defaults to the work tree, i.e. the current
33032state of each file in the fileset. 33019state of each file in the fileset.
33033 33020
33034(fn FILES REV1 REV2)" t nil) 33021(fn FILES REV1 REV2)" t)
33035(autoload 'vc-root-version-diff "vc" "\ 33022(autoload 'vc-root-version-diff "vc" "\
33036Report diffs between REV1 and REV2 revisions of the whole tree. 33023Report diffs between REV1 and REV2 revisions of the whole tree.
33037 33024
33038(fn FILES REV1 REV2)" t nil) 33025(fn FILES REV1 REV2)" t)
33039(autoload 'vc-diff "vc" "\ 33026(autoload 'vc-diff "vc" "\
33040Display diffs between file revisions. 33027Display diffs between file revisions.
33041Normally this compares the currently selected fileset with their 33028Normally this compares the currently selected fileset with their
@@ -33045,12 +33032,12 @@ designators specifying which revisions to compare.
33045The optional argument NOT-URGENT non-nil means it is ok to say no to 33032The optional argument NOT-URGENT non-nil means it is ok to say no to
33046saving the buffer. 33033saving the buffer.
33047 33034
33048(fn &optional HISTORIC NOT-URGENT)" t nil) 33035(fn &optional HISTORIC NOT-URGENT)" t)
33049(autoload 'vc-diff-mergebase "vc" "\ 33036(autoload 'vc-diff-mergebase "vc" "\
33050Report diffs between the merge base of REV1 and REV2 revisions. 33037Report diffs between the merge base of REV1 and REV2 revisions.
33051The merge base is a common ancestor between REV1 and REV2 revisions. 33038The merge base is a common ancestor between REV1 and REV2 revisions.
33052 33039
33053(fn FILES REV1 REV2)" t nil) 33040(fn FILES REV1 REV2)" t)
33054(autoload 'vc-version-ediff "vc" "\ 33041(autoload 'vc-version-ediff "vc" "\
33055Show differences between REV1 and REV2 of FILES using ediff. 33042Show differences between REV1 and REV2 of FILES using ediff.
33056This compares two revisions of the files in FILES. Currently, 33043This compares two revisions of the files in FILES. Currently,
@@ -33061,7 +33048,7 @@ of the last commit.
33061If REV2 is nil, it defaults to the work tree, i.e. the current 33048If REV2 is nil, it defaults to the work tree, i.e. the current
33062state of each file in FILES. 33049state of each file in FILES.
33063 33050
33064(fn FILES REV1 REV2)" t nil) 33051(fn FILES REV1 REV2)" t)
33065(autoload 'vc-ediff "vc" "\ 33052(autoload 'vc-ediff "vc" "\
33066Display diffs between file revisions using ediff. 33053Display diffs between file revisions using ediff.
33067Normally this compares the currently selected fileset with their 33054Normally this compares the currently selected fileset with their
@@ -33071,7 +33058,7 @@ designators specifying which revisions to compare.
33071The optional argument NOT-URGENT non-nil means it is ok to say no to 33058The optional argument NOT-URGENT non-nil means it is ok to say no to
33072saving the buffer. 33059saving the buffer.
33073 33060
33074(fn HISTORIC &optional NOT-URGENT)" t nil) 33061(fn HISTORIC &optional NOT-URGENT)" t)
33075(autoload 'vc-root-diff "vc" "\ 33062(autoload 'vc-root-diff "vc" "\
33076Display diffs between VC-controlled whole tree revisions. 33063Display diffs between VC-controlled whole tree revisions.
33077Normally, this compares the tree corresponding to the current 33064Normally, this compares the tree corresponding to the current
@@ -33082,20 +33069,20 @@ designators specifying which revisions to compare.
33082The optional argument NOT-URGENT non-nil means it is ok to say no to 33069The optional argument NOT-URGENT non-nil means it is ok to say no to
33083saving the buffer. 33070saving the buffer.
33084 33071
33085(fn HISTORIC &optional NOT-URGENT)" t nil) 33072(fn HISTORIC &optional NOT-URGENT)" t)
33086(autoload 'vc-root-dir "vc" "\ 33073(autoload 'vc-root-dir "vc" "\
33087Return the root directory for the current VC tree. 33074Return the root directory for the current VC tree.
33088Return nil if the root directory cannot be identified." nil nil) 33075Return nil if the root directory cannot be identified.")
33089(autoload 'vc-revision-other-window "vc" "\ 33076(autoload 'vc-revision-other-window "vc" "\
33090Visit revision REV of the current file in another window. 33077Visit revision REV of the current file in another window.
33091If the current file is named `F', the revision is named `F.~REV~'. 33078If the current file is named `F', the revision is named `F.~REV~'.
33092If `F.~REV~' already exists, use it instead of checking it out again. 33079If `F.~REV~' already exists, use it instead of checking it out again.
33093 33080
33094(fn REV)" t nil) 33081(fn REV)" t)
33095(autoload 'vc-insert-headers "vc" "\ 33082(autoload 'vc-insert-headers "vc" "\
33096Insert headers into a file for use with a version control system. 33083Insert headers into a file for use with a version control system.
33097Headers desired are inserted at point, and are pulled from 33084Headers desired are inserted at point, and are pulled from
33098the variable `vc-BACKEND-header'." t nil) 33085the variable `vc-BACKEND-header'." t)
33099(autoload 'vc-merge "vc" "\ 33086(autoload 'vc-merge "vc" "\
33100Perform a version control merge operation. 33087Perform a version control merge operation.
33101You must be visiting a version controlled file, or in a `vc-dir' buffer. 33088You must be visiting a version controlled file, or in a `vc-dir' buffer.
@@ -33108,14 +33095,14 @@ between two revisions into the current fileset. This asks for
33108two revisions to merge from in the minibuffer. If the first 33095two revisions to merge from in the minibuffer. If the first
33109revision is a branch number, then merge all changes from that 33096revision is a branch number, then merge all changes from that
33110branch. If the first revision is empty, merge the most recent 33097branch. If the first revision is empty, merge the most recent
33111changes from the current branch." t nil) 33098changes from the current branch." t)
33112(autoload 'vc-message-unresolved-conflicts "vc" "\ 33099(autoload 'vc-message-unresolved-conflicts "vc" "\
33113Display a message indicating unresolved conflicts in FILENAME. 33100Display a message indicating unresolved conflicts in FILENAME.
33114 33101
33115(fn FILENAME)" nil nil) 33102(fn FILENAME)")
33116(defalias 'vc-resolve-conflicts 'smerge-ediff) 33103(defalias 'vc-resolve-conflicts 'smerge-ediff)
33117(autoload 'vc-find-conflicted-file "vc" "\ 33104(autoload 'vc-find-conflicted-file "vc" "\
33118Visit the next conflicted file in the current project." t nil) 33105Visit the next conflicted file in the current project." t)
33119(autoload 'vc-create-tag "vc" "\ 33106(autoload 'vc-create-tag "vc" "\
33120Descending recursively from DIR, make a tag called NAME. 33107Descending recursively from DIR, make a tag called NAME.
33121For each registered file, the working revision becomes part of 33108For each registered file, the working revision becomes part of
@@ -33123,7 +33110,7 @@ the named configuration. If the prefix argument BRANCHP is
33123given, the tag is made as a new branch and the files are 33110given, the tag is made as a new branch and the files are
33124checked out in that new branch. 33111checked out in that new branch.
33125 33112
33126(fn DIR NAME BRANCHP)" t nil) 33113(fn DIR NAME BRANCHP)" t)
33127(autoload 'vc-retrieve-tag "vc" "\ 33114(autoload 'vc-retrieve-tag "vc" "\
33128For each file in or below DIR, retrieve their tagged version NAME. 33115For each file in or below DIR, retrieve their tagged version NAME.
33129NAME can name a branch, in which case this command will switch to the 33116NAME can name a branch, in which case this command will switch to the
@@ -33136,7 +33123,7 @@ locked files at or below DIR (but if NAME is empty, locked files are
33136allowed and simply skipped). 33123allowed and simply skipped).
33137This function runs the hook `vc-retrieve-tag-hook' when finished. 33124This function runs the hook `vc-retrieve-tag-hook' when finished.
33138 33125
33139(fn DIR NAME)" t nil) 33126(fn DIR NAME)" t)
33140(autoload 'vc-print-log "vc" "\ 33127(autoload 'vc-print-log "vc" "\
33141List the change log of the current fileset in a window. 33128List the change log of the current fileset in a window.
33142If WORKING-REVISION is non-nil, leave point at that revision. 33129If WORKING-REVISION is non-nil, leave point at that revision.
@@ -33146,7 +33133,7 @@ number of revisions to show; the default is `vc-log-show-limit'.
33146When called interactively with a prefix argument, prompt for 33133When called interactively with a prefix argument, prompt for
33147WORKING-REVISION and LIMIT. 33134WORKING-REVISION and LIMIT.
33148 33135
33149(fn &optional WORKING-REVISION LIMIT)" t nil) 33136(fn &optional WORKING-REVISION LIMIT)" t)
33150(autoload 'vc-print-root-log "vc" "\ 33137(autoload 'vc-print-root-log "vc" "\
33151List the revision history for the current VC controlled tree in a window. 33138List the revision history for the current VC controlled tree in a window.
33152If LIMIT is non-nil, it should be a number specifying the maximum 33139If LIMIT is non-nil, it should be a number specifying the maximum
@@ -33157,21 +33144,21 @@ A special case is when the prefix argument is 1: in this case
33157the command asks for the ID of a revision, and shows that revision 33144the command asks for the ID of a revision, and shows that revision
33158with its diffs (if the underlying VCS supports that). 33145with its diffs (if the underlying VCS supports that).
33159 33146
33160(fn &optional LIMIT REVISION)" t nil) 33147(fn &optional LIMIT REVISION)" t)
33161(autoload 'vc-print-branch-log "vc" "\ 33148(autoload 'vc-print-branch-log "vc" "\
33162Show the change log for BRANCH root in a window. 33149Show the change log for BRANCH root in a window.
33163 33150
33164(fn BRANCH)" t nil) 33151(fn BRANCH)" t)
33165(autoload 'vc-log-incoming "vc" "\ 33152(autoload 'vc-log-incoming "vc" "\
33166Show log of changes that will be received with pull from REMOTE-LOCATION. 33153Show log of changes that will be received with pull from REMOTE-LOCATION.
33167When called interactively with a prefix argument, prompt for REMOTE-LOCATION. 33154When called interactively with a prefix argument, prompt for REMOTE-LOCATION.
33168 33155
33169(fn &optional REMOTE-LOCATION)" t nil) 33156(fn &optional REMOTE-LOCATION)" t)
33170(autoload 'vc-log-outgoing "vc" "\ 33157(autoload 'vc-log-outgoing "vc" "\
33171Show log of changes that will be sent with a push operation to REMOTE-LOCATION. 33158Show log of changes that will be sent with a push operation to REMOTE-LOCATION.
33172When called interactively with a prefix argument, prompt for REMOTE-LOCATION. 33159When called interactively with a prefix argument, prompt for REMOTE-LOCATION.
33173 33160
33174(fn &optional REMOTE-LOCATION)" t nil) 33161(fn &optional REMOTE-LOCATION)" t)
33175(autoload 'vc-log-search "vc" "\ 33162(autoload 'vc-log-search "vc" "\
33176Search the log of changes for PATTERN. 33163Search the log of changes for PATTERN.
33177 33164
@@ -33183,23 +33170,23 @@ Display all entries that match log messages in long format.
33183With a prefix argument, ask for a command to run that will output 33170With a prefix argument, ask for a command to run that will output
33184log entries. 33171log entries.
33185 33172
33186(fn PATTERN)" t nil) 33173(fn PATTERN)" t)
33187(autoload 'vc-log-mergebase "vc" "\ 33174(autoload 'vc-log-mergebase "vc" "\
33188Show a log of changes between the merge base of REV1 and REV2 revisions. 33175Show a log of changes between the merge base of REV1 and REV2 revisions.
33189The merge base is a common ancestor between REV1 and REV2 revisions. 33176The merge base is a common ancestor between REV1 and REV2 revisions.
33190 33177
33191(fn FILES REV1 REV2)" t nil) 33178(fn FILES REV1 REV2)" t)
33192(autoload 'vc-region-history "vc" "\ 33179(autoload 'vc-region-history "vc" "\
33193Show the history of the region between FROM and TO. 33180Show the history of the region between FROM and TO.
33194 33181
33195If called interactively, show the history between point and 33182If called interactively, show the history between point and
33196mark. 33183mark.
33197 33184
33198(fn FROM TO)" t nil) 33185(fn FROM TO)" t)
33199(autoload 'vc-revert "vc" "\ 33186(autoload 'vc-revert "vc" "\
33200Revert working copies of the selected fileset to their repository contents. 33187Revert working copies of the selected fileset to their repository contents.
33201This asks for confirmation if the buffer contents are not identical 33188This asks for confirmation if the buffer contents are not identical
33202to the working revision (except for keyword expansion)." t nil) 33189to the working revision (except for keyword expansion)." t)
33203(autoload 'vc-pull "vc" "\ 33190(autoload 'vc-pull "vc" "\
33204Update the current fileset or branch. 33191Update the current fileset or branch.
33205You must be visiting a version controlled file, or in a `vc-dir' buffer. 33192You must be visiting a version controlled file, or in a `vc-dir' buffer.
@@ -33214,7 +33201,7 @@ file, this simply replaces the work file with the latest revision
33214on its branch. If the file contains changes, any changes in the 33201on its branch. If the file contains changes, any changes in the
33215tip revision are merged into the working file. 33202tip revision are merged into the working file.
33216 33203
33217(fn &optional ARG)" t nil) 33204(fn &optional ARG)" t)
33218(defalias 'vc-update 'vc-pull) 33205(defalias 'vc-update 'vc-pull)
33219(autoload 'vc-push "vc" "\ 33206(autoload 'vc-push "vc" "\
33220Push the current branch. 33207Push the current branch.
@@ -33227,7 +33214,7 @@ VCS command to run.
33227On a non-distributed version control system, this signals an error. 33214On a non-distributed version control system, this signals an error.
33228It also signals an error in a Bazaar bound branch. 33215It also signals an error in a Bazaar bound branch.
33229 33216
33230(fn &optional ARG)" t nil) 33217(fn &optional ARG)" t)
33231(autoload 'vc-switch-backend "vc" "\ 33218(autoload 'vc-switch-backend "vc" "\
33232Make BACKEND the current version control system for FILE. 33219Make BACKEND the current version control system for FILE.
33233FILE must already be registered in BACKEND. The change is not 33220FILE must already be registered in BACKEND. The change is not
@@ -33236,7 +33223,7 @@ VC's perspective on FILE, it does not register or unregister it.
33236By default, this command cycles through the registered backends. 33223By default, this command cycles through the registered backends.
33237To get a prompt, use a prefix argument. 33224To get a prompt, use a prefix argument.
33238 33225
33239(fn FILE BACKEND)" t nil) 33226(fn FILE BACKEND)" t)
33240(make-obsolete 'vc-switch-backend 'nil "28.1") 33227(make-obsolete 'vc-switch-backend 'nil "28.1")
33241(autoload 'vc-transfer-file "vc" "\ 33228(autoload 'vc-transfer-file "vc" "\
33242Transfer FILE to another version control system NEW-BACKEND. 33229Transfer FILE to another version control system NEW-BACKEND.
@@ -33248,19 +33235,19 @@ backend, then commit all changes that were made under the current
33248backend to NEW-BACKEND, and unregister FILE from the current backend. 33235backend to NEW-BACKEND, and unregister FILE from the current backend.
33249(If FILE is not yet registered under NEW-BACKEND, register it.) 33236(If FILE is not yet registered under NEW-BACKEND, register it.)
33250 33237
33251(fn FILE NEW-BACKEND)" nil nil) 33238(fn FILE NEW-BACKEND)")
33252(autoload 'vc-delete-file "vc" "\ 33239(autoload 'vc-delete-file "vc" "\
33253Delete file and mark it as such in the version control system. 33240Delete file and mark it as such in the version control system.
33254If called interactively, read FILE, defaulting to the current 33241If called interactively, read FILE, defaulting to the current
33255buffer's file name if it's under version control. 33242buffer's file name if it's under version control.
33256 33243
33257(fn FILE)" t nil) 33244(fn FILE)" t)
33258(autoload 'vc-rename-file "vc" "\ 33245(autoload 'vc-rename-file "vc" "\
33259Rename file OLD to NEW in both work area and repository. 33246Rename file OLD to NEW in both work area and repository.
33260If called interactively, read OLD and NEW, defaulting OLD to the 33247If called interactively, read OLD and NEW, defaulting OLD to the
33261current buffer's file name if it's under version control. 33248current buffer's file name if it's under version control.
33262 33249
33263(fn OLD NEW)" t nil) 33250(fn OLD NEW)" t)
33264(autoload 'vc-update-change-log "vc" "\ 33251(autoload 'vc-update-change-log "vc" "\
33265Find change log file and add entries from recent version control logs. 33252Find change log file and add entries from recent version control logs.
33266Normally, find log entries for all registered files in the default 33253Normally, find log entries for all registered files in the default
@@ -33275,7 +33262,7 @@ log for the default directory, which may not be appropriate.
33275From a program, any ARGS are assumed to be filenames for which 33262From a program, any ARGS are assumed to be filenames for which
33276log entries should be gathered. 33263log entries should be gathered.
33277 33264
33278(fn &rest ARGS)" t nil) 33265(fn &rest ARGS)" t)
33279(register-definition-prefixes "vc" '("vc-" "with-vc-properties")) 33266(register-definition-prefixes "vc" '("vc-" "with-vc-properties"))
33280 33267
33281 33268
@@ -33313,7 +33300,7 @@ mode-specific menu. `vc-annotate-color-map' and
33313`vc-annotate-background-mode' specifies whether the color map 33300`vc-annotate-background-mode' specifies whether the color map
33314should be applied to the background or to the foreground. 33301should be applied to the background or to the foreground.
33315 33302
33316(fn FILE REV &optional DISPLAY-MODE BUF MOVE-POINT-TO VC-BK)" t nil) 33303(fn FILE REV &optional DISPLAY-MODE BUF MOVE-POINT-TO VC-BK)" t)
33317(register-definition-prefixes "vc-annotate" '("vc-")) 33304(register-definition-prefixes "vc-annotate" '("vc-"))
33318 33305
33319 33306
@@ -33352,7 +33339,7 @@ Name of the format file in a .bzr directory.")
33352(autoload 'vc-dir-root "vc-dir" "\ 33339(autoload 'vc-dir-root "vc-dir" "\
33353Run `vc-dir' in the repository root directory without prompt. 33340Run `vc-dir' in the repository root directory without prompt.
33354If the default directory of the current buffer is 33341If the default directory of the current buffer is
33355not under version control, prompt for a directory." t nil) 33342not under version control, prompt for a directory." t)
33356(autoload 'vc-dir "vc-dir" "\ 33343(autoload 'vc-dir "vc-dir" "\
33357Show the VC status for \"interesting\" files in and below DIR. 33344Show the VC status for \"interesting\" files in and below DIR.
33358This allows you to mark files and perform VC operations on them. 33345This allows you to mark files and perform VC operations on them.
@@ -33370,13 +33357,13 @@ These are the commands available for use in the file status buffer:
33370 33357
33371\\{vc-dir-mode-map} 33358\\{vc-dir-mode-map}
33372 33359
33373(fn DIR &optional BACKEND)" t nil) 33360(fn DIR &optional BACKEND)" t)
33374(autoload 'vc-dir-bookmark-jump "vc-dir" "\ 33361(autoload 'vc-dir-bookmark-jump "vc-dir" "\
33375Provide the `bookmark-jump' behavior for a `vc-dir' buffer. 33362Provide the `bookmark-jump' behavior for a `vc-dir' buffer.
33376This implements the `handler' function interface for the record 33363This implements the `handler' function interface for the record
33377type returned by `vc-dir-bookmark-make-record'. 33364type returned by `vc-dir-bookmark-make-record'.
33378 33365
33379(fn BMK)" nil nil) 33366(fn BMK)")
33380(register-definition-prefixes "vc-dir" '("vc-")) 33367(register-definition-prefixes "vc-dir" '("vc-"))
33381 33368
33382 33369
@@ -33398,7 +33385,7 @@ that is inserted into the command line before the filename.
33398Return the return value of the slave command in the synchronous 33385Return the return value of the slave command in the synchronous
33399case, and the process object in the asynchronous case. 33386case, and the process object in the asynchronous case.
33400 33387
33401(fn BUFFER OKSTATUS COMMAND FILE-OR-LIST &rest FLAGS)" nil nil) 33388(fn BUFFER OKSTATUS COMMAND FILE-OR-LIST &rest FLAGS)")
33402(register-definition-prefixes "vc-dispatcher" '("vc-")) 33389(register-definition-prefixes "vc-dispatcher" '("vc-"))
33403 33390
33404 33391
@@ -33534,7 +33521,7 @@ Key bindings:
33534 33521
33535\\{vera-mode-map} 33522\\{vera-mode-map}
33536 33523
33537(fn)" t nil) 33524(fn)" t)
33538(register-definition-prefixes "vera-mode" '("vera-")) 33525(register-definition-prefixes "vera-mode" '("vera-"))
33539 33526
33540 33527
@@ -33676,7 +33663,7 @@ Key bindings specific to `verilog-mode-map' are:
33676 33663
33677\\{verilog-mode-map} 33664\\{verilog-mode-map}
33678 33665
33679(fn)" t nil) 33666(fn)" t)
33680(register-definition-prefixes "verilog-mode" '("electric-verilog-" "verilog-" "vl-")) 33667(register-definition-prefixes "verilog-mode" '("electric-verilog-" "verilog-" "vl-"))
33681 33668
33682 33669
@@ -34229,7 +34216,7 @@ Key bindings:
34229 34216
34230\\{vhdl-mode-map} 34217\\{vhdl-mode-map}
34231 34218
34232(fn)" t nil) 34219(fn)" t)
34233(register-definition-prefixes "vhdl-mode" '("vhdl-")) 34220(register-definition-prefixes "vhdl-mode" '("vhdl-"))
34234 34221
34235 34222
@@ -34238,31 +34225,31 @@ Key bindings:
34238(autoload 'viet-encode-viscii-char "viet-util" "\ 34225(autoload 'viet-encode-viscii-char "viet-util" "\
34239Return VISCII character code of CHAR if appropriate. 34226Return VISCII character code of CHAR if appropriate.
34240 34227
34241(fn CHAR)" nil nil) 34228(fn CHAR)")
34242(autoload 'viet-decode-viqr-region "viet-util" "\ 34229(autoload 'viet-decode-viqr-region "viet-util" "\
34243Convert `VIQR' mnemonics of the current region to Vietnamese characters. 34230Convert `VIQR' mnemonics of the current region to Vietnamese characters.
34244When called from a program, expects two arguments, 34231When called from a program, expects two arguments,
34245positions (integers or markers) specifying the stretch of the region. 34232positions (integers or markers) specifying the stretch of the region.
34246 34233
34247(fn FROM TO)" t nil) 34234(fn FROM TO)" t)
34248(autoload 'viet-decode-viqr-buffer "viet-util" "\ 34235(autoload 'viet-decode-viqr-buffer "viet-util" "\
34249Convert `VIQR' mnemonics of the current buffer to Vietnamese characters." t nil) 34236Convert `VIQR' mnemonics of the current buffer to Vietnamese characters." t)
34250(autoload 'viet-encode-viqr-region "viet-util" "\ 34237(autoload 'viet-encode-viqr-region "viet-util" "\
34251Convert Vietnamese characters of the current region to `VIQR' mnemonics. 34238Convert Vietnamese characters of the current region to `VIQR' mnemonics.
34252When called from a program, expects two arguments, 34239When called from a program, expects two arguments,
34253positions (integers or markers) specifying the stretch of the region. 34240positions (integers or markers) specifying the stretch of the region.
34254 34241
34255(fn FROM TO)" t nil) 34242(fn FROM TO)" t)
34256(autoload 'viet-encode-viqr-buffer "viet-util" "\ 34243(autoload 'viet-encode-viqr-buffer "viet-util" "\
34257Convert Vietnamese characters of the current buffer to `VIQR' mnemonics." t nil) 34244Convert Vietnamese characters of the current buffer to `VIQR' mnemonics." t)
34258(autoload 'viqr-post-read-conversion "viet-util" "\ 34245(autoload 'viqr-post-read-conversion "viet-util" "\
34259 34246
34260 34247
34261(fn LEN)" nil nil) 34248(fn LEN)")
34262(autoload 'viqr-pre-write-conversion "viet-util" "\ 34249(autoload 'viqr-pre-write-conversion "viet-util" "\
34263 34250
34264 34251
34265(fn FROM TO)" nil nil) 34252(fn FROM TO)")
34266(register-definition-prefixes "viet-util" '("viet-viqr-alist" "viqr-regexp")) 34253(register-definition-prefixes "viet-util" '("viet-viqr-alist" "viqr-regexp"))
34267 34254
34268 34255
@@ -34279,7 +34266,7 @@ functions that enable or disable view mode.")
34279(autoload 'kill-buffer-if-not-modified "view" "\ 34266(autoload 'kill-buffer-if-not-modified "view" "\
34280Like `kill-buffer', but does nothing if buffer BUF is modified. 34267Like `kill-buffer', but does nothing if buffer BUF is modified.
34281 34268
34282(fn BUF)" nil nil) 34269(fn BUF)")
34283(autoload 'view-file "view" "\ 34270(autoload 'view-file "view" "\
34284View FILE in View mode, returning to previous buffer when done. 34271View FILE in View mode, returning to previous buffer when done.
34285Emacs commands editing the buffer contents are not available; instead, a 34272Emacs commands editing the buffer contents are not available; instead, a
@@ -34290,7 +34277,7 @@ For a list of all View commands, type H or h while viewing.
34290 34277
34291This command runs the normal hook `view-mode-hook'. 34278This command runs the normal hook `view-mode-hook'.
34292 34279
34293(fn FILE)" t nil) 34280(fn FILE)" t)
34294(autoload 'view-file-other-window "view" "\ 34281(autoload 'view-file-other-window "view" "\
34295View FILE in View mode in another window. 34282View FILE in View mode in another window.
34296When done, return that window to its previous buffer, and kill the 34283When done, return that window to its previous buffer, and kill the
@@ -34304,7 +34291,7 @@ For a list of all View commands, type H or h while viewing.
34304 34291
34305This command runs the normal hook `view-mode-hook'. 34292This command runs the normal hook `view-mode-hook'.
34306 34293
34307(fn FILE)" t nil) 34294(fn FILE)" t)
34308(autoload 'view-file-other-frame "view" "\ 34295(autoload 'view-file-other-frame "view" "\
34309View FILE in View mode in another frame. 34296View FILE in View mode in another frame.
34310When done, kill the buffer visiting FILE if unmodified and if it wasn't 34297When done, kill the buffer visiting FILE if unmodified and if it wasn't
@@ -34319,7 +34306,7 @@ For a list of all View commands, type H or h while viewing.
34319 34306
34320This command runs the normal hook `view-mode-hook'. 34307This command runs the normal hook `view-mode-hook'.
34321 34308
34322(fn FILE)" t nil) 34309(fn FILE)" t)
34323(autoload 'view-buffer "view" "\ 34310(autoload 'view-buffer "view" "\
34324View BUFFER in View mode, returning to previous buffer when done. 34311View BUFFER in View mode, returning to previous buffer when done.
34325Emacs commands editing the buffer contents are not available; instead, a 34312Emacs commands editing the buffer contents are not available; instead, a
@@ -34343,7 +34330,7 @@ This function does not enable View mode if the buffer's major mode
34343has a `special' mode-class, because such modes usually have their 34330has a `special' mode-class, because such modes usually have their
34344own View-like bindings. 34331own View-like bindings.
34345 34332
34346(fn BUFFER &optional EXIT-ACTION)" t nil) 34333(fn BUFFER &optional EXIT-ACTION)" t)
34347(autoload 'view-buffer-other-window "view" "\ 34334(autoload 'view-buffer-other-window "view" "\
34348View BUFFER in View mode in another window. 34335View BUFFER in View mode in another window.
34349Emacs commands editing the buffer contents are not available; 34336Emacs commands editing the buffer contents are not available;
@@ -34364,7 +34351,7 @@ This function does not enable View mode if the buffer's major mode
34364has a `special' mode-class, because such modes usually have their 34351has a `special' mode-class, because such modes usually have their
34365own View-like bindings. 34352own View-like bindings.
34366 34353
34367(fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t nil) 34354(fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t)
34368(autoload 'view-buffer-other-frame "view" "\ 34355(autoload 'view-buffer-other-frame "view" "\
34369View BUFFER in View mode in another frame. 34356View BUFFER in View mode in another frame.
34370Emacs commands editing the buffer contents are not available; 34357Emacs commands editing the buffer contents are not available;
@@ -34385,7 +34372,7 @@ This function does not enable View mode if the buffer's major mode
34385has a `special' mode-class, because such modes usually have their 34372has a `special' mode-class, because such modes usually have their
34386own View-like bindings. 34373own View-like bindings.
34387 34374
34388(fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t nil) 34375(fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t)
34389(autoload 'view-mode "view" "\ 34376(autoload 'view-mode "view" "\
34390Toggle View mode, a minor mode for viewing text but not editing it. 34377Toggle View mode, a minor mode for viewing text but not editing it.
34391 34378
@@ -34480,7 +34467,7 @@ evaluate `view-mode'.
34480The mode's hook is called both when the mode is enabled and when 34467The mode's hook is called both when the mode is enabled and when
34481it is disabled. 34468it is disabled.
34482 34469
34483(fn &optional ARG)" t nil) 34470(fn &optional ARG)" t)
34484(autoload 'view-mode-enter "view" "\ 34471(autoload 'view-mode-enter "view" "\
34485Enter View mode and set up exit from view mode depending on optional arguments. 34472Enter View mode and set up exit from view mode depending on optional arguments.
34486Optional argument QUIT-RESTORE if non-nil must specify a valid 34473Optional argument QUIT-RESTORE if non-nil must specify a valid
@@ -34496,20 +34483,20 @@ For a list of all View commands, type H or h while viewing.
34496 34483
34497This function runs the normal hook `view-mode-hook'. 34484This function runs the normal hook `view-mode-hook'.
34498 34485
34499(fn &optional QUIT-RESTORE EXIT-ACTION)" nil nil) 34486(fn &optional QUIT-RESTORE EXIT-ACTION)")
34500(autoload 'View-exit-and-edit "view" "\ 34487(autoload 'View-exit-and-edit "view" "\
34501Exit View mode and make the current buffer editable." t nil) 34488Exit View mode and make the current buffer editable." t)
34502(register-definition-prefixes "view" '("View-" "view-")) 34489(register-definition-prefixes "view" '("View-" "view-"))
34503 34490
34504 34491
34505;;; Generated autoloads from emulation/viper.el 34492;;; Generated autoloads from emulation/viper.el
34506 34493
34507(push (purecopy '(viper 3 14 1)) package--builtin-versions) 34494(push (purecopy '(viper 3 14 2)) package--builtin-versions)
34508(autoload 'toggle-viper-mode "viper" "\ 34495(autoload 'toggle-viper-mode "viper" "\
34509Toggle Viper on/off. 34496Toggle Viper on/off.
34510If Viper is enabled, turn it off. Otherwise, turn it on." t nil) 34497If Viper is enabled, turn it off. Otherwise, turn it on." t)
34511(autoload 'viper-mode "viper" "\ 34498(autoload 'viper-mode "viper" "\
34512Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'." t nil) 34499Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'." t)
34513(register-definition-prefixes "viper" '("viper-")) 34500(register-definition-prefixes "viper" '("viper-"))
34514 34501
34515 34502
@@ -34625,7 +34612,7 @@ disable automatic display of the warning or disable the warning
34625entirely by setting `warning-suppress-types' or 34612entirely by setting `warning-suppress-types' or
34626`warning-suppress-log-types' on their behalf. 34613`warning-suppress-log-types' on their behalf.
34627 34614
34628(fn TYPE MESSAGE &optional LEVEL BUFFER-NAME)" nil nil) 34615(fn TYPE MESSAGE &optional LEVEL BUFFER-NAME)")
34629(autoload 'lwarn "warnings" "\ 34616(autoload 'lwarn "warnings" "\
34630Display a warning message made from (format-message MESSAGE ARGS...). 34617Display a warning message made from (format-message MESSAGE ARGS...).
34631\\<special-mode-map> 34618\\<special-mode-map>
@@ -34646,14 +34633,14 @@ LEVEL should be either :debug, :warning, :error, or :emergency
34646:warning -- suspicious data or circumstances. 34633:warning -- suspicious data or circumstances.
34647:debug -- info for debugging only. 34634:debug -- info for debugging only.
34648 34635
34649(fn TYPE LEVEL MESSAGE &rest ARGS)" nil nil) 34636(fn TYPE LEVEL MESSAGE &rest ARGS)")
34650(autoload 'warn "warnings" "\ 34637(autoload 'warn "warnings" "\
34651Display a warning message made from (format-message MESSAGE ARGS...). 34638Display a warning message made from (format-message MESSAGE ARGS...).
34652Aside from generating the message with `format-message', 34639Aside from generating the message with `format-message',
34653this is equivalent to `display-warning', using 34640this is equivalent to `display-warning', using
34654`emacs' as the type and `:warning' as the level. 34641`emacs' as the type and `:warning' as the level.
34655 34642
34656(fn MESSAGE &rest ARGS)" nil nil) 34643(fn MESSAGE &rest ARGS)")
34657(register-definition-prefixes "warnings" '("warning")) 34644(register-definition-prefixes "warnings" '("warning"))
34658 34645
34659 34646
@@ -34667,7 +34654,7 @@ buffer, the target of the links, and the permission bits of the
34667files. After typing \\[wdired-finish-edit], Emacs modifies the files and 34654files. After typing \\[wdired-finish-edit], Emacs modifies the files and
34668directories to reflect your edits. 34655directories to reflect your edits.
34669 34656
34670See `wdired-mode'." t nil) 34657See `wdired-mode'." t)
34671(register-definition-prefixes "wdired" '("wdired-")) 34658(register-definition-prefixes "wdired" '("wdired-"))
34672 34659
34673 34660
@@ -34680,7 +34667,7 @@ See the documentation for the `webjump-sites' variable for how to customize the
34680hotlist. 34667hotlist.
34681 34668
34682Please submit bug reports and other feedback to the author, Neil W. Van Dyke 34669Please submit bug reports and other feedback to the author, Neil W. Van Dyke
34683<nwv@acm.org>." t nil) 34670<nwv@acm.org>." t)
34684(register-definition-prefixes "webjump" '("webjump-")) 34671(register-definition-prefixes "webjump" '("webjump-"))
34685 34672
34686 34673
@@ -34717,7 +34704,7 @@ evaluate `(default-value \\='which-function-mode)'.
34717The mode's hook is called both when the mode is enabled and when 34704The mode's hook is called both when the mode is enabled and when
34718it is disabled. 34705it is disabled.
34719 34706
34720(fn &optional ARG)" t nil) 34707(fn &optional ARG)" t)
34721(register-definition-prefixes "which-func" '("which-func")) 34708(register-definition-prefixes "which-func" '("which-func"))
34722 34709
34723 34710
@@ -34747,7 +34734,7 @@ evaluate `whitespace-mode'.
34747The mode's hook is called both when the mode is enabled and when 34734The mode's hook is called both when the mode is enabled and when
34748it is disabled. 34735it is disabled.
34749 34736
34750(fn &optional ARG)" t nil) 34737(fn &optional ARG)" t)
34751(autoload 'whitespace-newline-mode "whitespace" "\ 34738(autoload 'whitespace-newline-mode "whitespace" "\
34752Toggle newline visualization (Whitespace Newline mode). 34739Toggle newline visualization (Whitespace Newline mode).
34753 34740
@@ -34773,7 +34760,7 @@ evaluate `whitespace-newline-mode'.
34773The mode's hook is called both when the mode is enabled and when 34760The mode's hook is called both when the mode is enabled and when
34774it is disabled. 34761it is disabled.
34775 34762
34776(fn &optional ARG)" t nil) 34763(fn &optional ARG)" t)
34777(defvar global-whitespace-mode nil "\ 34764(defvar global-whitespace-mode nil "\
34778Non-nil if Global Whitespace mode is enabled. 34765Non-nil if Global Whitespace mode is enabled.
34779See the `global-whitespace-mode' command 34766See the `global-whitespace-mode' command
@@ -34803,7 +34790,7 @@ evaluate `(default-value \\='global-whitespace-mode)'.
34803The mode's hook is called both when the mode is enabled and when 34790The mode's hook is called both when the mode is enabled and when
34804it is disabled. 34791it is disabled.
34805 34792
34806(fn &optional ARG)" t nil) 34793(fn &optional ARG)" t)
34807(defvar global-whitespace-newline-mode nil "\ 34794(defvar global-whitespace-newline-mode nil "\
34808Non-nil if Global Whitespace-Newline mode is enabled. 34795Non-nil if Global Whitespace-Newline mode is enabled.
34809See the `global-whitespace-newline-mode' command 34796See the `global-whitespace-newline-mode' command
@@ -34837,7 +34824,7 @@ evaluate `(default-value \\='global-whitespace-newline-mode)'.
34837The mode's hook is called both when the mode is enabled and when 34824The mode's hook is called both when the mode is enabled and when
34838it is disabled. 34825it is disabled.
34839 34826
34840(fn &optional ARG)" t nil) 34827(fn &optional ARG)" t)
34841(autoload 'whitespace-toggle-options "whitespace" "\ 34828(autoload 'whitespace-toggle-options "whitespace" "\
34842Toggle local `whitespace-mode' options. 34829Toggle local `whitespace-mode' options.
34843 34830
@@ -34908,7 +34895,7 @@ The valid symbols are:
34908 34895
34909See `whitespace-style' and `indent-tabs-mode' for documentation. 34896See `whitespace-style' and `indent-tabs-mode' for documentation.
34910 34897
34911(fn ARG)" t nil) 34898(fn ARG)" t)
34912(autoload 'global-whitespace-toggle-options "whitespace" "\ 34899(autoload 'global-whitespace-toggle-options "whitespace" "\
34913Toggle global `whitespace-mode' options. 34900Toggle global `whitespace-mode' options.
34914 34901
@@ -34981,7 +34968,7 @@ The valid symbols are:
34981 34968
34982See `whitespace-style' and `indent-tabs-mode' for documentation. 34969See `whitespace-style' and `indent-tabs-mode' for documentation.
34983 34970
34984(fn ARG)" t nil) 34971(fn ARG)" t)
34985(autoload 'whitespace-cleanup "whitespace" "\ 34972(autoload 'whitespace-cleanup "whitespace" "\
34986Cleanup some blank problems in all buffer or at region. 34973Cleanup some blank problems in all buffer or at region.
34987 34974
@@ -35033,7 +35020,7 @@ The problems cleaned up are:
35033 `space-after-tab::space', replace TABs by SPACEs. 35020 `space-after-tab::space', replace TABs by SPACEs.
35034 35021
35035See `whitespace-style', `indent-tabs-mode' and `tab-width' for 35022See `whitespace-style', `indent-tabs-mode' and `tab-width' for
35036documentation." t nil) 35023documentation." t)
35037(autoload 'whitespace-cleanup-region "whitespace" "\ 35024(autoload 'whitespace-cleanup-region "whitespace" "\
35038Cleanup some blank problems at region. 35025Cleanup some blank problems at region.
35039 35026
@@ -35074,13 +35061,13 @@ The problems cleaned up are:
35074See `whitespace-style', `indent-tabs-mode' and `tab-width' for 35061See `whitespace-style', `indent-tabs-mode' and `tab-width' for
35075documentation. 35062documentation.
35076 35063
35077(fn START END)" t nil) 35064(fn START END)" t)
35078(autoload 'whitespace-report "whitespace" "\ 35065(autoload 'whitespace-report "whitespace" "\
35079Report some whitespace problems in buffer. 35066Report some whitespace problems in buffer.
35080 35067
35081Perform `whitespace-report-region' on the current buffer. 35068Perform `whitespace-report-region' on the current buffer.
35082 35069
35083(fn &optional FORCE REPORT-IF-BOGUS)" t nil) 35070(fn &optional FORCE REPORT-IF-BOGUS)" t)
35084(autoload 'whitespace-report-region "whitespace" "\ 35071(autoload 'whitespace-report-region "whitespace" "\
35085Report some whitespace problems in a region. 35072Report some whitespace problems in a region.
35086 35073
@@ -35118,7 +35105,7 @@ See `whitespace-style' for documentation.
35118See also `whitespace-cleanup' and `whitespace-cleanup-region' for 35105See also `whitespace-cleanup' and `whitespace-cleanup-region' for
35119cleaning up these problems. 35106cleaning up these problems.
35120 35107
35121(fn START END &optional FORCE REPORT-IF-BOGUS)" t nil) 35108(fn START END &optional FORCE REPORT-IF-BOGUS)" t)
35122(register-definition-prefixes "whitespace" '("whitespace-")) 35109(register-definition-prefixes "whitespace" '("whitespace-"))
35123 35110
35124 35111
@@ -35127,15 +35114,15 @@ cleaning up these problems.
35127(autoload 'widget-browse-at "wid-browse" "\ 35114(autoload 'widget-browse-at "wid-browse" "\
35128Browse the widget under point. 35115Browse the widget under point.
35129 35116
35130(fn POS)" t nil) 35117(fn POS)" t)
35131(autoload 'widget-browse "wid-browse" "\ 35118(autoload 'widget-browse "wid-browse" "\
35132Create a widget browser for WIDGET. 35119Create a widget browser for WIDGET.
35133 35120
35134(fn WIDGET)" t nil) 35121(fn WIDGET)" t)
35135(autoload 'widget-browse-other-window "wid-browse" "\ 35122(autoload 'widget-browse-other-window "wid-browse" "\
35136Show widget browser for WIDGET in other window. 35123Show widget browser for WIDGET in other window.
35137 35124
35138(fn &optional WIDGET)" t nil) 35125(fn &optional WIDGET)" t)
35139(autoload 'widget-minor-mode "wid-browse" "\ 35126(autoload 'widget-minor-mode "wid-browse" "\
35140Minor mode for traversing widgets. 35127Minor mode for traversing widgets.
35141 35128
@@ -35153,7 +35140,7 @@ evaluate `widget-minor-mode'.
35153The mode's hook is called both when the mode is enabled and when 35140The mode's hook is called both when the mode is enabled and when
35154it is disabled. 35141it is disabled.
35155 35142
35156(fn &optional ARG)" t nil) 35143(fn &optional ARG)" t)
35157(register-definition-prefixes "wid-browse" '("widget-")) 35144(register-definition-prefixes "wid-browse" '("widget-"))
35158 35145
35159 35146
@@ -35162,36 +35149,36 @@ it is disabled.
35162(autoload 'widgetp "wid-edit" "\ 35149(autoload 'widgetp "wid-edit" "\
35163Return non-nil if WIDGET is a widget. 35150Return non-nil if WIDGET is a widget.
35164 35151
35165(fn WIDGET)" nil nil) 35152(fn WIDGET)")
35166(autoload 'widget-prompt-value "wid-edit" "\ 35153(autoload 'widget-prompt-value "wid-edit" "\
35167Prompt for a value matching WIDGET, using PROMPT. 35154Prompt for a value matching WIDGET, using PROMPT.
35168The current value is assumed to be VALUE, unless UNBOUND is non-nil. 35155The current value is assumed to be VALUE, unless UNBOUND is non-nil.
35169 35156
35170(fn WIDGET PROMPT &optional VALUE UNBOUND)" nil nil) 35157(fn WIDGET PROMPT &optional VALUE UNBOUND)")
35171(autoload 'widget-create "wid-edit" "\ 35158(autoload 'widget-create "wid-edit" "\
35172Create widget of TYPE. 35159Create widget of TYPE.
35173The optional ARGS are additional keyword arguments. 35160The optional ARGS are additional keyword arguments.
35174 35161
35175(fn TYPE &rest ARGS)" nil nil) 35162(fn TYPE &rest ARGS)")
35176(autoload 'widget-delete "wid-edit" "\ 35163(autoload 'widget-delete "wid-edit" "\
35177Delete WIDGET. 35164Delete WIDGET.
35178 35165
35179(fn WIDGET)" nil nil) 35166(fn WIDGET)")
35180(autoload 'widget-convert "wid-edit" "\ 35167(autoload 'widget-convert "wid-edit" "\
35181Convert TYPE to a widget without inserting it in the buffer. 35168Convert TYPE to a widget without inserting it in the buffer.
35182The optional ARGS are additional keyword arguments. 35169The optional ARGS are additional keyword arguments.
35183 35170
35184(fn TYPE &rest ARGS)" nil nil) 35171(fn TYPE &rest ARGS)")
35185(autoload 'widget-insert "wid-edit" "\ 35172(autoload 'widget-insert "wid-edit" "\
35186Call `insert' with ARGS even if surrounding text is read only. 35173Call `insert' with ARGS even if surrounding text is read only.
35187 35174
35188(fn &rest ARGS)" nil nil) 35175(fn &rest ARGS)")
35189(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 [(control 109)] 'widget-button-press) map) "\ 35176(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 [(control 109)] 'widget-button-press) map) "\
35190Keymap containing useful binding for buffers containing widgets. 35177Keymap containing useful binding for buffers containing widgets.
35191Recommended as a parent keymap for modes using widgets. 35178Recommended as a parent keymap for modes using widgets.
35192Note that such modes will need to require wid-edit.") 35179Note that such modes will need to require wid-edit.")
35193(autoload 'widget-setup "wid-edit" "\ 35180(autoload 'widget-setup "wid-edit" "\
35194Setup current buffer so editing string widgets works." nil nil) 35181Setup current buffer so editing string widgets works.")
35195(register-definition-prefixes "wid-edit" '("widget-")) 35182(register-definition-prefixes "wid-edit" '("widget-"))
35196 35183
35197 35184
@@ -35206,7 +35193,7 @@ it is relative to the top edge (for positive ARG) or the bottom edge
35206If no window is at the desired location, an error is signaled 35193If no window is at the desired location, an error is signaled
35207unless `windmove-create-window' is non-nil and a new window is created. 35194unless `windmove-create-window' is non-nil and a new window is created.
35208 35195
35209(fn &optional ARG)" t nil) 35196(fn &optional ARG)" t)
35210(autoload 'windmove-up "windmove" "\ 35197(autoload 'windmove-up "windmove" "\
35211Select the window above the current one. 35198Select the window above the current one.
35212With no prefix argument, or with prefix argument equal to zero, \"up\" 35199With no prefix argument, or with prefix argument equal to zero, \"up\"
@@ -35216,7 +35203,7 @@ negative ARG) of the current window.
35216If no window is at the desired location, an error is signaled 35203If no window is at the desired location, an error is signaled
35217unless `windmove-create-window' is non-nil and a new window is created. 35204unless `windmove-create-window' is non-nil and a new window is created.
35218 35205
35219(fn &optional ARG)" t nil) 35206(fn &optional ARG)" t)
35220(autoload 'windmove-right "windmove" "\ 35207(autoload 'windmove-right "windmove" "\
35221Select the window to the right of the current one. 35208Select the window to the right of the current one.
35222With no prefix argument, or with prefix argument equal to zero, 35209With no prefix argument, or with prefix argument equal to zero,
@@ -35226,7 +35213,7 @@ bottom edge (for negative ARG) of the current window.
35226If no window is at the desired location, an error is signaled 35213If no window is at the desired location, an error is signaled
35227unless `windmove-create-window' is non-nil and a new window is created. 35214unless `windmove-create-window' is non-nil and a new window is created.
35228 35215
35229(fn &optional ARG)" t nil) 35216(fn &optional ARG)" t)
35230(autoload 'windmove-down "windmove" "\ 35217(autoload 'windmove-down "windmove" "\
35231Select the window below the current one. 35218Select the window below the current one.
35232With no prefix argument, or with prefix argument equal to zero, 35219With no prefix argument, or with prefix argument equal to zero,
@@ -35236,7 +35223,7 @@ it is relative to the left edge (for positive ARG) or the right edge
35236If no window is at the desired location, an error is signaled 35223If no window is at the desired location, an error is signaled
35237unless `windmove-create-window' is non-nil and a new window is created. 35224unless `windmove-create-window' is non-nil and a new window is created.
35238 35225
35239(fn &optional ARG)" t nil) 35226(fn &optional ARG)" t)
35240(defvar windmove-mode t "\ 35227(defvar windmove-mode t "\
35241Non-nil if Windmove mode is enabled. 35228Non-nil if Windmove mode is enabled.
35242See the `windmove-mode' command 35229See the `windmove-mode' command
@@ -35259,7 +35246,7 @@ evaluate `(default-value \\='windmove-mode)'.
35259The mode's hook is called both when the mode is enabled and when 35246The mode's hook is called both when the mode is enabled and when
35260it is disabled. 35247it is disabled.
35261 35248
35262(fn &optional ARG)" t nil) 35249(fn &optional ARG)" t)
35263(autoload 'windmove-default-keybindings "windmove" "\ 35250(autoload 'windmove-default-keybindings "windmove" "\
35264Set up keybindings for `windmove'. 35251Set up keybindings for `windmove'.
35265Keybindings are of the form MODIFIERS-{left,right,up,down}, 35252Keybindings are of the form MODIFIERS-{left,right,up,down},
@@ -35268,43 +35255,43 @@ If MODIFIERS is `none', the keybindings will be directly bound to
35268the arrow keys. 35255the arrow keys.
35269Default value of MODIFIERS is `shift'. 35256Default value of MODIFIERS is `shift'.
35270 35257
35271(fn &optional MODIFIERS)" t nil) 35258(fn &optional MODIFIERS)" t)
35272(autoload 'windmove-display-left "windmove" "\ 35259(autoload 'windmove-display-left "windmove" "\
35273Display the next buffer in window to the left of the current one. 35260Display the next buffer in window to the left of the current one.
35274See the logic of the prefix ARG and `windmove-display-no-select' 35261See the logic of the prefix ARG and `windmove-display-no-select'
35275in `windmove-display-in-direction'. 35262in `windmove-display-in-direction'.
35276 35263
35277(fn &optional ARG)" t nil) 35264(fn &optional ARG)" t)
35278(autoload 'windmove-display-up "windmove" "\ 35265(autoload 'windmove-display-up "windmove" "\
35279Display the next buffer in window above the current one. 35266Display the next buffer in window above the current one.
35280See the logic of the prefix ARG and `windmove-display-no-select' 35267See the logic of the prefix ARG and `windmove-display-no-select'
35281in `windmove-display-in-direction'. 35268in `windmove-display-in-direction'.
35282 35269
35283(fn &optional ARG)" t nil) 35270(fn &optional ARG)" t)
35284(autoload 'windmove-display-right "windmove" "\ 35271(autoload 'windmove-display-right "windmove" "\
35285Display the next buffer in window to the right of the current one. 35272Display the next buffer in window to the right of the current one.
35286See the logic of the prefix ARG and `windmove-display-no-select' 35273See the logic of the prefix ARG and `windmove-display-no-select'
35287in `windmove-display-in-direction'. 35274in `windmove-display-in-direction'.
35288 35275
35289(fn &optional ARG)" t nil) 35276(fn &optional ARG)" t)
35290(autoload 'windmove-display-down "windmove" "\ 35277(autoload 'windmove-display-down "windmove" "\
35291Display the next buffer in window below the current one. 35278Display the next buffer in window below the current one.
35292See the logic of the prefix ARG and `windmove-display-no-select' 35279See the logic of the prefix ARG and `windmove-display-no-select'
35293in `windmove-display-in-direction'. 35280in `windmove-display-in-direction'.
35294 35281
35295(fn &optional ARG)" t nil) 35282(fn &optional ARG)" t)
35296(autoload 'windmove-display-same-window "windmove" "\ 35283(autoload 'windmove-display-same-window "windmove" "\
35297Display the next buffer in the same window. 35284Display the next buffer in the same window.
35298 35285
35299(fn &optional ARG)" t nil) 35286(fn &optional ARG)" t)
35300(autoload 'windmove-display-new-frame "windmove" "\ 35287(autoload 'windmove-display-new-frame "windmove" "\
35301Display the next buffer in a new frame. 35288Display the next buffer in a new frame.
35302 35289
35303(fn &optional ARG)" t nil) 35290(fn &optional ARG)" t)
35304(autoload 'windmove-display-new-tab "windmove" "\ 35291(autoload 'windmove-display-new-tab "windmove" "\
35305Display the next buffer in a new tab. 35292Display the next buffer in a new tab.
35306 35293
35307(fn &optional ARG)" t nil) 35294(fn &optional ARG)" t)
35308(autoload 'windmove-display-default-keybindings "windmove" "\ 35295(autoload 'windmove-display-default-keybindings "windmove" "\
35309Set up keybindings for directional buffer display. 35296Set up keybindings for directional buffer display.
35310Keys are bound to commands that display the next buffer in the specified 35297Keys are bound to commands that display the next buffer in the specified
@@ -35314,31 +35301,31 @@ If MODIFIERS is `none', the keybindings will be directly bound to
35314the arrow keys. 35301the arrow keys.
35315Default value of MODIFIERS is `shift-meta'. 35302Default value of MODIFIERS is `shift-meta'.
35316 35303
35317(fn &optional MODIFIERS)" t nil) 35304(fn &optional MODIFIERS)" t)
35318(autoload 'windmove-delete-left "windmove" "\ 35305(autoload 'windmove-delete-left "windmove" "\
35319Delete the window to the left of the current one. 35306Delete the window to the left of the current one.
35320If prefix ARG is \\[universal-argument], delete the selected window and 35307If prefix ARG is \\[universal-argument], delete the selected window and
35321select the window that was to the left of the current one. 35308select the window that was to the left of the current one.
35322 35309
35323(fn &optional ARG)" t nil) 35310(fn &optional ARG)" t)
35324(autoload 'windmove-delete-up "windmove" "\ 35311(autoload 'windmove-delete-up "windmove" "\
35325Delete the window above the current one. 35312Delete the window above the current one.
35326If prefix ARG is \\[universal-argument], delete the selected window and 35313If prefix ARG is \\[universal-argument], delete the selected window and
35327select the window that was above the current one. 35314select the window that was above the current one.
35328 35315
35329(fn &optional ARG)" t nil) 35316(fn &optional ARG)" t)
35330(autoload 'windmove-delete-right "windmove" "\ 35317(autoload 'windmove-delete-right "windmove" "\
35331Delete the window to the right of the current one. 35318Delete the window to the right of the current one.
35332If prefix ARG is \\[universal-argument], delete the selected window and 35319If prefix ARG is \\[universal-argument], delete the selected window and
35333select the window that was to the right of the current one. 35320select the window that was to the right of the current one.
35334 35321
35335(fn &optional ARG)" t nil) 35322(fn &optional ARG)" t)
35336(autoload 'windmove-delete-down "windmove" "\ 35323(autoload 'windmove-delete-down "windmove" "\
35337Delete the window below the current one. 35324Delete the window below the current one.
35338If prefix ARG is \\[universal-argument], delete the selected window and 35325If prefix ARG is \\[universal-argument], delete the selected window and
35339select the window that was below the current one. 35326select the window that was below the current one.
35340 35327
35341(fn &optional ARG)" t nil) 35328(fn &optional ARG)" t)
35342(autoload 'windmove-delete-default-keybindings "windmove" "\ 35329(autoload 'windmove-delete-default-keybindings "windmove" "\
35343Set up keybindings for directional window deletion. 35330Set up keybindings for directional window deletion.
35344Keys are bound to commands that delete windows in the specified 35331Keys are bound to commands that delete windows in the specified
@@ -35349,15 +35336,15 @@ If PREFIX is `none', no prefix is used. If MODIFIERS is `none',
35349the keybindings are directly bound to the arrow keys. 35336the keybindings are directly bound to the arrow keys.
35350Default value of PREFIX is \\`C-x' and MODIFIERS is `shift'. 35337Default value of PREFIX is \\`C-x' and MODIFIERS is `shift'.
35351 35338
35352(fn &optional PREFIX MODIFIERS)" t nil) 35339(fn &optional PREFIX MODIFIERS)" t)
35353(autoload 'windmove-swap-states-left "windmove" "\ 35340(autoload 'windmove-swap-states-left "windmove" "\
35354Swap the states with the window on the left from the current one." t nil) 35341Swap the states with the window on the left from the current one." t)
35355(autoload 'windmove-swap-states-up "windmove" "\ 35342(autoload 'windmove-swap-states-up "windmove" "\
35356Swap the states with the window above from the current one." t nil) 35343Swap the states with the window above from the current one." t)
35357(autoload 'windmove-swap-states-down "windmove" "\ 35344(autoload 'windmove-swap-states-down "windmove" "\
35358Swap the states with the window below from the current one." t nil) 35345Swap the states with the window below from the current one." t)
35359(autoload 'windmove-swap-states-right "windmove" "\ 35346(autoload 'windmove-swap-states-right "windmove" "\
35360Swap the states with the window on the right from the current one." t nil) 35347Swap the states with the window on the right from the current one." t)
35361(autoload 'windmove-swap-states-default-keybindings "windmove" "\ 35348(autoload 'windmove-swap-states-default-keybindings "windmove" "\
35362Set up keybindings for directional window swap states. 35349Set up keybindings for directional window swap states.
35363Keys are bound to commands that swap the states of the selected window 35350Keys are bound to commands that swap the states of the selected window
@@ -35368,7 +35355,7 @@ If MODIFIERS is `none', the keybindings will be directly bound to the
35368arrow keys. 35355arrow keys.
35369Default value of MODIFIERS is `shift-super'. 35356Default value of MODIFIERS is `shift-super'.
35370 35357
35371(fn &optional MODIFIERS)" t nil) 35358(fn &optional MODIFIERS)" t)
35372(register-definition-prefixes "windmove" '("windmove-")) 35359(register-definition-prefixes "windmove" '("windmove-"))
35373 35360
35374 35361
@@ -35406,7 +35393,7 @@ evaluate `(default-value \\='winner-mode)'.
35406The mode's hook is called both when the mode is enabled and when 35393The mode's hook is called both when the mode is enabled and when
35407it is disabled. 35394it is disabled.
35408 35395
35409(fn &optional ARG)" t nil) 35396(fn &optional ARG)" t)
35410(register-definition-prefixes "winner" '("winner-")) 35397(register-definition-prefixes "winner" '("winner-"))
35411 35398
35412 35399
@@ -35440,9 +35427,9 @@ updated (e.g. to re-interpret the current directory).
35440Used non-interactively, arguments are optional: if given then TOPIC 35427Used non-interactively, arguments are optional: if given then TOPIC
35441should be a topic string and non-nil RE-CACHE forces re-caching. 35428should be a topic string and non-nil RE-CACHE forces re-caching.
35442 35429
35443(fn &optional TOPIC RE-CACHE)" t nil) 35430(fn &optional TOPIC RE-CACHE)" t)
35444(autoload 'woman-dired-find-file "woman" "\ 35431(autoload 'woman-dired-find-file "woman" "\
35445In dired, run the WoMan man-page browser on this file." t nil) 35432In dired, run the WoMan man-page browser on this file." t)
35446(autoload 'woman-find-file "woman" "\ 35433(autoload 'woman-find-file "woman" "\
35447Find, decode and browse a specific UN*X man-page source file FILE-NAME. 35434Find, decode and browse a specific UN*X man-page source file FILE-NAME.
35448Use existing buffer if possible; reformat only if prefix arg given. 35435Use existing buffer if possible; reformat only if prefix arg given.
@@ -35452,11 +35439,11 @@ No external programs are used, except that `gunzip' will be used to
35452decompress the file if appropriate. See the documentation for the 35439decompress the file if appropriate. See the documentation for the
35453`woman' command for further details. 35440`woman' command for further details.
35454 35441
35455(fn FILE-NAME &optional REFORMAT)" t nil) 35442(fn FILE-NAME &optional REFORMAT)" t)
35456(autoload 'woman-bookmark-jump "woman" "\ 35443(autoload 'woman-bookmark-jump "woman" "\
35457Default bookmark handler for Woman buffers. 35444Default bookmark handler for Woman buffers.
35458 35445
35459(fn BOOKMARK)" nil nil) 35446(fn BOOKMARK)")
35460(register-definition-prefixes "woman" '("WoMan-" "woman")) 35447(register-definition-prefixes "woman" '("WoMan-" "woman"))
35461 35448
35462 35449
@@ -35482,7 +35469,7 @@ evaluate `word-wrap-whitespace-mode'.
35482The mode's hook is called both when the mode is enabled and when 35469The mode's hook is called both when the mode is enabled and when
35483it is disabled. 35470it is disabled.
35484 35471
35485(fn &optional ARG)" t nil) 35472(fn &optional ARG)" t)
35486(put 'global-word-wrap-whitespace-mode 'globalized-minor-mode t) 35473(put 'global-word-wrap-whitespace-mode 'globalized-minor-mode t)
35487(defvar global-word-wrap-whitespace-mode nil "\ 35474(defvar global-word-wrap-whitespace-mode nil "\
35488Non-nil if Global Word-Wrap-Whitespace mode is enabled. 35475Non-nil if Global Word-Wrap-Whitespace mode is enabled.
@@ -35507,7 +35494,7 @@ Word-Wrap-Whitespace mode is enabled in all buffers where
35507See `word-wrap-whitespace-mode' for more information on 35494See `word-wrap-whitespace-mode' for more information on
35508Word-Wrap-Whitespace mode. 35495Word-Wrap-Whitespace mode.
35509 35496
35510(fn &optional ARG)" t nil) 35497(fn &optional ARG)" t)
35511(register-definition-prefixes "word-wrap-mode" '("word-wrap-whitespace-characters")) 35498(register-definition-prefixes "word-wrap-mode" '("word-wrap-whitespace-characters"))
35512 35499
35513 35500
@@ -35544,7 +35531,7 @@ Both features can be combined by providing a cons cell
35544 35531
35545 (symbol-qnames . ALIST). 35532 (symbol-qnames . ALIST).
35546 35533
35547(fn FILE &optional PARSE-DTD PARSE-NS)" nil nil) 35534(fn FILE &optional PARSE-DTD PARSE-NS)")
35548(autoload 'xml-parse-region "xml" "\ 35535(autoload 'xml-parse-region "xml" "\
35549Parse the region from BEG to END in BUFFER. 35536Parse the region from BEG to END in BUFFER.
35550Return the XML parse tree, or raise an error if the region does 35537Return the XML parse tree, or raise an error if the region does
@@ -35571,12 +35558,12 @@ Both features can be combined by providing a cons cell
35571 35558
35572 (symbol-qnames . ALIST). 35559 (symbol-qnames . ALIST).
35573 35560
35574(fn &optional BEG END BUFFER PARSE-DTD PARSE-NS)" nil nil) 35561(fn &optional BEG END BUFFER PARSE-DTD PARSE-NS)")
35575(autoload 'xml-remove-comments "xml" "\ 35562(autoload 'xml-remove-comments "xml" "\
35576Remove XML/HTML comments in the region between BEG and END. 35563Remove XML/HTML comments in the region between BEG and END.
35577All text between the <!-- ... --> markers will be removed. 35564All text between the <!-- ... --> markers will be removed.
35578 35565
35579(fn BEG END)" nil nil) 35566(fn BEG END)")
35580(register-definition-prefixes "xml" '("xml-")) 35567(register-definition-prefixes "xml" '("xml-"))
35581 35568
35582 35569
@@ -35593,30 +35580,30 @@ If there is XML that is not well-formed that looks like an XML
35593declaration, return nil. Otherwise, return t. 35580declaration, return nil. Otherwise, return t.
35594If LIMIT is non-nil, then do not consider characters beyond LIMIT. 35581If LIMIT is non-nil, then do not consider characters beyond LIMIT.
35595 35582
35596(fn &optional LIMIT)" nil nil) 35583(fn &optional LIMIT)")
35597(register-definition-prefixes "xmltok" '("xmltok-")) 35584(register-definition-prefixes "xmltok" '("xmltok-"))
35598 35585
35599 35586
35600;;; Generated autoloads from progmodes/xref.el 35587;;; Generated autoloads from progmodes/xref.el
35601 35588
35602(push (purecopy '(xref 1 5 0)) package--builtin-versions) 35589(push (purecopy '(xref 1 5 0)) package--builtin-versions)
35603(autoload 'xref-find-backend "xref" nil nil nil) 35590(autoload 'xref-find-backend "xref")
35604(define-obsolete-function-alias 'xref-pop-marker-stack #'xref-go-back "29.1") 35591(define-obsolete-function-alias 'xref-pop-marker-stack #'xref-go-back "29.1")
35605(autoload 'xref-go-back "xref" "\ 35592(autoload 'xref-go-back "xref" "\
35606Go back to the previous position in xref history. 35593Go back to the previous position in xref history.
35607To undo, use \\[xref-go-forward]." t nil) 35594To undo, use \\[xref-go-forward]." t)
35608(autoload 'xref-go-forward "xref" "\ 35595(autoload 'xref-go-forward "xref" "\
35609Got to the point where a previous \\[xref-go-back] was invoked." t nil) 35596Got to the point where a previous \\[xref-go-back] was invoked." t)
35610(autoload 'xref-marker-stack-empty-p "xref" "\ 35597(autoload 'xref-marker-stack-empty-p "xref" "\
35611Whether the xref back-history is empty." nil nil) 35598Whether the xref back-history is empty.")
35612(autoload 'xref-forward-history-empty-p "xref" "\ 35599(autoload 'xref-forward-history-empty-p "xref" "\
35613Whether the xref forward-history is empty." nil nil) 35600Whether the xref forward-history is empty.")
35614(autoload 'xref-show-xrefs "xref" "\ 35601(autoload 'xref-show-xrefs "xref" "\
35615Display some Xref values produced by FETCHER using DISPLAY-ACTION. 35602Display some Xref values produced by FETCHER using DISPLAY-ACTION.
35616The meanings of both arguments are the same as documented in 35603The meanings of both arguments are the same as documented in
35617`xref-show-xrefs-function'. 35604`xref-show-xrefs-function'.
35618 35605
35619(fn FETCHER DISPLAY-ACTION)" nil nil) 35606(fn FETCHER DISPLAY-ACTION)")
35620(autoload 'xref-find-definitions "xref" "\ 35607(autoload 'xref-find-definitions "xref" "\
35621Find the definition of the identifier at point. 35608Find the definition of the identifier at point.
35622With prefix argument or when there's no identifier at point, 35609With prefix argument or when there's no identifier at point,
@@ -35629,15 +35616,15 @@ buffer where the user can select from the list.
35629 35616
35630Use \\[xref-go-back] to return back to where you invoked this command. 35617Use \\[xref-go-back] to return back to where you invoked this command.
35631 35618
35632(fn IDENTIFIER)" t nil) 35619(fn IDENTIFIER)" t)
35633(autoload 'xref-find-definitions-other-window "xref" "\ 35620(autoload 'xref-find-definitions-other-window "xref" "\
35634Like `xref-find-definitions' but switch to the other window. 35621Like `xref-find-definitions' but switch to the other window.
35635 35622
35636(fn IDENTIFIER)" t nil) 35623(fn IDENTIFIER)" t)
35637(autoload 'xref-find-definitions-other-frame "xref" "\ 35624(autoload 'xref-find-definitions-other-frame "xref" "\
35638Like `xref-find-definitions' but switch to the other frame. 35625Like `xref-find-definitions' but switch to the other frame.
35639 35626
35640(fn IDENTIFIER)" t nil) 35627(fn IDENTIFIER)" t)
35641(autoload 'xref-find-references "xref" "\ 35628(autoload 'xref-find-references "xref" "\
35642Find references to the identifier at point. 35629Find references to the identifier at point.
35643This command might prompt for the identifier as needed, perhaps 35630This command might prompt for the identifier as needed, perhaps
@@ -35646,24 +35633,24 @@ With prefix argument, or if `xref-prompt-for-identifier' is t,
35646always prompt for the identifier. If `xref-prompt-for-identifier' 35633always prompt for the identifier. If `xref-prompt-for-identifier'
35647is nil, prompt only if there's no usable symbol at point. 35634is nil, prompt only if there's no usable symbol at point.
35648 35635
35649(fn IDENTIFIER)" t nil) 35636(fn IDENTIFIER)" t)
35650(autoload 'xref-find-definitions-at-mouse "xref" "\ 35637(autoload 'xref-find-definitions-at-mouse "xref" "\
35651Find the definition of identifier at or around mouse click. 35638Find the definition of identifier at or around mouse click.
35652This command is intended to be bound to a mouse event. 35639This command is intended to be bound to a mouse event.
35653 35640
35654(fn EVENT)" t nil) 35641(fn EVENT)" t)
35655(autoload 'xref-find-references-at-mouse "xref" "\ 35642(autoload 'xref-find-references-at-mouse "xref" "\
35656Find references to the identifier at or around mouse click. 35643Find references to the identifier at or around mouse click.
35657This command is intended to be bound to a mouse event. 35644This command is intended to be bound to a mouse event.
35658 35645
35659(fn EVENT)" t nil) 35646(fn EVENT)" t)
35660(autoload 'xref-find-apropos "xref" "\ 35647(autoload 'xref-find-apropos "xref" "\
35661Find all meaningful symbols that match PATTERN. 35648Find all meaningful symbols that match PATTERN.
35662The argument has the same meaning as in `apropos'. 35649The argument has the same meaning as in `apropos'.
35663See `tags-apropos-additional-actions' for how to augment the 35650See `tags-apropos-additional-actions' for how to augment the
35664output of this command when the backend is etags. 35651output of this command when the backend is etags.
35665 35652
35666(fn PATTERN)" t nil) 35653(fn PATTERN)" t)
35667 (define-key esc-map "." #'xref-find-definitions) 35654 (define-key esc-map "." #'xref-find-definitions)
35668 (define-key esc-map "," #'xref-go-back) 35655 (define-key esc-map "," #'xref-go-back)
35669 (define-key esc-map [?\C-,] #'xref-go-forward) 35656 (define-key esc-map [?\C-,] #'xref-go-forward)
@@ -35679,7 +35666,7 @@ This function uses the Semantic Symbol Reference API, see
35679`semantic-symref-tool-alist' for details on which tools are used, 35666`semantic-symref-tool-alist' for details on which tools are used,
35680and when. 35667and when.
35681 35668
35682(fn SYMBOL DIR)" nil nil) 35669(fn SYMBOL DIR)")
35683(autoload 'xref-matches-in-directory "xref" "\ 35670(autoload 'xref-matches-in-directory "xref" "\
35684Find all matches for REGEXP in directory DIR. 35671Find all matches for REGEXP in directory DIR.
35685Return a list of xref values. 35672Return a list of xref values.
@@ -35687,7 +35674,7 @@ Only files matching some of FILES and none of IGNORES are searched.
35687FILES is a string with glob patterns separated by spaces. 35674FILES is a string with glob patterns separated by spaces.
35688IGNORES is a list of glob patterns for files to ignore. 35675IGNORES is a list of glob patterns for files to ignore.
35689 35676
35690(fn REGEXP FILES DIR IGNORES)" nil nil) 35677(fn REGEXP FILES DIR IGNORES)")
35691(autoload 'xref-matches-in-files "xref" "\ 35678(autoload 'xref-matches-in-files "xref" "\
35692Find all matches for REGEXP in FILES. 35679Find all matches for REGEXP in FILES.
35693Return a list of xref values. 35680Return a list of xref values.
@@ -35696,7 +35683,7 @@ FILES must be a list of absolute file names.
35696See `xref-search-program' and `xref-search-program-alist' for how 35683See `xref-search-program' and `xref-search-program-alist' for how
35697to control which program to use when looking for matches. 35684to control which program to use when looking for matches.
35698 35685
35699(fn REGEXP FILES)" nil nil) 35686(fn REGEXP FILES)")
35700(register-definition-prefixes "xref" '("xref-")) 35687(register-definition-prefixes "xref" '("xref-"))
35701 35688
35702 35689
@@ -35744,7 +35731,7 @@ evaluate `(default-value \\='xterm-mouse-mode)'.
35744The mode's hook is called both when the mode is enabled and when 35731The mode's hook is called both when the mode is enabled and when
35745it is disabled. 35732it is disabled.
35746 35733
35747(fn &optional ARG)" t nil) 35734(fn &optional ARG)" t)
35748(register-definition-prefixes "xt-mouse" '("turn-o" "xt-mouse-epoch" "xterm-mouse-")) 35735(register-definition-prefixes "xt-mouse" '("turn-o" "xt-mouse-epoch" "xterm-mouse-"))
35749 35736
35750 35737
@@ -35755,13 +35742,13 @@ Ask xwidget-webkit to browse URL.
35755NEW-SESSION specifies whether to create a new xwidget-webkit session. 35742NEW-SESSION specifies whether to create a new xwidget-webkit session.
35756Interactively, URL defaults to the string looking like a url around point. 35743Interactively, URL defaults to the string looking like a url around point.
35757 35744
35758(fn URL &optional NEW-SESSION)" t nil) 35745(fn URL &optional NEW-SESSION)" t)
35759(autoload 'xwidget-webkit-bookmark-jump-handler "xwidget" "\ 35746(autoload 'xwidget-webkit-bookmark-jump-handler "xwidget" "\
35760Jump to the web page bookmarked by the bookmark record BOOKMARK. 35747Jump to the web page bookmarked by the bookmark record BOOKMARK.
35761If `xwidget-webkit-bookmark-jump-new-session' is non-nil, create 35748If `xwidget-webkit-bookmark-jump-new-session' is non-nil, create
35762a new xwidget-webkit session, otherwise use an existing session. 35749a new xwidget-webkit session, otherwise use an existing session.
35763 35750
35764(fn BOOKMARK)" nil nil) 35751(fn BOOKMARK)")
35765(register-definition-prefixes "xwidget" '("xwidget-")) 35752(register-definition-prefixes "xwidget" '("xwidget-"))
35766 35753
35767 35754
@@ -35774,7 +35761,7 @@ accepting the media type. The mode has to register itself using
35774the `yank-media-handler' mechanism. 35761the `yank-media-handler' mechanism.
35775 35762
35776Also see `yank-media-types' for a command that lets you explore 35763Also see `yank-media-types' for a command that lets you explore
35777all the different selection types." t nil) 35764all the different selection types." t)
35778(autoload 'yank-media-handler "yank-media" "\ 35765(autoload 'yank-media-handler "yank-media" "\
35779Register HANDLER for dealing with `yank-media' actions for TYPES. 35766Register HANDLER for dealing with `yank-media' actions for TYPES.
35780TYPES should be a MIME media type symbol, a regexp, or a list 35767TYPES should be a MIME media type symbol, a regexp, or a list
@@ -35784,7 +35771,7 @@ HANDLER is a function that will be called with two arguments: The
35784MIME type (a symbol on the form `image/png') and the selection 35771MIME type (a symbol on the form `image/png') and the selection
35785data (a string). 35772data (a string).
35786 35773
35787(fn TYPES HANDLER)" nil nil) 35774(fn TYPES HANDLER)")
35788(register-definition-prefixes "yank-media" '("yank-media-")) 35775(register-definition-prefixes "yank-media" '("yank-media-"))
35789 35776
35790 35777
@@ -35793,9 +35780,9 @@ data (a string).
35793(autoload 'yenc-decode-region "yenc" "\ 35780(autoload 'yenc-decode-region "yenc" "\
35794Yenc decode region between START and END using an internal decoder. 35781Yenc decode region between START and END using an internal decoder.
35795 35782
35796(fn START END)" t nil) 35783(fn START END)" t)
35797(autoload 'yenc-extract-filename "yenc" "\ 35784(autoload 'yenc-extract-filename "yenc" "\
35798Extract file name from an yenc header." nil nil) 35785Extract file name from an yenc header.")
35799(register-definition-prefixes "yenc" '("yenc-")) 35786(register-definition-prefixes "yenc" '("yenc-"))
35800 35787
35801 35788
@@ -35807,7 +35794,7 @@ Extract file name from an yenc header." nil nil)
35807;;; Generated autoloads from play/zone.el 35794;;; Generated autoloads from play/zone.el
35808 35795
35809(autoload 'zone "zone" "\ 35796(autoload 'zone "zone" "\
35810Zone out, completely." t nil) 35797Zone out, completely." t)
35811(register-definition-prefixes "zone" '("zone-")) 35798(register-definition-prefixes "zone" '("zone-"))
35812 35799
35813;;; End of scraped data 35800;;; End of scraped data