aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorK. Handa2016-06-05 20:49:55 +0900
committerK. Handa2016-06-05 20:49:55 +0900
commit4ffe265b5192fd93137cd49fb204efdc4bda2887 (patch)
tree054528efc2f8deb55396df2c871d093ae270be5d
parent096d1347654803ee04771516c58701ddf210d898 (diff)
parent75de3640f147fad8bf1c4a7e393c8e294b9851f6 (diff)
downloademacs-4ffe265b5192fd93137cd49fb204efdc4bda2887.tar.gz
emacs-4ffe265b5192fd93137cd49fb204efdc4bda2887.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
-rw-r--r--doc/lispref/os.texi3
-rw-r--r--doc/misc/tramp.texi10
-rw-r--r--lisp/emacs-lisp/autoload.el95
-rw-r--r--lisp/eshell/esh-mode.el5
-rw-r--r--lisp/isearch.el10
-rw-r--r--lisp/ldefs-boot.el6125
-rw-r--r--lisp/loadup.el10
-rw-r--r--lisp/man.el13
-rw-r--r--lisp/net/tramp-adb.el2
-rw-r--r--lisp/net/tramp-cmds.el2
-rw-r--r--lisp/net/tramp-gvfs.el2
-rw-r--r--lisp/net/tramp-sh.el51
-rw-r--r--lisp/net/tramp.el12
-rw-r--r--lisp/progmodes/cc-langs.el6
-rw-r--r--lisp/version.el50
-rw-r--r--src/w32.c29
16 files changed, 6032 insertions, 393 deletions
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi
index becb691581b..38dde26d03a 100644
--- a/doc/lispref/os.texi
+++ b/doc/lispref/os.texi
@@ -1327,7 +1327,8 @@ If it is @code{t}, the conversion uses Universal Time. If it is
1327a string, the conversion uses the time zone rule equivalent to setting 1327a string, the conversion uses the time zone rule equivalent to setting
1328@env{TZ} to that string. If it is an integer @var{offset}, the 1328@env{TZ} to that string. If it is an integer @var{offset}, the
1329conversion uses a fixed time zone with the given offset and a numeric 1329conversion uses a fixed time zone with the given offset and a numeric
1330abbreviation. If it is a list (@var{offset} @var{abbr}), where 1330abbreviation on POSIX-compatible platforms and an unspecified abbreviation
1331on MS-Windows. If it is a list (@var{offset} @var{abbr}), where
1331@var{offset} is an integer number of seconds east of Universal Time 1332@var{offset} is an integer number of seconds east of Universal Time
1332and @var{abbr} is a string, the conversion uses a fixed time zone with 1333and @var{abbr} is a string, the conversion uses a fixed time zone with
1333the given offset and abbreviation. 1334the given offset and abbreviation.
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 08e5de20c21..894ccbe9c9c 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -1529,16 +1529,6 @@ can they extend beyond the lifetime of the current Emacs session. Set
1529 1529
1530Set @code{password-cache} to @code{nil} to disable password caching. 1530Set @code{password-cache} to @code{nil} to disable password caching.
1531 1531
1532@strong{Implementation Note}: password caching depends on
1533@file{password-cache.el} package. @value{tramp} activates password
1534caching only if @value{tramp} can discover, while Emacs is loading,
1535the package through @code{load-path}.
1536
1537@ifset installchapter
1538@file{password.el} is available from No Gnus or from the @value{tramp}
1539@file{contrib} directory, see @ref{Installation parameters}.
1540@end ifset
1541
1542 1532
1543@node Connection caching 1533@node Connection caching
1544@section Reusing connection related information 1534@section Reusing connection related information
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index 424b8e31936..6473e31e56e 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -537,32 +537,79 @@ Don't try to split prefixes that are already longer than that.")
537 (dolist (def defs) 537 (dolist (def defs)
538 (setq tree (radix-tree-insert tree def t))) 538 (setq tree (radix-tree-insert tree def t)))
539 tree)) 539 tree))
540 (prefixes (list (cons "" tree)))) 540 (prefixes nil))
541 (while 541 ;; Get the root prefixes, that we should include in any case.
542 (let ((newprefixes nil) 542 (radix-tree-iter-subtrees
543 (changes nil)) 543 tree (lambda (prefix subtree)
544 (dolist (pair prefixes) 544 (push (cons prefix subtree) prefixes)))
545 (let ((prefix (car pair))) 545 ;; In some cases, the root prefixes are too short, e.g. if you define
546 (if (or (> (length prefix) autoload-def-prefixes-max-length) 546 ;; "cc-helper" and "c-mode", you'll get "c" in the root prefixes.
547 (radix-tree-lookup (cdr pair) "")) 547 (dolist (pair (prog1 prefixes (setq prefixes nil)))
548 ;; No point splitting it any further. 548 (let ((s (car pair)))
549 (push pair newprefixes) 549 (if (or (> (length s) 2) ;Long enough!
550 (setq changes t) 550 (string-match ".[[:punct:]]\\'" s) ;A real (tho short) prefix?
551 (radix-tree-iter-subtrees 551 (radix-tree-lookup (cdr pair) "")) ;Nothing to expand!
552 (cdr pair) (lambda (sprefix subtree) 552 (push pair prefixes) ;Keep it as is.
553 (push (cons (concat prefix sprefix) subtree) 553 (radix-tree-iter-subtrees
554 newprefixes)))))) 554 (cdr pair) (lambda (prefix subtree)
555 (and changes 555 (push (cons (concat s prefix) subtree) prefixes))))))
556 (or (and (null (cdr prefixes)) (equal "" (caar prefixes))) 556 ;; FIXME: The expansions done below are mostly pointless, such as
557 (<= (length newprefixes) 557 ;; for `yenc', where we replace "yenc-" with an exhaustive list (5
558 autoload-def-prefixes-max-entries)) 558 ;; elements).
559 (setq prefixes newprefixes) 559 ;; (while
560 (< (length prefixes) autoload-def-prefixes-max-entries)))) 560 ;; (let ((newprefixes nil)
561 ;; (changes nil))
562 ;; (dolist (pair prefixes)
563 ;; (let ((prefix (car pair)))
564 ;; (if (or (> (length prefix) autoload-def-prefixes-max-length)
565 ;; (radix-tree-lookup (cdr pair) ""))
566 ;; ;; No point splitting it any further.
567 ;; (push pair newprefixes)
568 ;; (setq changes t)
569 ;; (radix-tree-iter-subtrees
570 ;; (cdr pair) (lambda (sprefix subtree)
571 ;; (push (cons (concat prefix sprefix) subtree)
572 ;; newprefixes))))))
573 ;; (and changes
574 ;; (<= (length newprefixes)
575 ;; autoload-def-prefixes-max-entries)
576 ;; (let ((new nil)
577 ;; (old nil))
578 ;; (dolist (pair prefixes)
579 ;; (unless (memq pair newprefixes) ;Not old
580 ;; (push pair old)))
581 ;; (dolist (pair newprefixes)
582 ;; (unless (memq pair prefixes) ;Not new
583 ;; (push pair new)))
584 ;; (cl-assert new)
585 ;; (message "Expanding %S to %S"
586 ;; (mapcar #'car old) (mapcar #'car new))
587 ;; t)
588 ;; (setq prefixes newprefixes)
589 ;; (< (length prefixes) autoload-def-prefixes-max-entries))))
561 590
562 ;; (message "Final prefixes %s : %S" file (mapcar #'car prefixes)) 591 ;; (message "Final prefixes %s : %S" file (mapcar #'car prefixes))
563 (when prefixes 592 (when prefixes
564 `(if (fboundp 'register-definition-prefixes) 593 (let ((strings
565 (register-definition-prefixes ,file ',(mapcar #'car prefixes)))))) 594 (mapcar
595 (lambda (x)
596 (let ((prefix (car x)))
597 (if (or (> (length prefix) 2) ;Long enough!
598 (string-match ".[[:punct:]]\\'" prefix))
599 prefix
600 ;; Some packages really don't follow the rules.
601 ;; Drop the most egregious cases such as the
602 ;; one-letter prefixes.
603 (let ((dropped ()))
604 (radix-tree-iter-mappings
605 (cdr x) (lambda (s _)
606 (push (concat prefix s) dropped)))
607 (message "Not registering prefix \"%s\" from %s. Affects: %S"
608 prefix file dropped)
609 nil))))
610 prefixes)))
611 `(if (fboundp 'register-definition-prefixes)
612 (register-definition-prefixes ,file ',(delq nil strings)))))))
566 613
567(defun autoload--setup-output (otherbuf outbuf absfile load-name) 614(defun autoload--setup-output (otherbuf outbuf absfile load-name)
568 (let ((outbuf 615 (let ((outbuf
@@ -714,8 +761,10 @@ FILE's modification time."
714 "define-obsolete-variable-alias" 761 "define-obsolete-variable-alias"
715 "define-category" "define-key" 762 "define-category" "define-key"
716 "defgroup" "defface" "defadvice" 763 "defgroup" "defface" "defadvice"
764 "def-edebug-spec"
717 ;; Hmm... this is getting ugly: 765 ;; Hmm... this is getting ugly:
718 "define-widget" 766 "define-widget"
767 "define-erc-response-handler"
719 "defun-rcirc-command")))) 768 "defun-rcirc-command"))))
720 (push (match-string 2) defs)) 769 (push (match-string 2) defs))
721 (forward-sexp 1) 770 (forward-sexp 1)
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el
index 074b94cc75d..104841d999c 100644
--- a/lisp/eshell/esh-mode.el
+++ b/lisp/eshell/esh-mode.el
@@ -380,6 +380,11 @@ and the hook `eshell-exit-hook'."
380 (make-local-variable 'eshell-modules-list) 380 (make-local-variable 'eshell-modules-list)
381 (setq eshell-modules-list modules-list)) 381 (setq eshell-modules-list modules-list))
382 382
383 ;; This is to avoid making the paragraph base direction
384 ;; right-to-left if the first word just happens to start with a
385 ;; strong R2L character.
386 (setq bidi-paragraph-direction 'left-to-right)
387
383 ;; load extension modules into memory. This will cause any global 388 ;; load extension modules into memory. This will cause any global
384 ;; variables they define to be visible, since some of the core 389 ;; variables they define to be visible, since some of the core
385 ;; modules sometimes take advantage of their functionality if used. 390 ;; modules sometimes take advantage of their functionality if used.
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 7360a0b3742..eabf05b0b17 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -1259,6 +1259,11 @@ You can update the global isearch variables by setting new values to
1259 (isearch-adjusted isearch-adjusted) 1259 (isearch-adjusted isearch-adjusted)
1260 (isearch-yank-flag isearch-yank-flag) 1260 (isearch-yank-flag isearch-yank-flag)
1261 (isearch-error isearch-error) 1261 (isearch-error isearch-error)
1262
1263 (multi-isearch-file-list-new multi-isearch-file-list)
1264 (multi-isearch-buffer-list-new multi-isearch-buffer-list)
1265 (multi-isearch-next-buffer-function multi-isearch-next-buffer-current-function)
1266 (multi-isearch-current-buffer-new multi-isearch-current-buffer)
1262 ;;; Don't bind this. We want isearch-search, below, to set it. 1267 ;;; Don't bind this. We want isearch-search, below, to set it.
1263 ;;; And the old value won't matter after that. 1268 ;;; And the old value won't matter after that.
1264 ;;; (isearch-other-end isearch-other-end) 1269 ;;; (isearch-other-end isearch-other-end)
@@ -1313,7 +1318,10 @@ You can update the global isearch variables by setting new values to
1313 isearch-message isearch-new-message 1318 isearch-message isearch-new-message
1314 isearch-forward isearch-new-forward 1319 isearch-forward isearch-new-forward
1315 isearch-regexp-function isearch-new-regexp-function 1320 isearch-regexp-function isearch-new-regexp-function
1316 isearch-case-fold-search isearch-new-case-fold) 1321 isearch-case-fold-search isearch-new-case-fold
1322 multi-isearch-current-buffer multi-isearch-current-buffer-new
1323 multi-isearch-file-list multi-isearch-file-list-new
1324 multi-isearch-buffer-list multi-isearch-buffer-list-new)
1317 1325
1318 ;; Restore the minibuffer message before moving point. 1326 ;; Restore the minibuffer message before moving point.
1319 (funcall (or isearch-message-function #'isearch-message) nil t) 1327 (funcall (or isearch-message-function #'isearch-message) nil t)
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index c9986bef54c..bc5233c6662 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -63,6 +63,8 @@ should return a grid vector array that is the new solution.
63 63
64\(fn BREEDER)" t nil) 64\(fn BREEDER)" t nil)
65 65
66(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "5x5" '("5x5-")))
67
66;;;*** 68;;;***
67 69
68;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (0 0 0 0)) 70;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (0 0 0 0))
@@ -82,6 +84,15 @@ Ada mode is the major mode for editing Ada code.
82 84
83\(fn)" t nil) 85\(fn)" t nil)
84 86
87(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ada-mode" '("ada-")))
88
89;;;***
90
91;;;### (autoloads nil "ada-prj" "progmodes/ada-prj.el" (0 0 0 0))
92;;; Generated autoloads from progmodes/ada-prj.el
93
94(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ada-prj" '("ada-prj-" "ada-old-cross-prefix" "ada-customize")))
95
85;;;*** 96;;;***
86 97
87;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (0 0 0 0)) 98;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (0 0 0 0))
@@ -92,6 +103,8 @@ Insert a descriptive header at the top of the file.
92 103
93\(fn)" t nil) 104\(fn)" t nil)
94 105
106(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ada-stmt" '("ada-")))
107
95;;;*** 108;;;***
96 109
97;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (0 0 0 0)) 110;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (0 0 0 0))
@@ -103,6 +116,8 @@ Completion is available.
103 116
104\(fn FILENAME)" t nil) 117\(fn FILENAME)" t nil)
105 118
119(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ada-xref" '("ada-")))
120
106;;;*** 121;;;***
107 122
108;;;### (autoloads nil "add-log" "vc/add-log.el" (0 0 0 0)) 123;;;### (autoloads nil "add-log" "vc/add-log.el" (0 0 0 0))
@@ -236,6 +251,8 @@ old-style time formats for entries are supported.
236 251
237\(fn OTHER-LOG)" t nil) 252\(fn OTHER-LOG)" t nil)
238 253
254(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "add-log" '("change-log-" "add-log-")))
255
239;;;*** 256;;;***
240 257
241;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (0 0 0 0)) 258;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (0 0 0 0))
@@ -371,6 +388,8 @@ usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
371 388
372(function-put 'defadvice 'lisp-indent-function '2) 389(function-put 'defadvice 'lisp-indent-function '2)
373 390
391(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "advice" '("ad-" "ad--make-advised-docstring" "ad--defalias-fset")))
392
374;;;*** 393;;;***
375 394
376;;;### (autoloads nil "align" "align.el" (0 0 0 0)) 395;;;### (autoloads nil "align" "align.el" (0 0 0 0))
@@ -476,6 +495,8 @@ indented.
476 495
477\(fn)" t nil) 496\(fn)" t nil)
478 497
498(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "align" '("align-" "align--set-marker")))
499
479;;;*** 500;;;***
480 501
481;;;### (autoloads nil "allout" "allout.el" (0 0 0 0)) 502;;;### (autoloads nil "allout" "allout.el" (0 0 0 0))
@@ -836,6 +857,8 @@ for details on preparing Emacs for automatic allout activation.
836 857
837\(fn &optional ARG)" t nil) 858\(fn &optional ARG)" t nil)
838 859
860(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "allout" '("allout-" "count-trailing-whitespace-region" "regexp-sans-escapes" "solicit-char-in-string" "nullify-allout-prefix-data" "produce-allout-mode-menubar-entries" "set-allout-regexp")))
861
839;;;*** 862;;;***
840 863
841;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (0 0 0 864;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (0 0 0
@@ -895,6 +918,8 @@ outline hot-spot navigation (see `allout-mode').
895 918
896\(fn &optional ARG)" t nil) 919\(fn &optional ARG)" t nil)
897 920
921(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "allout-widgets" '("allout-")))
922
898;;;*** 923;;;***
899 924
900;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (0 0 0 0)) 925;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (0 0 0 0))
@@ -916,6 +941,8 @@ directory, so that Emacs will know its current contents.
916 941
917\(fn OPERATION &rest ARGS)" nil nil) 942\(fn OPERATION &rest ARGS)" nil nil)
918 943
944(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ange-ftp" '("ange-ftp-" "ftp-error" "internal-ange-ftp-mode")))
945
919;;;*** 946;;;***
920 947
921;;;### (autoloads nil "animate" "play/animate.el" (0 0 0 0)) 948;;;### (autoloads nil "animate" "play/animate.el" (0 0 0 0))
@@ -948,6 +975,8 @@ the buffer *Birthday-Present-for-Name*.
948 975
949\(fn &optional NAME)" t nil) 976\(fn &optional NAME)" t nil)
950 977
978(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "animate" '("animate-n-steps" "animate-place-char" "animate-step" "animate-initialize" "animation-buffer-name")))
979
951;;;*** 980;;;***
952 981
953;;;### (autoloads nil "ansi-color" "ansi-color.el" (0 0 0 0)) 982;;;### (autoloads nil "ansi-color" "ansi-color.el" (0 0 0 0))
@@ -974,6 +1003,8 @@ This is a good function to put in `comint-output-filter-functions'.
974 1003
975\(fn IGNORED)" nil nil) 1004\(fn IGNORED)" nil nil)
976 1005
1006(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ansi-color" '("ansi-color-" "ansi-color--find-face")))
1007
977;;;*** 1008;;;***
978 1009
979;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (0 0 1010;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (0 0
@@ -1011,6 +1042,8 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'.
1011 1042
1012\(fn)" nil nil) 1043\(fn)" nil nil)
1013 1044
1045(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "antlr-mode" '("antlr-")))
1046
1014;;;*** 1047;;;***
1015 1048
1016;;;### (autoloads nil "appt" "calendar/appt.el" (0 0 0 0)) 1049;;;### (autoloads nil "appt" "calendar/appt.el" (0 0 0 0))
@@ -1032,6 +1065,8 @@ ARG is positive, otherwise off.
1032 1065
1033\(fn &optional ARG)" t nil) 1066\(fn &optional ARG)" t nil)
1034 1067
1068(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "appt" '("appt-")))
1069
1035;;;*** 1070;;;***
1036 1071
1037;;;### (autoloads nil "apropos" "apropos.el" (0 0 0 0)) 1072;;;### (autoloads nil "apropos" "apropos.el" (0 0 0 0))
@@ -1148,6 +1183,8 @@ Returns list of symbols and documentation found.
1148 1183
1149\(fn PATTERN &optional DO-ALL)" t nil) 1184\(fn PATTERN &optional DO-ALL)" t nil)
1150 1185
1186(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "apropos" '("apropos-")))
1187
1151;;;*** 1188;;;***
1152 1189
1153;;;### (autoloads nil "arc-mode" "arc-mode.el" (0 0 0 0)) 1190;;;### (autoloads nil "arc-mode" "arc-mode.el" (0 0 0 0))
@@ -1168,6 +1205,8 @@ archive.
1168 1205
1169\(fn &optional FORCE)" nil nil) 1206\(fn &optional FORCE)" nil nil)
1170 1207
1208(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "arc-mode" '("archive-")))
1209
1171;;;*** 1210;;;***
1172 1211
1173;;;### (autoloads nil "array" "array.el" (0 0 0 0)) 1212;;;### (autoloads nil "array" "array.el" (0 0 0 0))
@@ -1239,6 +1278,8 @@ Entering array mode calls the function `array-mode-hook'.
1239 1278
1240\(fn)" t nil) 1279\(fn)" t nil)
1241 1280
1281(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "array" '("array-" "limit-index" "xor" "current-line" "move-to-column-untabify" "untabify-backward")))
1282
1242;;;*** 1283;;;***
1243 1284
1244;;;### (autoloads nil "artist" "textmodes/artist.el" (0 0 0 0)) 1285;;;### (autoloads nil "artist" "textmodes/artist.el" (0 0 0 0))
@@ -1445,6 +1486,8 @@ Keymap summary
1445 1486
1446\(fn &optional ARG)" t nil) 1487\(fn &optional ARG)" t nil)
1447 1488
1489(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "artist" '("artist-")))
1490
1448;;;*** 1491;;;***
1449 1492
1450;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (0 0 0 0)) 1493;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (0 0 0 0))
@@ -1472,6 +1515,8 @@ Special commands:
1472 1515
1473\(fn)" t nil) 1516\(fn)" t nil)
1474 1517
1518(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "asm-mode" '("asm-")))
1519
1475;;;*** 1520;;;***
1476 1521
1477;;;### (autoloads nil "auth-source" "auth-source.el" (0 0 0 0)) 1522;;;### (autoloads nil "auth-source" "auth-source.el" (0 0 0 0))
@@ -1484,6 +1529,8 @@ let-binding.")
1484 1529
1485(custom-autoload 'auth-source-cache-expiry "auth-source" t) 1530(custom-autoload 'auth-source-cache-expiry "auth-source" t)
1486 1531
1532(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "auth-source" '("auth-source-" "auth-source--" "auto-source--symbol-keyword" "auth-sources")))
1533
1487;;;*** 1534;;;***
1488 1535
1489;;;### (autoloads nil "autoarg" "autoarg.el" (0 0 0 0)) 1536;;;### (autoloads nil "autoarg" "autoarg.el" (0 0 0 0))
@@ -1546,6 +1593,8 @@ This is similar to `autoarg-mode' but rebinds the keypad keys
1546 1593
1547\(fn &optional ARG)" t nil) 1594\(fn &optional ARG)" t nil)
1548 1595
1596(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "autoarg" '("autoarg-kp-digits" "autoarg-kp-digit-argument" "autoarg-kp-mode-map" "autoarg-mode-map" "autoarg-terminate")))
1597
1549;;;*** 1598;;;***
1550 1599
1551;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (0 0 0 0)) 1600;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (0 0 0 0))
@@ -1556,6 +1605,8 @@ Major mode for editing Autoconf configure.ac files.
1556 1605
1557\(fn)" t nil) 1606\(fn)" t nil)
1558 1607
1608(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "autoconf" '("autoconf-mode-" "autoconf-definition-regexp" "autoconf-font-lock-keywords" "autoconf-imenu-generic-expression" "autoconf-current-defun-function")))
1609
1559;;;*** 1610;;;***
1560 1611
1561;;;### (autoloads nil "autoinsert" "autoinsert.el" (0 0 0 0)) 1612;;;### (autoloads nil "autoinsert" "autoinsert.el" (0 0 0 0))
@@ -1595,6 +1646,8 @@ insert a template for the file depending on the mode of the buffer.
1595 1646
1596\(fn &optional ARG)" t nil) 1647\(fn &optional ARG)" t nil)
1597 1648
1649(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "autoinsert" '("auto-insert" "auto-insert-directory" "auto-insert-alist" "auto-insert-prompt" "auto-insert-query")))
1650
1598;;;*** 1651;;;***
1599 1652
1600;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (0 0 0 1653;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (0 0 0
@@ -1647,6 +1700,8 @@ should be non-nil).
1647 1700
1648\(fn)" nil nil) 1701\(fn)" nil nil)
1649 1702
1703(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "autoload" '("make-autoload" "no-update-autoloads" "generate" "autoload-")))
1704
1650;;;*** 1705;;;***
1651 1706
1652;;;### (autoloads nil "autorevert" "autorevert.el" (0 0 0 0)) 1707;;;### (autoloads nil "autorevert" "autorevert.el" (0 0 0 0))
@@ -1736,6 +1791,16 @@ specifies in the mode line.
1736 1791
1737\(fn &optional ARG)" t nil) 1792\(fn &optional ARG)" t nil)
1738 1793
1794(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "autorevert" '("auto-revert-" "global-auto-revert-mode-" "global-auto-revert-ignore-modes" "global-auto-revert-ignore-buffer" "global-auto-revert-non-file-buffers")))
1795
1796;;;***
1797
1798;;;### (autoloads nil "avl-tree" "emacs-lisp/avl-tree.el" (0 0 0
1799;;;;;; 0))
1800;;; Generated autoloads from emacs-lisp/avl-tree.el
1801
1802(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "avl-tree" '("avl-tree-" "avl-tree--")))
1803
1739;;;*** 1804;;;***
1740 1805
1741;;;### (autoloads nil "avoid" "avoid.el" (0 0 0 0)) 1806;;;### (autoloads nil "avoid" "avoid.el" (0 0 0 0))
@@ -1774,6 +1839,8 @@ definition of \"random distance\".)
1774 1839
1775\(fn &optional MODE)" t nil) 1840\(fn &optional MODE)" t nil)
1776 1841
1842(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "avoid" '("mouse-avoidance-")))
1843
1777;;;*** 1844;;;***
1778 1845
1779;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (0 0 0 0)) 1846;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (0 0 0 0))
@@ -1792,6 +1859,8 @@ Run script using `bat-run' and `bat-run-args'.
1792 1859
1793\(fn)" t nil) 1860\(fn)" t nil)
1794 1861
1862(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bat-mode" '("bat-" "bat--syntax-propertize")))
1863
1795;;;*** 1864;;;***
1796 1865
1797;;;### (autoloads nil "battery" "battery.el" (0 0 0 0)) 1866;;;### (autoloads nil "battery" "battery.el" (0 0 0 0))
@@ -1828,6 +1897,8 @@ seconds.
1828 1897
1829\(fn &optional ARG)" t nil) 1898\(fn &optional ARG)" t nil)
1830 1899
1900(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "battery" '("battery-")))
1901
1831;;;*** 1902;;;***
1832 1903
1833;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (0 0 1904;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (0 0
@@ -1865,6 +1936,15 @@ For non-interactive use see also `benchmark-run' and
1865 1936
1866\(fn REPETITIONS FORM)" t nil) 1937\(fn REPETITIONS FORM)" t nil)
1867 1938
1939(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "benchmark" '("benchmark-elapse")))
1940
1941;;;***
1942
1943;;;### (autoloads nil "bib-mode" "textmodes/bib-mode.el" (0 0 0 0))
1944;;; Generated autoloads from textmodes/bib-mode.el
1945
1946(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bib-mode" '("bib-" "unread-" "mark-bib" "return-key-bib" "addbib")))
1947
1868;;;*** 1948;;;***
1869 1949
1870;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (0 0 0 0)) 1950;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (0 0 0 0))
@@ -1956,6 +2036,8 @@ A prefix arg negates the value of `bibtex-search-entry-globally'.
1956 2036
1957\(fn KEY &optional GLOBAL START DISPLAY)" t nil) 2037\(fn KEY &optional GLOBAL START DISPLAY)" t nil)
1958 2038
2039(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bibtex" '("bibtex-")))
2040
1959;;;*** 2041;;;***
1960 2042
1961;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el" 2043;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el"
@@ -1967,6 +2049,15 @@ Major mode for editing BibTeX style files.
1967 2049
1968\(fn)" t nil) 2050\(fn)" t nil)
1969 2051
2052(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bibtex-style" '("bibtex-style-")))
2053
2054;;;***
2055
2056;;;### (autoloads nil "bindat" "emacs-lisp/bindat.el" (0 0 0 0))
2057;;; Generated autoloads from emacs-lisp/bindat.el
2058
2059(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bindat" '("bindat--unpack-" "bindat--pack-" "bindat-" "bindat--fixed-length-alist" "bindat--length-group")))
2060
1970;;;*** 2061;;;***
1971 2062
1972;;;### (autoloads nil "binhex" "mail/binhex.el" (0 0 0 0)) 2063;;;### (autoloads nil "binhex" "mail/binhex.el" (0 0 0 0))
@@ -1991,6 +2082,8 @@ Binhex decode region between START and END.
1991 2082
1992\(fn START END)" t nil) 2083\(fn START END)" t nil)
1993 2084
2085(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "binhex" '("binhex-")))
2086
1994;;;*** 2087;;;***
1995 2088
1996;;;### (autoloads nil "blackbox" "play/blackbox.el" (0 0 0 0)) 2089;;;### (autoloads nil "blackbox" "play/blackbox.el" (0 0 0 0))
@@ -2110,6 +2203,8 @@ a reflection.
2110 2203
2111\(fn NUM)" t nil) 2204\(fn NUM)" t nil)
2112 2205
2206(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "blackbox" '("bb-" "blackbox-mode" "blackbox-mode-map" "blackbox-redefine-key")))
2207
2113;;;*** 2208;;;***
2114 2209
2115;;;### (autoloads nil "bookmark" "bookmark.el" (0 0 0 0)) 2210;;;### (autoloads nil "bookmark" "bookmark.el" (0 0 0 0))
@@ -2303,9 +2398,9 @@ while loading.
2303If you load a file that doesn't contain a proper bookmark alist, you 2398If you load a file that doesn't contain a proper bookmark alist, you
2304will corrupt Emacs's bookmark list. Generally, you should only load 2399will corrupt Emacs's bookmark list. Generally, you should only load
2305in files that were created with the bookmark functions in the first 2400in files that were created with the bookmark functions in the first
2306place. Your own personal bookmark file, `~/.emacs.bmk', is 2401place. Your own personal bookmark file, specified by the variable
2307maintained automatically by Emacs; you shouldn't need to load it 2402`bookmark-default-file', is maintained automatically by Emacs; you
2308explicitly. 2403shouldn't need to load it explicitly.
2309 2404
2310If you load a file containing bookmarks with the same names as 2405If you load a file containing bookmarks with the same names as
2311bookmarks already present in your Emacs, the new bookmarks will get 2406bookmarks already present in your Emacs, the new bookmarks will get
@@ -2334,6 +2429,8 @@ Incremental search of bookmarks, hiding the non-matches as we go.
2334 2429
2335(defalias 'menu-bar-bookmark-map menu-bar-bookmark-map) 2430(defalias 'menu-bar-bookmark-map menu-bar-bookmark-map)
2336 2431
2432(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bookmark" '("bookmark-" "bookmarks-already-loaded" "with-buffer-modified-unmodified" "bookmark--jump-via")))
2433
2337;;;*** 2434;;;***
2338 2435
2339;;;### (autoloads nil "browse-url" "net/browse-url.el" (0 0 0 0)) 2436;;;### (autoloads nil "browse-url" "net/browse-url.el" (0 0 0 0))
@@ -2682,6 +2779,8 @@ from `browse-url-elinks-wrapper'.
2682 2779
2683\(fn URL &optional NEW-WINDOW)" t nil) 2780\(fn URL &optional NEW-WINDOW)" t nil)
2684 2781
2782(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "browse-url" '("browse-url-")))
2783
2685;;;*** 2784;;;***
2686 2785
2687;;;### (autoloads nil "bs" "bs.el" (0 0 0 0)) 2786;;;### (autoloads nil "bs" "bs.el" (0 0 0 0))
@@ -2723,6 +2822,8 @@ name of buffer configuration.
2723 2822
2724\(fn ARG)" t nil) 2823\(fn ARG)" t nil)
2725 2824
2825(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bs" '("bs-" "bs--")))
2826
2726;;;*** 2827;;;***
2727 2828
2728;;;### (autoloads nil "bubbles" "play/bubbles.el" (0 0 0 0)) 2829;;;### (autoloads nil "bubbles" "play/bubbles.el" (0 0 0 0))
@@ -2744,6 +2845,8 @@ columns on its right towards the left.
2744 2845
2745\(fn)" t nil) 2846\(fn)" t nil)
2746 2847
2848(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bubbles" '("bubbles--" "bubbles-")))
2849
2747;;;*** 2850;;;***
2748 2851
2749;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el" 2852;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el"
@@ -2765,6 +2868,16 @@ Like `bug-reference-mode', but only buttonize in comments and strings.
2765 2868
2766\(fn &optional ARG)" t nil) 2869\(fn &optional ARG)" t nil)
2767 2870
2871(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bug-reference" '("bug-reference-")))
2872
2873;;;***
2874
2875;;;### (autoloads nil "byte-opt" "emacs-lisp/byte-opt.el" (0 0 0
2876;;;;;; 0))
2877;;; Generated autoloads from emacs-lisp/byte-opt.el
2878
2879(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "byte-opt" '("byte-" "disassemble-offset")))
2880
2768;;;*** 2881;;;***
2769 2882
2770;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (0 0 0 2883;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (0 0 0
@@ -2886,6 +2999,16 @@ and corresponding effects.
2886 2999
2887\(fn &optional ARG)" nil nil) 3000\(fn &optional ARG)" nil nil)
2888 3001
3002(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bytecomp" '("byte-" "emacs-lisp-file-regexp" "displaying-byte-compile-warnings" "no-byte-compile" "batch-byte-compile-file")))
3003
3004;;;***
3005
3006;;;### (autoloads nil "cal-bahai" "calendar/cal-bahai.el" (0 0 0
3007;;;;;; 0))
3008;;; Generated autoloads from calendar/cal-bahai.el
3009
3010(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-bahai" '("calendar-bahai-" "diary-bahai-" "holiday-bahai-new-year" "holiday-bahai-ridvan" "holiday-bahai")))
3011
2889;;;*** 3012;;;***
2890 3013
2891;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (0 0 0 3014;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (0 0 0
@@ -2894,6 +3017,16 @@ and corresponding effects.
2894 3017
2895(put 'calendar-chinese-time-zone 'risky-local-variable t) 3018(put 'calendar-chinese-time-zone 'risky-local-variable t)
2896 3019
3020(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-china" '("calendar-chinese-" "diary-chinese-" "holiday-chinese-" "holiday-chinese")))
3021
3022;;;***
3023
3024;;;### (autoloads nil "cal-coptic" "calendar/cal-coptic.el" (0 0
3025;;;;;; 0 0))
3026;;; Generated autoloads from calendar/cal-coptic.el
3027
3028(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-coptic" '("calendar-coptic-" "calendar-ethiopic-" "diary-ethiopic-date" "diary-coptic-date")))
3029
2897;;;*** 3030;;;***
2898 3031
2899;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (0 0 0 0)) 3032;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (0 0 0 0))
@@ -2905,6 +3038,16 @@ and corresponding effects.
2905 3038
2906(put 'calendar-current-time-zone-cache 'risky-local-variable t) 3039(put 'calendar-current-time-zone-cache 'risky-local-variable t)
2907 3040
3041(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-dst" '("calendar-" "dst-adjust-time" "dst-in-effect")))
3042
3043;;;***
3044
3045;;;### (autoloads nil "cal-french" "calendar/cal-french.el" (0 0
3046;;;;;; 0 0))
3047;;; Generated autoloads from calendar/cal-french.el
3048
3049(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-french" '("calendar-french-" "diary-french-date")))
3050
2908;;;*** 3051;;;***
2909 3052
2910;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (0 0 3053;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (0 0
@@ -2918,6 +3061,82 @@ from the cursor position.
2918 3061
2919\(fn DEATH-DATE START-YEAR END-YEAR)" t nil) 3062\(fn DEATH-DATE START-YEAR END-YEAR)" t nil)
2920 3063
3064(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-hebrew" '("calendar-hebrew-" "diary-hebrew-" "holiday-hebrew-" "holiday-hebrew")))
3065
3066;;;***
3067
3068;;;### (autoloads nil "cal-html" "calendar/cal-html.el" (0 0 0 0))
3069;;; Generated autoloads from calendar/cal-html.el
3070
3071(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-html" '("cal-html-")))
3072
3073;;;***
3074
3075;;;### (autoloads nil "cal-islam" "calendar/cal-islam.el" (0 0 0
3076;;;;;; 0))
3077;;; Generated autoloads from calendar/cal-islam.el
3078
3079(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-islam" '("calendar-islamic-" "diary-islamic-" "holiday-islamic" "holiday-islamic-new-year")))
3080
3081;;;***
3082
3083;;;### (autoloads nil "cal-iso" "calendar/cal-iso.el" (0 0 0 0))
3084;;; Generated autoloads from calendar/cal-iso.el
3085
3086(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-iso" '("calendar-iso-" "diary-iso-date")))
3087
3088;;;***
3089
3090;;;### (autoloads nil "cal-julian" "calendar/cal-julian.el" (0 0
3091;;;;;; 0 0))
3092;;; Generated autoloads from calendar/cal-julian.el
3093
3094(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-julian" '("calendar-julian-" "calendar-astro-" "holiday-julian" "diary-julian-date" "diary-astro-day-number")))
3095
3096;;;***
3097
3098;;;### (autoloads nil "cal-mayan" "calendar/cal-mayan.el" (0 0 0
3099;;;;;; 0))
3100;;; Generated autoloads from calendar/cal-mayan.el
3101
3102(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-mayan" '("calendar-mayan-" "diary-mayan-date")))
3103
3104;;;***
3105
3106;;;### (autoloads nil "cal-menu" "calendar/cal-menu.el" (0 0 0 0))
3107;;; Generated autoloads from calendar/cal-menu.el
3108
3109(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-menu" '("cal-menu-" "calendar-mouse-view-diary-entries" "calendar-mouse-view-other-diary-entries")))
3110
3111;;;***
3112
3113;;;### (autoloads nil "cal-move" "calendar/cal-move.el" (0 0 0 0))
3114;;; Generated autoloads from calendar/cal-move.el
3115
3116(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-move" '("calendar-")))
3117
3118;;;***
3119
3120;;;### (autoloads nil "cal-persia" "calendar/cal-persia.el" (0 0
3121;;;;;; 0 0))
3122;;; Generated autoloads from calendar/cal-persia.el
3123
3124(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-persia" '("calendar-persian-" "diary-persian-date")))
3125
3126;;;***
3127
3128;;;### (autoloads nil "cal-tex" "calendar/cal-tex.el" (0 0 0 0))
3129;;; Generated autoloads from calendar/cal-tex.el
3130
3131(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-tex" '("cal-tex-")))
3132
3133;;;***
3134
3135;;;### (autoloads nil "cal-x" "calendar/cal-x.el" (0 0 0 0))
3136;;; Generated autoloads from calendar/cal-x.el
3137
3138(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cal-x" '("calendar-" "diary-frame" "diary-frame-parameters")))
3139
2921;;;*** 3140;;;***
2922 3141
2923;;;### (autoloads nil "calc" "calc/calc.el" (0 0 0 0)) 3142;;;### (autoloads nil "calc" "calc/calc.el" (0 0 0 0))
@@ -3004,6 +3223,249 @@ See Info node `(calc)Defining Functions'.
3004 3223
3005(function-put 'defmath 'doc-string-elt '3) 3224(function-put 'defmath 'doc-string-elt '3)
3006 3225
3226(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc" '("calc-" "math-" "var-" "calcDigit-" "defcalcmodevar" "inexact-result")))
3227
3228;;;***
3229
3230;;;### (autoloads "actual autoloads are elsewhere" "calc-aent" "calc/calc-aent.el"
3231;;;;;; (22164 57533 783192 607000))
3232;;; Generated autoloads from calc/calc-aent.el
3233
3234(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-aent" '("calcAlg-" "math-" "calc-")))
3235
3236;;;***
3237
3238;;;### (autoloads nil "calc-alg" "calc/calc-alg.el" (0 0 0 0))
3239;;; Generated autoloads from calc/calc-alg.el
3240
3241(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-alg" '("math-" "calc-" "calcFunc-")))
3242
3243;;;***
3244
3245;;;### (autoloads nil "calc-arith" "calc/calc-arith.el" (0 0 0 0))
3246;;; Generated autoloads from calc/calc-arith.el
3247
3248(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-arith" '("calcFunc-" "math-" "calc-")))
3249
3250;;;***
3251
3252;;;### (autoloads nil "calc-bin" "calc/calc-bin.el" (0 0 0 0))
3253;;; Generated autoloads from calc/calc-bin.el
3254
3255(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-bin" '("math-" "calc-" "calcFunc-")))
3256
3257;;;***
3258
3259;;;### (autoloads nil "calc-comb" "calc/calc-comb.el" (0 0 0 0))
3260;;; Generated autoloads from calc/calc-comb.el
3261
3262(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-comb" '("calc-" "calcFunc-" "math-")))
3263
3264;;;***
3265
3266;;;### (autoloads nil "calc-cplx" "calc/calc-cplx.el" (0 0 0 0))
3267;;; Generated autoloads from calc/calc-cplx.el
3268
3269(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-cplx" '("calc-" "math-" "calcFunc-")))
3270
3271;;;***
3272
3273;;;### (autoloads "actual autoloads are elsewhere" "calc-embed" "calc/calc-embed.el"
3274;;;;;; (22164 57533 791192 607000))
3275;;; Generated autoloads from calc/calc-embed.el
3276
3277(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-embed" '("calc-")))
3278
3279;;;***
3280
3281;;;### (autoloads nil "calc-ext" "calc/calc-ext.el" (0 0 0 0))
3282;;; Generated autoloads from calc/calc-ext.el
3283
3284(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-ext" '("math-" "calc-" "var-" "calcFunc-")))
3285
3286;;;***
3287
3288;;;### (autoloads nil "calc-fin" "calc/calc-fin.el" (0 0 0 0))
3289;;; Generated autoloads from calc/calc-fin.el
3290
3291(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-fin" '("calcFunc-" "calc-" "math-compute-" "math-check-financial")))
3292
3293;;;***
3294
3295;;;### (autoloads nil "calc-forms" "calc/calc-forms.el" (0 0 0 0))
3296;;; Generated autoloads from calc/calc-forms.el
3297
3298(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-forms" '("math-" "calcFunc-" "calc-" "var-TimeZone")))
3299
3300;;;***
3301
3302;;;### (autoloads nil "calc-frac" "calc/calc-frac.el" (0 0 0 0))
3303;;; Generated autoloads from calc/calc-frac.el
3304
3305(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-frac" '("calc-" "math-" "calcFunc-frac" "calcFunc-fdiv")))
3306
3307;;;***
3308
3309;;;### (autoloads nil "calc-funcs" "calc/calc-funcs.el" (0 0 0 0))
3310;;; Generated autoloads from calc/calc-funcs.el
3311
3312(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-funcs" '("calcFunc-" "calc-" "math-")))
3313
3314;;;***
3315
3316;;;### (autoloads nil "calc-graph" "calc/calc-graph.el" (0 0 0 0))
3317;;; Generated autoloads from calc/calc-graph.el
3318
3319(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-graph" '("calc-graph-" "calc-gnuplot-" "calc-temp-file-name" "calc-dumb-map")))
3320
3321;;;***
3322
3323;;;### (autoloads nil "calc-help" "calc/calc-help.el" (0 0 0 0))
3324;;; Generated autoloads from calc/calc-help.el
3325
3326(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-help" '("calc-")))
3327
3328;;;***
3329
3330;;;### (autoloads nil "calc-incom" "calc/calc-incom.el" (0 0 0 0))
3331;;; Generated autoloads from calc/calc-incom.el
3332
3333(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-incom" '("calc-")))
3334
3335;;;***
3336
3337;;;### (autoloads nil "calc-keypd" "calc/calc-keypd.el" (0 0 0 0))
3338;;; Generated autoloads from calc/calc-keypd.el
3339
3340(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-keypd" '("calc-keypad-" "calc-pack-interval" "calc-do-keypad")))
3341
3342;;;***
3343
3344;;;### (autoloads nil "calc-lang" "calc/calc-lang.el" (0 0 0 0))
3345;;; Generated autoloads from calc/calc-lang.el
3346
3347(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-lang" '("calc-" "math-")))
3348
3349;;;***
3350
3351;;;### (autoloads nil "calc-macs" "calc/calc-macs.el" (0 0 0 0))
3352;;; Generated autoloads from calc/calc-macs.el
3353
3354(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-macs" '("Math-" "calc-" "math-showing-full-precision" "math-with-extra-prec" "math-working")))
3355
3356;;;***
3357
3358;;;### (autoloads nil "calc-map" "calc/calc-map.el" (0 0 0 0))
3359;;; Generated autoloads from calc/calc-map.el
3360
3361(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-map" '("calcFunc-" "calc-" "math-")))
3362
3363;;;***
3364
3365;;;### (autoloads nil "calc-math" "calc/calc-math.el" (0 0 0 0))
3366;;; Generated autoloads from calc/calc-math.el
3367
3368(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-math" '("calcFunc-" "calc-" "math-")))
3369
3370;;;***
3371
3372;;;### (autoloads nil "calc-menu" "calc/calc-menu.el" (0 0 0 0))
3373;;; Generated autoloads from calc/calc-menu.el
3374
3375(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-menu" '("calc-")))
3376
3377;;;***
3378
3379;;;### (autoloads "actual autoloads are elsewhere" "calc-misc" "calc/calc-misc.el"
3380;;;;;; (22164 57533 803192 607000))
3381;;; Generated autoloads from calc/calc-misc.el
3382
3383(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-misc" '("math-iipow-show" "math-iipow")))
3384
3385;;;***
3386
3387;;;### (autoloads nil "calc-mode" "calc/calc-mode.el" (0 0 0 0))
3388;;; Generated autoloads from calc/calc-mode.el
3389
3390(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-mode" '("calc-" "math-get-modes-vec")))
3391
3392;;;***
3393
3394;;;### (autoloads nil "calc-mtx" "calc/calc-mtx.el" (0 0 0 0))
3395;;; Generated autoloads from calc/calc-mtx.el
3396
3397(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-mtx" '("math-" "calcFunc-" "calc-mdet" "calc-mtrace" "calc-mlud")))
3398
3399;;;***
3400
3401;;;### (autoloads nil "calc-nlfit" "calc/calc-nlfit.el" (0 0 0 0))
3402;;; Generated autoloads from calc/calc-nlfit.el
3403
3404(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-nlfit" '("math-nlfit-" "calc-fit-s-shaped-logistic-curve" "calc-fit-bell-shaped-logistic-curve" "calc-fit-hubbert-linear-curve")))
3405
3406;;;***
3407
3408;;;### (autoloads nil "calc-poly" "calc/calc-poly.el" (0 0 0 0))
3409;;; Generated autoloads from calc/calc-poly.el
3410
3411(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-poly" '("math-" "calcFunc-")))
3412
3413;;;***
3414
3415;;;### (autoloads nil "calc-prog" "calc/calc-prog.el" (0 0 0 0))
3416;;; Generated autoloads from calc/calc-prog.el
3417
3418(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-prog" '("calc-" "calcFunc-" "math-" "var-")))
3419
3420;;;***
3421
3422;;;### (autoloads nil "calc-rewr" "calc/calc-rewr.el" (0 0 0 0))
3423;;; Generated autoloads from calc/calc-rewr.el
3424
3425(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-rewr" '("math-" "calcFunc-" "calc-")))
3426
3427;;;***
3428
3429;;;### (autoloads nil "calc-rules" "calc/calc-rules.el" (0 0 0 0))
3430;;; Generated autoloads from calc/calc-rules.el
3431
3432(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-rules" '("calc-")))
3433
3434;;;***
3435
3436;;;### (autoloads nil "calc-sel" "calc/calc-sel.el" (0 0 0 0))
3437;;; Generated autoloads from calc/calc-sel.el
3438
3439(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-sel" '("calc-")))
3440
3441;;;***
3442
3443;;;### (autoloads nil "calc-stat" "calc/calc-stat.el" (0 0 0 0))
3444;;; Generated autoloads from calc/calc-stat.el
3445
3446(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-stat" '("calcFunc-" "calc-vector-" "math-")))
3447
3448;;;***
3449
3450;;;### (autoloads nil "calc-store" "calc/calc-store.el" (0 0 0 0))
3451;;; Generated autoloads from calc/calc-store.el
3452
3453(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-store" '("calc-" "calcVar-digit" "calcVar-oper")))
3454
3455;;;***
3456
3457;;;### (autoloads nil "calc-stuff" "calc/calc-stuff.el" (0 0 0 0))
3458;;; Generated autoloads from calc/calc-stuff.el
3459
3460(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-stuff" '("calc-" "calcFunc-" "math-map-over-constants-rec" "math-map-over-constants" "math-chopping-small")))
3461
3462;;;***
3463
3464;;;### (autoloads nil "calc-trail" "calc/calc-trail.el" (0 0 0 0))
3465;;; Generated autoloads from calc/calc-trail.el
3466
3467(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-trail" '("calc-trail-")))
3468
3007;;;*** 3469;;;***
3008 3470
3009;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (0 0 0 0)) 3471;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (0 0 0 0))
@@ -3014,6 +3476,58 @@ See Info node `(calc)Defining Functions'.
3014 3476
3015\(fn N)" t nil) 3477\(fn N)" t nil)
3016 3478
3479(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-undo" '("calc-handle-" "calc-redo" "calc-last-args" "calc-find-last-x" "calc-undo-does-pushes")))
3480
3481;;;***
3482
3483;;;### (autoloads nil "calc-units" "calc/calc-units.el" (0 0 0 0))
3484;;; Generated autoloads from calc/calc-units.el
3485
3486(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-units" '("math-" "calc-" "calcFunc-")))
3487
3488;;;***
3489
3490;;;### (autoloads nil "calc-vec" "calc/calc-vec.el" (0 0 0 0))
3491;;; Generated autoloads from calc/calc-vec.el
3492
3493(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-vec" '("calcFunc-" "calc-" "math-")))
3494
3495;;;***
3496
3497;;;### (autoloads "actual autoloads are elsewhere" "calc-yank" "calc/calc-yank.el"
3498;;;;;; (22164 57533 811192 607000))
3499;;; Generated autoloads from calc/calc-yank.el
3500
3501(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calc-yank" '("calc-" "math-number-regexp")))
3502
3503;;;***
3504
3505;;;### (autoloads nil "calcalg2" "calc/calcalg2.el" (0 0 0 0))
3506;;; Generated autoloads from calc/calcalg2.el
3507
3508(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calcalg2" '("math-" "calcFunc-" "calc-" "var-IntegLimit")))
3509
3510;;;***
3511
3512;;;### (autoloads nil "calcalg3" "calc/calcalg3.el" (0 0 0 0))
3513;;; Generated autoloads from calc/calcalg3.el
3514
3515(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calcalg3" '("math-" "calcFunc-" "calc-")))
3516
3517;;;***
3518
3519;;;### (autoloads nil "calccomp" "calc/calccomp.el" (0 0 0 0))
3520;;; Generated autoloads from calc/calccomp.el
3521
3522(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calccomp" '("math-" "calcFunc-cwidth" "calcFunc-cheight" "calcFunc-cascent" "calcFunc-cdescent")))
3523
3524;;;***
3525
3526;;;### (autoloads nil "calcsel2" "calc/calcsel2.el" (0 0 0 0))
3527;;; Generated autoloads from calc/calcsel2.el
3528
3529(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calcsel2" '("calc-sel-" "calc-commute-left" "calc-commute-right" "calc-build-assoc-term")))
3530
3017;;;*** 3531;;;***
3018 3532
3019;;;### (autoloads nil "calculator" "calculator.el" (0 0 0 0)) 3533;;;### (autoloads nil "calculator" "calculator.el" (0 0 0 0))
@@ -3025,6 +3539,8 @@ See the documentation for `calculator-mode' for more information.
3025 3539
3026\(fn)" t nil) 3540\(fn)" t nil)
3027 3541
3542(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calculator" '("calculator-")))
3543
3028;;;*** 3544;;;***
3029 3545
3030;;;### (autoloads nil "calendar" "calendar/calendar.el" (0 0 0 0)) 3546;;;### (autoloads nil "calendar" "calendar/calendar.el" (0 0 0 0))
@@ -3068,6 +3584,8 @@ This function is suitable for execution in an init file.
3068 3584
3069\(fn &optional ARG)" t nil) 3585\(fn &optional ARG)" t nil)
3070 3586
3587(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "calendar" '("calendar-" "diary-" "solar-sunrises-buffer" "lunar-phases-buffer" "holiday-buffer")))
3588
3071;;;*** 3589;;;***
3072 3590
3073;;;### (autoloads nil "canlock" "gnus/canlock.el" (0 0 0 0)) 3591;;;### (autoloads nil "canlock" "gnus/canlock.el" (0 0 0 0))
@@ -3085,6 +3603,44 @@ it fails.
3085 3603
3086\(fn &optional BUFFER)" t nil) 3604\(fn &optional BUFFER)" t nil)
3087 3605
3606(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "canlock" '("canlock-")))
3607
3608;;;***
3609
3610;;;### (autoloads nil "cc-align" "progmodes/cc-align.el" (0 0 0 0))
3611;;; Generated autoloads from progmodes/cc-align.el
3612
3613(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-align" '("c-")))
3614
3615;;;***
3616
3617;;;### (autoloads nil "cc-awk" "progmodes/cc-awk.el" (0 0 0 0))
3618;;; Generated autoloads from progmodes/cc-awk.el
3619
3620(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-awk" '("c-awk-" "awk-mode-syntax-table" "awk-font-lock-keywords" "c-awk-_-harmless-nonws-char-re")))
3621
3622;;;***
3623
3624;;;### (autoloads nil "cc-bytecomp" "progmodes/cc-bytecomp.el" (0
3625;;;;;; 0 0 0))
3626;;; Generated autoloads from progmodes/cc-bytecomp.el
3627
3628(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-bytecomp" '("cc-")))
3629
3630;;;***
3631
3632;;;### (autoloads nil "cc-cmds" "progmodes/cc-cmds.el" (0 0 0 0))
3633;;; Generated autoloads from progmodes/cc-cmds.el
3634
3635(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-cmds" '("c-")))
3636
3637;;;***
3638
3639;;;### (autoloads nil "cc-defs" "progmodes/cc-defs.el" (0 0 0 0))
3640;;; Generated autoloads from progmodes/cc-defs.el
3641
3642(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-defs" '("c-" "c--" "cc-bytecomp-compiling-or-loading" "cc-eval-when-compile")))
3643
3088;;;*** 3644;;;***
3089 3645
3090;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (0 0 0 3646;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (0 0 0
@@ -3096,6 +3652,15 @@ Return the syntactic context of the current line.
3096 3652
3097\(fn)" nil nil) 3653\(fn)" nil nil)
3098 3654
3655(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-engine" '("c-")))
3656
3657;;;***
3658
3659;;;### (autoloads nil "cc-fonts" "progmodes/cc-fonts.el" (0 0 0 0))
3660;;; Generated autoloads from progmodes/cc-fonts.el
3661
3662(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-fonts" '("c-" "javadoc-font-lock-" "gtkdoc-font-lock-" "pike-font-lock-" "idl-font-lock-" "java-font-lock-" "objc-font-lock-" "c++-font-lock-" "autodoc-")))
3663
3099;;;*** 3664;;;***
3100 3665
3101;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (0 0 0 0)) 3666;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (0 0 0 0))
@@ -3194,6 +3759,22 @@ the absolute file name of the file if STYLE-NAME is nil.
3194 3759
3195\(fn &optional STYLE-NAME)" t nil) 3760\(fn &optional STYLE-NAME)" t nil)
3196 3761
3762(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-guess" '("c-guess-")))
3763
3764;;;***
3765
3766;;;### (autoloads nil "cc-langs" "progmodes/cc-langs.el" (0 0 0 0))
3767;;; Generated autoloads from progmodes/cc-langs.el
3768
3769(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-langs" '("c-")))
3770
3771;;;***
3772
3773;;;### (autoloads nil "cc-menus" "progmodes/cc-menus.el" (0 0 0 0))
3774;;; Generated autoloads from progmodes/cc-menus.el
3775
3776(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-menus" '("cc-imenu-java-" "cc-imenu-objc-" "cc-imenu-c-" "cc-imenu-init" "cc-imenu-c++-generic-expression")))
3777
3197;;;*** 3778;;;***
3198 3779
3199;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (0 0 0 0)) 3780;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (0 0 0 0))
@@ -3352,6 +3933,8 @@ Key bindings:
3352 3933
3353\(fn)" t nil) 3934\(fn)" t nil)
3354 3935
3936(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-mode" '("c-" "pike-mode-" "idl-mode-" "java-mode-" "objc-mode-" "c++-mode-" "awk-mode-map")))
3937
3355;;;*** 3938;;;***
3356 3939
3357;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (0 0 0 3940;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (0 0 0
@@ -3404,6 +3987,8 @@ and exists only for compatibility reasons.
3404 3987
3405\(fn SYMBOL OFFSET &optional IGNORED)" t nil) 3988\(fn SYMBOL OFFSET &optional IGNORED)" t nil)
3406 3989
3990(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-styles" '("c-" "cc-choose-style-for-mode")))
3991
3407;;;*** 3992;;;***
3408 3993
3409;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (0 0 0 0)) 3994;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (0 0 0 0))
@@ -3412,6 +3997,8 @@ and exists only for compatibility reasons.
3412(put 'c-backslash-column 'safe-local-variable 'integerp) 3997(put 'c-backslash-column 'safe-local-variable 'integerp)
3413(put 'c-file-style 'safe-local-variable 'string-or-null-p) 3998(put 'c-file-style 'safe-local-variable 'string-or-null-p)
3414 3999
4000(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-vars" '("c-" "pike-" "idl-" "java-" "objc-" "c++-" "awk-mode-hook" "defcustom-c-stylevar")))
4001
3415;;;*** 4002;;;***
3416 4003
3417;;;### (autoloads nil "ccl" "international/ccl.el" (0 0 0 0)) 4004;;;### (autoloads nil "ccl" "international/ccl.el" (0 0 0 0))
@@ -3705,6 +4292,8 @@ See the documentation of `define-ccl-program' for the detail of CCL program.
3705 4292
3706\(fn CCL-PROG &rest ARGS)" nil nil) 4293\(fn CCL-PROG &rest ARGS)" nil nil)
3707 4294
4295(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ccl" '("ccl-")))
4296
3708;;;*** 4297;;;***
3709 4298
3710;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (0 0 0 0)) 4299;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (0 0 0 0))
@@ -3724,12 +4313,55 @@ Add the warnings that closure conversion would encounter.
3724 4313
3725\(fn FORM)" nil nil) 4314\(fn FORM)" nil nil)
3726 4315
4316(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cconv" '("cconv--" "cconv-analyze-form" "cconv-convert" "cconv-liftwhen")))
4317
4318;;;***
4319
4320;;;### (autoloads nil "cdl" "cdl.el" (0 0 0 0))
4321;;; Generated autoloads from cdl.el
4322
4323(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cdl" '("cdl-put-region" "cdl-get-file")))
4324
3727;;;*** 4325;;;***
3728 4326
3729;;;### (autoloads nil "cedet" "cedet/cedet.el" (0 0 0 0)) 4327;;;### (autoloads nil "cedet" "cedet/cedet.el" (0 0 0 0))
3730;;; Generated autoloads from cedet/cedet.el 4328;;; Generated autoloads from cedet/cedet.el
3731(push (purecopy '(cedet 2 0)) package--builtin-versions) 4329(push (purecopy '(cedet 2 0)) package--builtin-versions)
3732 4330
4331(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cedet" '("cedet-menu-map" "cedet-packages" "cedet-version")))
4332
4333;;;***
4334
4335;;;### (autoloads nil "cedet-cscope" "cedet/cedet-cscope.el" (0 0
4336;;;;;; 0 0))
4337;;; Generated autoloads from cedet/cedet-cscope.el
4338
4339(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cedet-cscope" '("cedet-cscope-")))
4340
4341;;;***
4342
4343;;;### (autoloads nil "cedet-files" "cedet/cedet-files.el" (0 0 0
4344;;;;;; 0))
4345;;; Generated autoloads from cedet/cedet-files.el
4346
4347(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cedet-files" '("cedet-directory-name-to-file-name" "cedet-file-name-to-directory-name" "cedet-files-list-recursively")))
4348
4349;;;***
4350
4351;;;### (autoloads nil "cedet-global" "cedet/cedet-global.el" (0 0
4352;;;;;; 0 0))
4353;;; Generated autoloads from cedet/cedet-global.el
4354
4355(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cedet-global" '("cedet-gnu-global-" "cedet-global-min-version" "cedet-global-command" "cedet-global-gtags-command")))
4356
4357;;;***
4358
4359;;;### (autoloads nil "cedet-idutils" "cedet/cedet-idutils.el" (0
4360;;;;;; 0 0 0))
4361;;; Generated autoloads from cedet/cedet-idutils.el
4362
4363(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cedet-idutils" '("cedet-idutils-")))
4364
3733;;;*** 4365;;;***
3734 4366
3735;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (0 0 0 0)) 4367;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (0 0 0 0))
@@ -3759,16 +4391,17 @@ Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents.
3759 4391
3760\(fn)" t nil) 4392\(fn)" t nil)
3761 4393
4394(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cfengine" '("cfengine3-" "cfengine-" "cfengine2-" "cfengine3--current-function" "cfengine3--prettify-symbols-alist")))
4395
3762;;;*** 4396;;;***
3763 4397
3764;;;### (autoloads nil "character-fold" "character-fold.el" (0 0 0 4398;;;### (autoloads nil "char-fold" "char-fold.el" (0 0 0 0))
3765;;;;;; 0)) 4399;;; Generated autoloads from char-fold.el
3766;;; Generated autoloads from character-fold.el
3767 4400
3768(autoload 'character-fold-to-regexp "character-fold" "\ 4401(autoload 'char-fold-to-regexp "char-fold" "\
3769Return a regexp matching anything that character-folds into STRING. 4402Return a regexp matching anything that char-folds into STRING.
3770Any character in STRING that has an entry in 4403Any character in STRING that has an entry in
3771`character-fold-table' is replaced with that entry (which is a 4404`char-fold-table' is replaced with that entry (which is a
3772regexp) and other characters are `regexp-quote'd. 4405regexp) and other characters are `regexp-quote'd.
3773 4406
3774If the resulting regexp would be too long for Emacs to handle, 4407If the resulting regexp would be too long for Emacs to handle,
@@ -3779,12 +4412,16 @@ from which to start.
3779 4412
3780\(fn STRING &optional LAX FROM)" nil nil) 4413\(fn STRING &optional LAX FROM)" nil nil)
3781 4414
4415(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "char-fold" '("char-fold-search-backward" "char-fold-search-forward" "char-fold--make-space-string" "char-fold-table")))
4416
3782;;;*** 4417;;;***
3783 4418
3784;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (0 0 0 0)) 4419;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (0 0 0 0))
3785;;; Generated autoloads from emacs-lisp/chart.el 4420;;; Generated autoloads from emacs-lisp/chart.el
3786(push (purecopy '(chart 0 2)) package--builtin-versions) 4421(push (purecopy '(chart 0 2)) package--builtin-versions)
3787 4422
4423(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "chart" '("chart-" "chart")))
4424
3788;;;*** 4425;;;***
3789 4426
3790;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" 4427;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el"
@@ -3803,6 +4440,8 @@ Returns non-nil if any false statements are found.
3803 4440
3804\(fn ROOT)" t nil) 4441\(fn ROOT)" t nil)
3805 4442
4443(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "check-declare" '("check-declare-")))
4444
3806;;;*** 4445;;;***
3807 4446
3808;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (0 0 0 4447;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (0 0 0
@@ -4014,6 +4653,8 @@ Find package keywords that aren't in `finder-known-keywords'.
4014 4653
4015\(fn)" t nil) 4654\(fn)" t nil)
4016 4655
4656(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "checkdoc" '("checkdoc-")))
4657
4017;;;*** 4658;;;***
4018 4659
4019;;;### (autoloads nil "china-util" "language/china-util.el" (0 0 4660;;;### (autoloads nil "china-util" "language/china-util.el" (0 0
@@ -4052,6 +4693,8 @@ Encode the text in the current buffer to HZ.
4052 4693
4053\(fn FROM TO)" nil nil) 4694\(fn FROM TO)" nil nil)
4054 4695
4696(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "china-util" '("hz-" "iso2022-" "zw-start-gb" "hz/zw-start-gb" "decode-hz-line-continuation")))
4697
4055;;;*** 4698;;;***
4056 4699
4057;;;### (autoloads nil "chistory" "chistory.el" (0 0 0 0)) 4700;;;### (autoloads nil "chistory" "chistory.el" (0 0 0 0))
@@ -4091,6 +4734,23 @@ and runs the normal hook `command-history-hook'.
4091 4734
4092\(fn)" t nil) 4735\(fn)" t nil)
4093 4736
4737(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "chistory" '("command-history-" "list-command-history-max" "list-command-history-filter" "default-command-history-filter" "default-command-history-filter-garbage")))
4738
4739;;;***
4740
4741;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (0 0 0 0))
4742;;; Generated autoloads from emacs-lisp/cl.el
4743
4744(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cl" '("cl-" "cl--" "define-" "lexical-" "defsetf" "labels" "flet")))
4745
4746;;;***
4747
4748;;;### (autoloads "actual autoloads are elsewhere" "cl-extra" "emacs-lisp/cl-extra.el"
4749;;;;;; (22323 1714 133363 124000))
4750;;; Generated autoloads from emacs-lisp/cl-extra.el
4751
4752(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cl-extra" '("cl--" "cl-type-definition" "cl-help-type" "cl-prettyprint")))
4753
4094;;;*** 4754;;;***
4095 4755
4096;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (0 0 4756;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (0 0
@@ -4175,6 +4835,8 @@ instead.
4175 4835
4176\(fn INDENT-POINT STATE)" nil nil) 4836\(fn INDENT-POINT STATE)" nil nil)
4177 4837
4838(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cl-indent" '("lisp-" "common-lisp-indent-call-method" "common-lisp-indent-function-1" "common-lisp-loop-part-indentation")))
4839
4178;;;*** 4840;;;***
4179 4841
4180;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (0 0 0 0)) 4842;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (0 0 0 0))
@@ -4193,6 +4855,24 @@ printer proceeds to the next function on the list.
4193This variable is not used at present, but it is defined in hopes that 4855This variable is not used at present, but it is defined in hopes that
4194a future Emacs interpreter will be able to use it.") 4856a future Emacs interpreter will be able to use it.")
4195 4857
4858(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cl-lib" '("cl-" "cl--")))
4859
4860;;;***
4861
4862;;;### (autoloads "actual autoloads are elsewhere" "cl-macs" "emacs-lisp/cl-macs.el"
4863;;;;;; (22344 54959 786653 803000))
4864;;; Generated autoloads from emacs-lisp/cl-macs.el
4865
4866(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cl-macs" '("cl--" "cl-" "function-form")))
4867
4868;;;***
4869
4870;;;### (autoloads "actual autoloads are elsewhere" "cl-seq" "emacs-lisp/cl-seq.el"
4871;;;;;; (22233 28356 901820 212000))
4872;;; Generated autoloads from emacs-lisp/cl-seq.el
4873
4874(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cl-seq" '("cl--")))
4875
4196;;;*** 4876;;;***
4197 4877
4198;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (0 0 0 0)) 4878;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (0 0 0 0))
@@ -4213,6 +4893,8 @@ For use inside Lisp programs, see also `c-macro-expansion'.
4213 4893
4214\(fn START END SUBST)" t nil) 4894\(fn START END SUBST)" t nil)
4215 4895
4896(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cmacexp" '("c-macro-")))
4897
4216;;;*** 4898;;;***
4217 4899
4218;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (0 0 0 0)) 4900;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (0 0 0 0))
@@ -4233,6 +4915,8 @@ is run).
4233 4915
4234\(fn CMD)" t nil) 4916\(fn CMD)" t nil)
4235 4917
4918(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cmuscheme" '("scheme-" "inferior-scheme-" "cmuscheme-load-hook" "switch-to-scheme")))
4919
4236;;;*** 4920;;;***
4237 4921
4238;;;### (autoloads nil "color" "color.el" (0 0 0 0)) 4922;;;### (autoloads nil "color" "color.el" (0 0 0 0))
@@ -4252,6 +4936,8 @@ If FRAME cannot display COLOR, return nil.
4252 4936
4253\(fn COLOR &optional FRAME)" nil nil) 4937\(fn COLOR &optional FRAME)" nil nil)
4254 4938
4939(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "color" '("color-")))
4940
4255;;;*** 4941;;;***
4256 4942
4257;;;### (autoloads nil "comint" "comint.el" (0 0 0 0)) 4943;;;### (autoloads nil "comint" "comint.el" (0 0 0 0))
@@ -4353,6 +5039,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use.
4353 5039
4354\(fn PROCESS COMMAND REGEXP REGEXP-GROUP)" nil nil) 5040\(fn PROCESS COMMAND REGEXP REGEXP-GROUP)" nil nil)
4355 5041
5042(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "comint" '("comint-" "comint--" "shell-strip-ctrl-m" "send-invisible")))
5043
4356;;;*** 5044;;;***
4357 5045
4358;;;### (autoloads nil "compare-w" "vc/compare-w.el" (0 0 0 0)) 5046;;;### (autoloads nil "compare-w" "vc/compare-w.el" (0 0 0 0))
@@ -4389,6 +5077,15 @@ on third call it again advances points to the next difference and so on.
4389 5077
4390\(fn IGNORE-WHITESPACE)" t nil) 5078\(fn IGNORE-WHITESPACE)" t nil)
4391 5079
5080(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "compare-w" '("compare-windows-" "compare-windows" "compare-ignore-case" "compare-ignore-whitespace")))
5081
5082;;;***
5083
5084;;;### (autoloads nil "compface" "image/compface.el" (0 0 0 0))
5085;;; Generated autoloads from image/compface.el
5086
5087(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "compface" '("uncompface")))
5088
4392;;;*** 5089;;;***
4393 5090
4394;;;### (autoloads nil "compile" "progmodes/compile.el" (0 0 0 0)) 5091;;;### (autoloads nil "compile" "progmodes/compile.el" (0 0 0 0))
@@ -4570,6 +5267,8 @@ This is the value of `next-error-function' in Compilation buffers.
4570 5267
4571\(fn N &optional RESET)" t nil) 5268\(fn N &optional RESET)" t nil)
4572 5269
5270(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "compile" '("compilation-" "compilation--" "compile-" "kill-compilation" "define-compilation-mode" "recompile")))
5271
4573;;;*** 5272;;;***
4574 5273
4575;;;### (autoloads nil "completion" "completion.el" (0 0 0 0)) 5274;;;### (autoloads nil "completion" "completion.el" (0 0 0 0))
@@ -4593,6 +5292,8 @@ if ARG is omitted or nil.
4593 5292
4594\(fn &optional ARG)" t nil) 5293\(fn &optional ARG)" t nil)
4595 5294
5295(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "completion" '("completion-" "cmpl-" "use-completion-" "cdabbrev-" "save-completions-" "add-" "locate-completion-" "set-" "list-all-" "completions-" "symbol-" "reset-" "make-" "find-" "kill-" "enable-completion" "num-cmpl-sources" "current-completion-source" "next-cdabbrev" "clear-all-completions" "inside-locate-completion-entry" "delete-completion" "interactive-completion-string-reader" "check-completion-length" "accept-completion" "complete" "*lisp-def-regexp*" "*c-def-regexp*" "saved-cmpl-file-header" "load-completions-from-file" "completion--post-self-insert" "initialize-completions")))
5296
4596;;;*** 5297;;;***
4597 5298
4598;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (0 0 0 5299;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (0 0 0
@@ -4749,6 +5450,8 @@ For details see `conf-mode'. Example:
4749 5450
4750\(fn)" t nil) 5451\(fn)" t nil)
4751 5452
5453(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "conf-mode" '("conf-")))
5454
4752;;;*** 5455;;;***
4753 5456
4754;;;### (autoloads nil "cookie1" "play/cookie1.el" (0 0 0 0)) 5457;;;### (autoloads nil "cookie1" "play/cookie1.el" (0 0 0 0))
@@ -4777,6 +5480,8 @@ and subsequent calls on the same file won't go to disk.
4777 5480
4778\(fn PHRASE-FILE &optional STARTMSG ENDMSG)" nil nil) 5481\(fn PHRASE-FILE &optional STARTMSG ENDMSG)" nil nil)
4779 5482
5483(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cookie1" '("cookie-" "cookie1")))
5484
4780;;;*** 5485;;;***
4781 5486
4782;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (0 0 5487;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (0 0
@@ -4816,6 +5521,8 @@ If FIX is non-nil, run `copyright-fix-years' instead.
4816 5521
4817\(fn DIRECTORY MATCH &optional FIX)" t nil) 5522\(fn DIRECTORY MATCH &optional FIX)" t nil)
4818 5523
5524(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "copyright" '("copyright-")))
5525
4819;;;*** 5526;;;***
4820 5527
4821;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (0 0 5528;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (0 0
@@ -5015,6 +5722,8 @@ Run a `perldoc' on the word around point.
5015 5722
5016\(fn)" t nil) 5723\(fn)" t nil)
5017 5724
5725(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cperl-mode" '("cperl-" "pod2man-program")))
5726
5018;;;*** 5727;;;***
5019 5728
5020;;;### (autoloads nil "cpp" "progmodes/cpp.el" (0 0 0 0)) 5729;;;### (autoloads nil "cpp" "progmodes/cpp.el" (0 0 0 0))
@@ -5033,6 +5742,8 @@ Edit display information for cpp conditionals.
5033 5742
5034\(fn)" t nil) 5743\(fn)" t nil)
5035 5744
5745(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cpp" '("cpp-")))
5746
5036;;;*** 5747;;;***
5037 5748
5038;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (0 0 0 0)) 5749;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (0 0 0 0))
@@ -5059,6 +5770,8 @@ with empty strings removed.
5059 5770
5060\(fn PROMPT TABLE &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)" nil nil) 5771\(fn PROMPT TABLE &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)" nil nil)
5061 5772
5773(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "crm" '("crm-" "crm--collection-fn" "crm--current-element" "crm--completion-command" "crm--choose-completion-string")))
5774
5062;;;*** 5775;;;***
5063 5776
5064;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (0 0 0 0)) 5777;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (0 0 0 0))
@@ -5075,6 +5788,8 @@ Major mode to edit \"Sassy CSS\" files.
5075 5788
5076\(fn)" t nil) 5789\(fn)" t nil)
5077 5790
5791(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "css-mode" '("css-" "css--" "scss-" "scss--hash-re")))
5792
5078;;;*** 5793;;;***
5079 5794
5080;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (0 0 0 0)) 5795;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (0 0 0 0))
@@ -5121,6 +5836,15 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings.
5121 5836
5122\(fn ARG)" t nil) 5837\(fn ARG)" t nil)
5123 5838
5839(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cua-base" '("cua-" "cua--")))
5840
5841;;;***
5842
5843;;;### (autoloads nil "cua-gmrk" "emulation/cua-gmrk.el" (0 0 0 0))
5844;;; Generated autoloads from emulation/cua-gmrk.el
5845
5846(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cua-gmrk" '("cua--" "cua-")))
5847
5124;;;*** 5848;;;***
5125 5849
5126;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (0 0 0 0)) 5850;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (0 0 0 0))
@@ -5132,12 +5856,16 @@ Activates the region if needed. Only lasts until the region is deactivated.
5132 5856
5133\(fn &optional ARG)" t nil) 5857\(fn &optional ARG)" t nil)
5134 5858
5859(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cua-rect" '("cua-" "cua--")))
5860
5135;;;*** 5861;;;***
5136 5862
5137;;;### (autoloads nil "cursor-sensor" "emacs-lisp/cursor-sensor.el" 5863;;;### (autoloads nil "cursor-sensor" "emacs-lisp/cursor-sensor.el"
5138;;;;;; (0 0 0 0)) 5864;;;;;; (0 0 0 0))
5139;;; Generated autoloads from emacs-lisp/cursor-sensor.el 5865;;; Generated autoloads from emacs-lisp/cursor-sensor.el
5140 5866
5867(defvar cursor-sensor-inhibit nil)
5868
5141(autoload 'cursor-intangible-mode "cursor-sensor" "\ 5869(autoload 'cursor-intangible-mode "cursor-sensor" "\
5142Keep cursor outside of any `cursor-intangible' text property. 5870Keep cursor outside of any `cursor-intangible' text property.
5143 5871
@@ -5153,6 +5881,15 @@ is entering the area covered by the text-property property or leaving it.
5153 5881
5154\(fn &optional ARG)" t nil) 5882\(fn &optional ARG)" t nil)
5155 5883
5884(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cursor-sensor" '("cursor-sensor-move-to-tangible" "cursor-sensor-tangible-pos" "cursor-sensor--detect" "cursor-sensor--move-to-tangible" "cursor-sensor--intangible-p")))
5885
5886;;;***
5887
5888;;;### (autoloads nil "cus-dep" "cus-dep.el" (0 0 0 0))
5889;;; Generated autoloads from cus-dep.el
5890
5891(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cus-dep" '("custom-make-dependencies" "custom-dependencies-no-scan-regexp" "generated-custom-dependencies-file")))
5892
5156;;;*** 5893;;;***
5157 5894
5158;;;### (autoloads nil "cus-edit" "cus-edit.el" (0 0 0 0)) 5895;;;### (autoloads nil "cus-edit" "cus-edit.el" (0 0 0 0))
@@ -5473,6 +6210,8 @@ The format is suitable for use with `easy-menu-define'.
5473 6210
5474\(fn SYMBOL &optional NAME)" nil nil) 6211\(fn SYMBOL &optional NAME)" nil nil)
5475 6212
6213(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cus-edit" '("custom-" "Custom-" "customize-" "widget-" "custom--initialize-widget-variables")))
6214
5476;;;*** 6215;;;***
5477 6216
5478;;;### (autoloads nil "cus-theme" "cus-theme.el" (0 0 0 0)) 6217;;;### (autoloads nil "cus-theme" "cus-theme.el" (0 0 0 0))
@@ -5506,6 +6245,8 @@ omitted, a buffer named *Custom Themes* is used.
5506 6245
5507\(fn &optional BUFFER)" t nil) 6246\(fn &optional BUFFER)" t nil)
5508 6247
6248(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cus-theme" '("custom-theme-" "custom-new-theme-" "custom-theme--" "custom-describe-theme" "describe-theme-1")))
6249
5509;;;*** 6250;;;***
5510 6251
5511;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (0 0 0 0)) 6252;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (0 0 0 0))
@@ -5516,6 +6257,8 @@ Mode used for cvs status output.
5516 6257
5517\(fn)" t nil) 6258\(fn)" t nil)
5518 6259
6260(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cvs-status" '("cvs-status-" "cvs-tree-" "cvs-tag-" "cvs-tags->tree")))
6261
5519;;;*** 6262;;;***
5520 6263
5521;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (0 0 0 0)) 6264;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (0 0 0 0))
@@ -5561,6 +6304,8 @@ See `cwarn-mode' for more information on Cwarn mode.
5561 6304
5562\(fn &optional ARG)" t nil) 6305\(fn &optional ARG)" t nil)
5563 6306
6307(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cwarn" '("cwarn-" "turn-on-cwarn-mode-if-enabled")))
6308
5564;;;*** 6309;;;***
5565 6310
5566;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (0 0 6311;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (0 0
@@ -5590,6 +6335,8 @@ If the argument is nil, we return the display table to its standard state.
5590 6335
5591\(fn &optional CYRILLIC-LANGUAGE)" t nil) 6336\(fn &optional CYRILLIC-LANGUAGE)" t nil)
5592 6337
6338(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cyril-util" '("cyrillic-language-alist")))
6339
5593;;;*** 6340;;;***
5594 6341
5595;;;### (autoloads nil "dabbrev" "dabbrev.el" (0 0 0 0)) 6342;;;### (autoloads nil "dabbrev" "dabbrev.el" (0 0 0 0))
@@ -5636,6 +6383,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion].
5636 6383
5637\(fn ARG)" t nil) 6384\(fn ARG)" t nil)
5638 6385
6386(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dabbrev" '("dabbrev--" "dabbrev-")))
6387
5639;;;*** 6388;;;***
5640 6389
5641;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (0 0 0 0)) 6390;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (0 0 0 0))
@@ -5646,6 +6395,8 @@ Create a new data-debug buffer with NAME.
5646 6395
5647\(fn NAME)" nil nil) 6396\(fn NAME)" nil nil)
5648 6397
6398(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "data-debug" '("data-debug-")))
6399
5649;;;*** 6400;;;***
5650 6401
5651;;;### (autoloads nil "dbus" "net/dbus.el" (0 0 0 0)) 6402;;;### (autoloads nil "dbus" "net/dbus.el" (0 0 0 0))
@@ -5659,6 +6410,8 @@ If the HANDLER returns a `dbus-error', it is propagated as return message.
5659 6410
5660\(fn EVENT)" t nil) 6411\(fn EVENT)" t nil)
5661 6412
6413(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dbus" '("dbus-")))
6414
5662;;;*** 6415;;;***
5663 6416
5664;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (0 0 0 0)) 6417;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (0 0 0 0))
@@ -5785,6 +6538,8 @@ There is some minimal font-lock support (see vars
5785 6538
5786\(fn)" t nil) 6539\(fn)" t nil)
5787 6540
6541(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dcl-mode" '("dcl-")))
6542
5788;;;*** 6543;;;***
5789 6544
5790;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (0 0 0 0)) 6545;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (0 0 0 0))
@@ -5828,6 +6583,8 @@ To specify a nil argument interactively, exit with an empty minibuffer.
5828 6583
5829\(fn &optional FUNCTION)" t nil) 6584\(fn &optional FUNCTION)" t nil)
5830 6585
6586(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "debug" '("debugger-" "debugger--" "debug--" "inhibit-debug-on-entry" "debug-help-follow")))
6587
5831;;;*** 6588;;;***
5832 6589
5833;;;### (autoloads nil "decipher" "play/decipher.el" (0 0 0 0)) 6590;;;### (autoloads nil "decipher" "play/decipher.el" (0 0 0 0))
@@ -5856,6 +6613,8 @@ The most useful commands are:
5856 6613
5857\(fn)" t nil) 6614\(fn)" t nil)
5858 6615
6616(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "decipher" '("decipher-" "decipher--analyze" "decipher--digram-total" "decipher--digram-counts")))
6617
5859;;;*** 6618;;;***
5860 6619
5861;;;### (autoloads nil "delim-col" "delim-col.el" (0 0 0 0)) 6620;;;### (autoloads nil "delim-col" "delim-col.el" (0 0 0 0))
@@ -5881,6 +6640,8 @@ START and END delimits the corners of text rectangle.
5881 6640
5882\(fn START END)" t nil) 6641\(fn START END)" t nil)
5883 6642
6643(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "delim-col" '("delimit-columns-")))
6644
5884;;;*** 6645;;;***
5885 6646
5886;;;### (autoloads nil "delsel" "delsel.el" (0 0 0 0)) 6647;;;### (autoloads nil "delsel" "delsel.el" (0 0 0 0))
@@ -5914,6 +6675,8 @@ information on adapting behavior of commands in Delete Selection mode.
5914 6675
5915\(fn &optional ARG)" t nil) 6676\(fn &optional ARG)" t nil)
5916 6677
6678(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "delsel" '("delete-selection-" "delete-active-region" "delsel-unload-function" "minibuffer-keyboard-quit" "delsel--replace-text-or-position")))
6679
5917;;;*** 6680;;;***
5918 6681
5919;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (0 0 0 0)) 6682;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (0 0 0 0))
@@ -5944,6 +6707,9 @@ BODY can start with a bunch of keyword arguments. The following keyword
5944:abbrev-table TABLE 6707:abbrev-table TABLE
5945 Use TABLE instead of the default (CHILD-abbrev-table). 6708 Use TABLE instead of the default (CHILD-abbrev-table).
5946 A nil value means to simply use the same abbrev-table as the parent. 6709 A nil value means to simply use the same abbrev-table as the parent.
6710:after-hook FORM
6711 A single lisp form which is evaluated after the mode hooks have been
6712 run. It should not be quoted.
5947 6713
5948Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode: 6714Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode:
5949 6715
@@ -5980,6 +6746,8 @@ the first time the mode is used.
5980 6746
5981\(fn MODE)" nil nil) 6747\(fn MODE)" nil nil)
5982 6748
6749(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "derived" '("derived-mode-")))
6750
5983;;;*** 6751;;;***
5984 6752
5985;;;### (autoloads nil "descr-text" "descr-text.el" (0 0 0 0)) 6753;;;### (autoloads nil "descr-text" "descr-text.el" (0 0 0 0))
@@ -6029,6 +6797,8 @@ This function is meant to be used as a value of
6029 6797
6030\(fn)" nil nil) 6798\(fn)" nil nil)
6031 6799
6800(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "descr-text" '("describe-char-" "describe-text-" "describe-property-list")))
6801
6032;;;*** 6802;;;***
6033 6803
6034;;;### (autoloads nil "desktop" "desktop.el" (0 0 0 0)) 6804;;;### (autoloads nil "desktop" "desktop.el" (0 0 0 0))
@@ -6257,6 +7027,8 @@ Revert to the last loaded desktop.
6257 7027
6258\(fn)" t nil) 7028\(fn)" t nil)
6259 7029
7030(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "desktop" '("desktop-")))
7031
6260;;;*** 7032;;;***
6261 7033
6262;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (0 0 0 0)) 7034;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (0 0 0 0))
@@ -6289,6 +7061,15 @@ Deuglify broken Outlook (Express) articles and redisplay.
6289 7061
6290\(fn)" t nil) 7062\(fn)" t nil)
6291 7063
7064(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "deuglify" '("gnus-outlook-deuglify-" "gnus-outlook-repair-attribution-" "gnus-outlook-display-" "gnus-article-outlook-rearrange-citation" "gnus-outlook-rearrange-article")))
7065
7066;;;***
7067
7068;;;### (autoloads nil "dframe" "dframe.el" (0 0 0 0))
7069;;; Generated autoloads from dframe.el
7070
7071(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dframe" '("dframe-")))
7072
6292;;;*** 7073;;;***
6293 7074
6294;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (0 0 0 7075;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (0 0 0
@@ -6332,6 +7113,8 @@ Major mode for editing the diary file.
6332 7113
6333\(fn)" t nil) 7114\(fn)" t nil)
6334 7115
7116(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "diary-lib" '("diary-" "calendar-mark-")))
7117
6335;;;*** 7118;;;***
6336 7119
6337;;;### (autoloads nil "diff" "vc/diff.el" (0 0 0 0)) 7120;;;### (autoloads nil "diff" "vc/diff.el" (0 0 0 0))
@@ -6380,6 +7163,8 @@ This requires the external program `diff' to be in your `exec-path'.
6380 7163
6381\(fn &optional BUFFER)" t nil) 7164\(fn &optional BUFFER)" t nil)
6382 7165
7166(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "diff" '("diff-")))
7167
6383;;;*** 7168;;;***
6384 7169
6385;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (0 0 0 0)) 7170;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (0 0 0 0))
@@ -6412,6 +7197,8 @@ the mode if ARG is omitted or nil.
6412 7197
6413\(fn &optional ARG)" t nil) 7198\(fn &optional ARG)" t nil)
6414 7199
7200(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "diff-mode" '("diff-" "diff--auto-refine-data")))
7201
6415;;;*** 7202;;;***
6416 7203
6417;;;### (autoloads nil "dig" "net/dig.el" (0 0 0 0)) 7204;;;### (autoloads nil "dig" "net/dig.el" (0 0 0 0))
@@ -6423,6 +7210,8 @@ Optional arguments are passed to `dig-invoke'.
6423 7210
6424\(fn DOMAIN &optional QUERY-TYPE QUERY-CLASS QUERY-OPTION DIG-OPTION SERVER)" t nil) 7211\(fn DOMAIN &optional QUERY-TYPE QUERY-CLASS QUERY-OPTION DIG-OPTION SERVER)" t nil)
6425 7212
7213(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dig" '("dig-" "query-dig")))
7214
6426;;;*** 7215;;;***
6427 7216
6428;;;### (autoloads nil "dired" "dired.el" (0 0 0 0)) 7217;;;### (autoloads nil "dired" "dired.el" (0 0 0 0))
@@ -6549,6 +7338,24 @@ Keybindings:
6549\(fn &optional DIRNAME SWITCHES)" nil nil) 7338\(fn &optional DIRNAME SWITCHES)" nil nil)
6550 (put 'dired-find-alternate-file 'disabled t) 7339 (put 'dired-find-alternate-file 'disabled t)
6551 7340
7341(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dired" '("dired-")))
7342
7343;;;***
7344
7345;;;### (autoloads "actual autoloads are elsewhere" "dired-aux" "dired-aux.el"
7346;;;;;; (22316 28459 907124 107000))
7347;;; Generated autoloads from dired-aux.el
7348
7349(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dired-aux" '("dired-" "minibuffer-default-add-dired-shell-commands")))
7350
7351;;;***
7352
7353;;;### (autoloads "actual autoloads are elsewhere" "dired-x" "dired-x.el"
7354;;;;;; (22258 27960 296487 495000))
7355;;; Generated autoloads from dired-x.el
7356
7357(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dired-x" '("dired-" "virtual-dired")))
7358
6552;;;*** 7359;;;***
6553 7360
6554;;;### (autoloads nil "dirtrack" "dirtrack.el" (0 0 0 0)) 7361;;;### (autoloads nil "dirtrack" "dirtrack.el" (0 0 0 0))
@@ -6579,6 +7386,8 @@ from `default-directory'.
6579 7386
6580\(fn INPUT)" nil nil) 7387\(fn INPUT)" nil nil)
6581 7388
7389(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dirtrack" '("dirtrack-")))
7390
6582;;;*** 7391;;;***
6583 7392
6584;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (0 0 0 0)) 7393;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (0 0 0 0))
@@ -6593,6 +7402,8 @@ redefine OBJECT if it is a symbol.
6593 7402
6594\(fn OBJECT &optional BUFFER INDENT INTERACTIVE-P)" t nil) 7403\(fn OBJECT &optional BUFFER INDENT INTERACTIVE-P)" t nil)
6595 7404
7405(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "disass" '("disassemble-column-1-indent" "disassemble-column-2-indent" "disassemble-recursive-indent" "disassemble-internal" "disassemble-1")))
7406
6596;;;*** 7407;;;***
6597 7408
6598;;;### (autoloads nil "disp-table" "disp-table.el" (0 0 0 0)) 7409;;;### (autoloads nil "disp-table" "disp-table.el" (0 0 0 0))
@@ -6714,6 +7525,8 @@ in `.emacs'.
6714 7525
6715\(fn ARG)" nil nil) 7526\(fn ARG)" nil nil)
6716 7527
7528(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "disp-table" '("display-table-print-array")))
7529
6717;;;*** 7530;;;***
6718 7531
6719;;;### (autoloads nil "dissociate" "play/dissociate.el" (0 0 0 0)) 7532;;;### (autoloads nil "dissociate" "play/dissociate.el" (0 0 0 0))
@@ -6750,6 +7563,15 @@ if some action was made, or nil if the URL is ignored.")
6750 7563
6751(custom-autoload 'dnd-protocol-alist "dnd" t) 7564(custom-autoload 'dnd-protocol-alist "dnd" t)
6752 7565
7566(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dnd" '("dnd-open-" "dnd-get-local-file-" "dnd-handle-one-url" "dnd-unescape-uri" "dnd-insert-text")))
7567
7568;;;***
7569
7570;;;### (autoloads nil "dns" "net/dns.el" (0 0 0 0))
7571;;; Generated autoloads from net/dns.el
7572
7573(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dns" '("dns-")))
7574
6753;;;*** 7575;;;***
6754 7576
6755;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (0 0 0 0)) 7577;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (0 0 0 0))
@@ -6773,6 +7595,8 @@ Locate SOA record and increment the serial field.
6773 7595
6774\(fn)" t nil) 7596\(fn)" t nil)
6775 7597
7598(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dns-mode" '("dns-mode-")))
7599
6776;;;*** 7600;;;***
6777 7601
6778;;;### (autoloads nil "doc-view" "doc-view.el" (0 0 0 0)) 7602;;;### (autoloads nil "doc-view" "doc-view.el" (0 0 0 0))
@@ -6819,6 +7643,8 @@ See the command `doc-view-mode' for more information on this mode.
6819 7643
6820\(fn BMK)" nil nil) 7644\(fn BMK)" nil nil)
6821 7645
7646(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "doc-view" '("doc-view-" "doc-view--")))
7647
6822;;;*** 7648;;;***
6823 7649
6824;;;### (autoloads nil "doctor" "play/doctor.el" (0 0 0 0)) 7650;;;### (autoloads nil "doctor" "play/doctor.el" (0 0 0 0))
@@ -6829,6 +7655,36 @@ Switch to *doctor* buffer and start giving psychotherapy.
6829 7655
6830\(fn)" t nil) 7656\(fn)" t nil)
6831 7657
7658(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "doctor" '("doctor-" "make-doctor-variables" "doc$" "doc//")))
7659
7660;;;***
7661
7662;;;### (autoloads nil "dom" "dom.el" (0 0 0 0))
7663;;; Generated autoloads from dom.el
7664
7665(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dom" '("dom-")))
7666
7667;;;***
7668
7669;;;### (autoloads nil "dos-fns" "dos-fns.el" (0 0 0 0))
7670;;; Generated autoloads from dos-fns.el
7671
7672(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dos-fns" '("dos-" "dosified-file-name")))
7673
7674;;;***
7675
7676;;;### (autoloads nil "dos-vars" "dos-vars.el" (0 0 0 0))
7677;;; Generated autoloads from dos-vars.el
7678
7679(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dos-vars" '("msdos-shells" "dos-codepage-setup-hook")))
7680
7681;;;***
7682
7683;;;### (autoloads nil "dos-w32" "dos-w32.el" (0 0 0 0))
7684;;; Generated autoloads from dos-w32.el
7685
7686(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dos-w32" '("w32-" "find-file-binary" "find-file-text" "file-name-buffer-file-type-alist" "find-buffer-file-type-coding-system")))
7687
6832;;;*** 7688;;;***
6833 7689
6834;;;### (autoloads nil "double" "double.el" (0 0 0 0)) 7690;;;### (autoloads nil "double" "double.el" (0 0 0 0))
@@ -6845,6 +7701,8 @@ strings when pressed twice. See `double-map' for details.
6845 7701
6846\(fn &optional ARG)" t nil) 7702\(fn &optional ARG)" t nil)
6847 7703
7704(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "double" '("double-translate-key" "double-read-event" "double-last-event" "double-prefix-only" "double-map")))
7705
6848;;;*** 7706;;;***
6849 7707
6850;;;### (autoloads nil "dunnet" "play/dunnet.el" (0 0 0 0)) 7708;;;### (autoloads nil "dunnet" "play/dunnet.el" (0 0 0 0))
@@ -6856,6 +7714,16 @@ Switch to *dungeon* buffer and start game.
6856 7714
6857\(fn)" t nil) 7715\(fn)" t nil)
6858 7716
7717(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dunnet" '("dun-" "dungeon-" "north" "south" "east" "west" "northeast" "southeast" "northwest" "southwest" "up" "down" "in" "out" "obj-special")))
7718
7719;;;***
7720
7721;;;### (autoloads nil "dynamic-setting" "dynamic-setting.el" (0 0
7722;;;;;; 0 0))
7723;;; Generated autoloads from dynamic-setting.el
7724
7725(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dynamic-setting" '("font-setting-change-default-font" "dynamic-setting-handle-config-changed-event")))
7726
6859;;;*** 7727;;;***
6860 7728
6861;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (0 7729;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (0
@@ -7000,6 +7868,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX).
7000 7868
7001\(fn ST CSS DOC &rest ARGS)" nil t) 7869\(fn ST CSS DOC &rest ARGS)" nil t)
7002 7870
7871(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "easy-mmode" '("easy-mmode-define-navigation" "easy-mmode-define-syntax" "easy-mmode-set-keymap-parents" "easy-mmode-pretty-mode-name")))
7872
7003;;;*** 7873;;;***
7004 7874
7005;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (0 0 0 7875;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (0 0 0
@@ -7139,6 +8009,57 @@ To implement dynamic menus, either call this from
7139 8009
7140\(fn PATH NAME ITEMS &optional BEFORE MAP)" nil nil) 8010\(fn PATH NAME ITEMS &optional BEFORE MAP)" nil nil)
7141 8011
8012(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "easymenu" '("easy-menu-" "add-submenu")))
8013
8014;;;***
8015
8016;;;### (autoloads nil "ebnf-abn" "progmodes/ebnf-abn.el" (0 0 0 0))
8017;;; Generated autoloads from progmodes/ebnf-abn.el
8018
8019(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ebnf-abn" '("ebnf-abn-")))
8020
8021;;;***
8022
8023;;;### (autoloads nil "ebnf-bnf" "progmodes/ebnf-bnf.el" (0 0 0 0))
8024;;; Generated autoloads from progmodes/ebnf-bnf.el
8025
8026(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ebnf-bnf" '("ebnf-")))
8027
8028;;;***
8029
8030;;;### (autoloads nil "ebnf-dtd" "progmodes/ebnf-dtd.el" (0 0 0 0))
8031;;; Generated autoloads from progmodes/ebnf-dtd.el
8032
8033(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ebnf-dtd" '("ebnf-dtd-")))
8034
8035;;;***
8036
8037;;;### (autoloads nil "ebnf-ebx" "progmodes/ebnf-ebx.el" (0 0 0 0))
8038;;; Generated autoloads from progmodes/ebnf-ebx.el
8039
8040(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ebnf-ebx" '("ebnf-ebx-")))
8041
8042;;;***
8043
8044;;;### (autoloads nil "ebnf-iso" "progmodes/ebnf-iso.el" (0 0 0 0))
8045;;; Generated autoloads from progmodes/ebnf-iso.el
8046
8047(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ebnf-iso" '("ebnf-iso-" "ebnf-no-meta-identifier")))
8048
8049;;;***
8050
8051;;;### (autoloads nil "ebnf-otz" "progmodes/ebnf-otz.el" (0 0 0 0))
8052;;; Generated autoloads from progmodes/ebnf-otz.el
8053
8054(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ebnf-otz" '("ebnf-")))
8055
8056;;;***
8057
8058;;;### (autoloads nil "ebnf-yac" "progmodes/ebnf-yac.el" (0 0 0 0))
8059;;; Generated autoloads from progmodes/ebnf-yac.el
8060
8061(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ebnf-yac" '("ebnf-yac-")))
8062
7142;;;*** 8063;;;***
7143 8064
7144;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (0 0 0 0)) 8065;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (0 0 0 0))
@@ -7404,6 +8325,8 @@ See `ebnf-style-database' documentation.
7404 8325
7405\(fn)" t nil) 8326\(fn)" t nil)
7406 8327
8328(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ebnf2ps" '("ebnf-")))
8329
7407;;;*** 8330;;;***
7408 8331
7409;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (0 0 0 0)) 8332;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (0 0 0 0))
@@ -7552,6 +8475,8 @@ Display statistics for a class tree.
7552 8475
7553\(fn)" t nil) 8476\(fn)" t nil)
7554 8477
8478(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ebrowse" '("ebrowse-" "ebrowse--" "electric-buffer-menu-mode-hook")))
8479
7555;;;*** 8480;;;***
7556 8481
7557;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (0 0 0 0)) 8482;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (0 0 0 0))
@@ -7584,6 +8509,8 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry.
7584 8509
7585\(fn ARG)" t nil) 8510\(fn ARG)" t nil)
7586 8511
8512(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ebuff-menu" '("Electric-buffer-menu-" "electric-buffer-menu-" "electric-buffer-overlay" "electric-buffer-update-highlight")))
8513
7587;;;*** 8514;;;***
7588 8515
7589;;;### (autoloads nil "echistory" "echistory.el" (0 0 0 0)) 8516;;;### (autoloads nil "echistory" "echistory.el" (0 0 0 0))
@@ -7595,6 +8522,8 @@ With prefix arg NOCONFIRM, execute current line as-is without editing.
7595 8522
7596\(fn &optional NOCONFIRM)" t nil) 8523\(fn &optional NOCONFIRM)" t nil)
7597 8524
8525(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "echistory" '("Electric-history-undefined" "Electric-history-quit" "electric-command-history-hook" "electric-command-history" "electric-history-map")))
8526
7598;;;*** 8527;;;***
7599 8528
7600;;;### (autoloads nil "ecomplete" "ecomplete.el" (0 0 0 0)) 8529;;;### (autoloads nil "ecomplete" "ecomplete.el" (0 0 0 0))
@@ -7605,6 +8534,8 @@ With prefix arg NOCONFIRM, execute current line as-is without editing.
7605 8534
7606\(fn)" nil nil) 8535\(fn)" nil nil)
7607 8536
8537(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ecomplete" '("ecomplete-")))
8538
7608;;;*** 8539;;;***
7609 8540
7610;;;### (autoloads nil "ede" "cedet/ede.el" (0 0 0 0)) 8541;;;### (autoloads nil "ede" "cedet/ede.el" (0 0 0 0))
@@ -7632,6 +8563,281 @@ an EDE controlled project.
7632 8563
7633\(fn &optional ARG)" t nil) 8564\(fn &optional ARG)" t nil)
7634 8565
8566(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede" '("ede-" "global-ede-mode-map" "ede" "project-try-ede")))
8567
8568;;;***
8569
8570;;;### (autoloads nil "ede/auto" "cedet/ede/auto.el" (0 0 0 0))
8571;;; Generated autoloads from cedet/ede/auto.el
8572
8573(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/auto" '("ede-project-autoload-dirmatch" "ede-project-autoload" "ede-project-class-files" "ede-show-supported-projects" "ede-add-project-autoload")))
8574
8575;;;***
8576
8577;;;### (autoloads nil "ede/autoconf-edit" "cedet/ede/autoconf-edit.el"
8578;;;;;; (0 0 0 0))
8579;;; Generated autoloads from cedet/ede/autoconf-edit.el
8580
8581(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/autoconf-edit" '("autoconf-")))
8582
8583;;;***
8584
8585;;;### (autoloads "actual autoloads are elsewhere" "ede/base" "cedet/ede/base.el"
8586;;;;;; (22164 57533 927192 607000))
8587;;; Generated autoloads from cedet/ede/base.el
8588
8589(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/base" '("ede-")))
8590
8591;;;***
8592
8593;;;### (autoloads "actual autoloads are elsewhere" "ede/config" "cedet/ede/config.el"
8594;;;;;; (22164 57533 927192 607000))
8595;;; Generated autoloads from cedet/ede/config.el
8596
8597(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/config" '("ede-project-with-config-" "ede-extra-config-" "ede-target-with-" "ede-extra-config" "ede-project-with-config")))
8598
8599;;;***
8600
8601;;;### (autoloads "actual autoloads are elsewhere" "ede/cpp-root"
8602;;;;;; "cedet/ede/cpp-root.el" (22164 57533 931192 607000))
8603;;; Generated autoloads from cedet/ede/cpp-root.el
8604
8605(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/cpp-root" '("ede-cpp-root-target" "ede-cpp-root-project-list" "ede-create-lots-of-projects-under-dir")))
8606
8607;;;***
8608
8609;;;### (autoloads "actual autoloads are elsewhere" "ede/custom" "cedet/ede/custom.el"
8610;;;;;; (22164 57533 931192 607000))
8611;;; Generated autoloads from cedet/ede/custom.el
8612
8613(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/custom" '("ede-customize-target" "eieio-ede-old-variables" "ede-project-sort-targets-list" "ede-project-sort-targets-order")))
8614
8615;;;***
8616
8617;;;### (autoloads nil "ede/detect" "cedet/ede/detect.el" (0 0 0 0))
8618;;; Generated autoloads from cedet/ede/detect.el
8619
8620(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/detect" '("ede--detect-" "ede-detect-qtest" "ede-detect-directory-for-project")))
8621
8622;;;***
8623
8624;;;### (autoloads "actual autoloads are elsewhere" "ede/dired" "cedet/ede/dired.el"
8625;;;;;; (22164 57533 931192 607000))
8626;;; Generated autoloads from cedet/ede/dired.el
8627
8628(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/dired" '("ede-dired-add-to-target" "ede-dired-keymap")))
8629
8630;;;***
8631
8632;;;### (autoloads "actual autoloads are elsewhere" "ede/emacs" "cedet/ede/emacs.el"
8633;;;;;; (22164 57533 931192 607000))
8634;;; Generated autoloads from cedet/ede/emacs.el
8635
8636(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/emacs" '("ede-emacs-")))
8637
8638;;;***
8639
8640;;;### (autoloads "actual autoloads are elsewhere" "ede/files" "cedet/ede/files.el"
8641;;;;;; (22164 57533 931192 607000))
8642;;; Generated autoloads from cedet/ede/files.el
8643
8644(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/files" '("ede-" "ede--")))
8645
8646;;;***
8647
8648;;;### (autoloads "actual autoloads are elsewhere" "ede/generic"
8649;;;;;; "cedet/ede/generic.el" (22164 57533 931192 607000))
8650;;; Generated autoloads from cedet/ede/generic.el
8651
8652(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/generic" '("ede-generic-")))
8653
8654;;;***
8655
8656;;;### (autoloads "actual autoloads are elsewhere" "ede/linux" "cedet/ede/linux.el"
8657;;;;;; (22164 57533 931192 607000))
8658;;; Generated autoloads from cedet/ede/linux.el
8659
8660(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/linux" '("ede-linux-" "project-linux-" "ede-linux--get-" "ede-linux--detect-architecture" "ede-linux--include-path")))
8661
8662;;;***
8663
8664;;;### (autoloads "actual autoloads are elsewhere" "ede/locate" "cedet/ede/locate.el"
8665;;;;;; (22189 60738 37741 19000))
8666;;; Generated autoloads from cedet/ede/locate.el
8667
8668(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/locate" '("ede-locate-")))
8669
8670;;;***
8671
8672;;;### (autoloads "actual autoloads are elsewhere" "ede/make" "cedet/ede/make.el"
8673;;;;;; (22164 57533 931192 607000))
8674;;; Generated autoloads from cedet/ede/make.el
8675
8676(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/make" '("ede-make-min-version" "ede-make-command")))
8677
8678;;;***
8679
8680;;;### (autoloads nil "ede/makefile-edit" "cedet/ede/makefile-edit.el"
8681;;;;;; (0 0 0 0))
8682;;; Generated autoloads from cedet/ede/makefile-edit.el
8683
8684(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/makefile-edit" '("makefile-")))
8685
8686;;;***
8687
8688;;;### (autoloads nil "ede/pconf" "cedet/ede/pconf.el" (0 0 0 0))
8689;;; Generated autoloads from cedet/ede/pconf.el
8690
8691(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/pconf" '("ede-pconf-create-file-query")))
8692
8693;;;***
8694
8695;;;### (autoloads nil "ede/pmake" "cedet/ede/pmake.el" (0 0 0 0))
8696;;; Generated autoloads from cedet/ede/pmake.el
8697
8698(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/pmake" '("ede-pmake-varname" "ede-pmake-end-of-variable" "ede-pmake-insert-variable-once" "ede-pmake-insert-variable-shared")))
8699
8700;;;***
8701
8702;;;### (autoloads nil "ede/proj" "cedet/ede/proj.el" (0 0 0 0))
8703;;; Generated autoloads from cedet/ede/proj.el
8704
8705(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj" '("ede-proj-")))
8706
8707;;;***
8708
8709;;;### (autoloads nil "ede/proj-archive" "cedet/ede/proj-archive.el"
8710;;;;;; (0 0 0 0))
8711;;; Generated autoloads from cedet/ede/proj-archive.el
8712
8713(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj-archive" '("ede-archive-linker" "ede-proj-target-makefile-archive")))
8714
8715;;;***
8716
8717;;;### (autoloads nil "ede/proj-aux" "cedet/ede/proj-aux.el" (0 0
8718;;;;;; 0 0))
8719;;; Generated autoloads from cedet/ede/proj-aux.el
8720
8721(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj-aux" '("ede-proj-target-aux" "ede-aux-source")))
8722
8723;;;***
8724
8725;;;### (autoloads nil "ede/proj-comp" "cedet/ede/proj-comp.el" (0
8726;;;;;; 0 0 0))
8727;;; Generated autoloads from cedet/ede/proj-comp.el
8728
8729(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj-comp" '("ede-" "proj-comp-insert-variable-once")))
8730
8731;;;***
8732
8733;;;### (autoloads nil "ede/proj-elisp" "cedet/ede/proj-elisp.el"
8734;;;;;; (0 0 0 0))
8735;;; Generated autoloads from cedet/ede/proj-elisp.el
8736
8737(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj-elisp" '("ede-proj-" "ede-xemacs-compiler" "ede-source-emacs" "ede-emacs-cedet-autogen-compiler" "ede-emacs-compiler")))
8738
8739;;;***
8740
8741;;;### (autoloads nil "ede/proj-info" "cedet/ede/proj-info.el" (0
8742;;;;;; 0 0 0))
8743;;; Generated autoloads from cedet/ede/proj-info.el
8744
8745(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj-info" '("ede-texi2html-compiler" "ede-proj-target-makefile-info" "ede-makeinfo-find-info-filename" "ede-makeinfo-compiler" "ede-makeinfo-source")))
8746
8747;;;***
8748
8749;;;### (autoloads nil "ede/proj-misc" "cedet/ede/proj-misc.el" (0
8750;;;;;; 0 0 0))
8751;;; Generated autoloads from cedet/ede/proj-misc.el
8752
8753(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj-misc" '("ede-proj-target-makefile-miscelaneous" "ede-misc-compile" "ede-misc-source")))
8754
8755;;;***
8756
8757;;;### (autoloads nil "ede/proj-obj" "cedet/ede/proj-obj.el" (0 0
8758;;;;;; 0 0))
8759;;; Generated autoloads from cedet/ede/proj-obj.el
8760
8761(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj-obj" '("ede-")))
8762
8763;;;***
8764
8765;;;### (autoloads nil "ede/proj-prog" "cedet/ede/proj-prog.el" (0
8766;;;;;; 0 0 0))
8767;;; Generated autoloads from cedet/ede/proj-prog.el
8768
8769(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj-prog" '("ede-proj-target-makefile-program")))
8770
8771;;;***
8772
8773;;;### (autoloads nil "ede/proj-scheme" "cedet/ede/proj-scheme.el"
8774;;;;;; (0 0 0 0))
8775;;; Generated autoloads from cedet/ede/proj-scheme.el
8776
8777(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj-scheme" '("ede-proj-target-scheme")))
8778
8779;;;***
8780
8781;;;### (autoloads nil "ede/proj-shared" "cedet/ede/proj-shared.el"
8782;;;;;; (0 0 0 0))
8783;;; Generated autoloads from cedet/ede/proj-shared.el
8784
8785(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/proj-shared" '("ede-g++-" "ede-gcc-shared-compiler" "ede-gcc-libtool-shared-compiler" "ede-proj-target-makefile-shared-object" "ede-cc-linker-libtool")))
8786
8787;;;***
8788
8789;;;### (autoloads nil "ede/project-am" "cedet/ede/project-am.el"
8790;;;;;; (0 0 0 0))
8791;;; Generated autoloads from cedet/ede/project-am.el
8792
8793(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/project-am" '("project-am-")))
8794
8795;;;***
8796
8797;;;### (autoloads "actual autoloads are elsewhere" "ede/shell" "cedet/ede/shell.el"
8798;;;;;; (22164 57533 935192 607000))
8799;;; Generated autoloads from cedet/ede/shell.el
8800
8801(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/shell" '("ede-shell-run-command")))
8802
8803;;;***
8804
8805;;;### (autoloads nil "ede/simple" "cedet/ede/simple.el" (0 0 0 0))
8806;;; Generated autoloads from cedet/ede/simple.el
8807
8808(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/simple" '("ede-simple-save-" "ede-simple-project" "ede-simple-target" "ede-simple-load" "ede-simple-projectfile-for-dir")))
8809
8810;;;***
8811
8812;;;### (autoloads nil "ede/source" "cedet/ede/source.el" (0 0 0 0))
8813;;; Generated autoloads from cedet/ede/source.el
8814
8815(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/source" '("ede-source-scheme" "ede-sourcecode-list" "ede-sourcecode")))
8816
8817;;;***
8818
8819;;;### (autoloads "actual autoloads are elsewhere" "ede/speedbar"
8820;;;;;; "cedet/ede/speedbar.el" (22164 57533 935192 607000))
8821;;; Generated autoloads from cedet/ede/speedbar.el
8822
8823(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/speedbar" '("ede-")))
8824
8825;;;***
8826
8827;;;### (autoloads nil "ede/srecode" "cedet/ede/srecode.el" (0 0 0
8828;;;;;; 0))
8829;;; Generated autoloads from cedet/ede/srecode.el
8830
8831(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/srecode" '("ede-srecode-insert" "ede-srecode-insert-with-dictionary" "ede-srecode-setup")))
8832
8833;;;***
8834
8835;;;### (autoloads "actual autoloads are elsewhere" "ede/util" "cedet/ede/util.el"
8836;;;;;; (22164 57533 935192 607000))
8837;;; Generated autoloads from cedet/ede/util.el
8838
8839(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ede/util" '("ede-make-buffer-writable")))
8840
7635;;;*** 8841;;;***
7636 8842
7637;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (0 0 0 0)) 8843;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (0 0 0 0))
@@ -7696,6 +8902,8 @@ Toggle edebugging of all forms.
7696 8902
7697\(fn)" t nil) 8903\(fn)" t nil)
7698 8904
8905(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "edebug" '("edebug-" "edebug--" "global-edebug-" "save-" "get-edebug-spec" "&key" "def-edebug-spec" "quote" "defconst" "defvar" "defun" "defmacro" "arglist" "lambda-list" "interactive" "function-form" "function" "macro" "let" "let*" "setq" "setq-default" "cond" "condition-case" "\\`" "backquote-form" "\\," "\\,@" "cancel-edebug-on-entry" "edebug")))
8906
7699;;;*** 8907;;;***
7700 8908
7701;;;### (autoloads nil "ediff" "vc/ediff.el" (0 0 0 0)) 8909;;;### (autoloads nil "ediff" "vc/ediff.el" (0 0 0 0))
@@ -7968,6 +9176,15 @@ With optional NODE, goes to that node.
7968 9176
7969\(fn)" nil nil) 9177\(fn)" nil nil)
7970 9178
9179(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ediff" '("ediff-")))
9180
9181;;;***
9182
9183;;;### (autoloads nil "ediff-diff" "vc/ediff-diff.el" (0 0 0 0))
9184;;; Generated autoloads from vc/ediff-diff.el
9185
9186(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ediff-diff" '("ediff-")))
9187
7971;;;*** 9188;;;***
7972 9189
7973;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (0 0 0 0)) 9190;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (0 0 0 0))
@@ -7978,6 +9195,22 @@ With optional NODE, goes to that node.
7978 9195
7979\(fn)" t nil) 9196\(fn)" t nil)
7980 9197
9198(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ediff-help" '("ediff-")))
9199
9200;;;***
9201
9202;;;### (autoloads nil "ediff-init" "vc/ediff-init.el" (0 0 0 0))
9203;;; Generated autoloads from vc/ediff-init.el
9204
9205(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ediff-init" '("ediff-" "stipple-pixmap")))
9206
9207;;;***
9208
9209;;;### (autoloads nil "ediff-merg" "vc/ediff-merg.el" (0 0 0 0))
9210;;; Generated autoloads from vc/ediff-merg.el
9211
9212(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ediff-merg" '("ediff-")))
9213
7981;;;*** 9214;;;***
7982 9215
7983;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (0 0 0 0)) 9216;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (0 0 0 0))
@@ -7990,6 +9223,15 @@ Display Ediff's registry.
7990 9223
7991(defalias 'eregistry 'ediff-show-registry) 9224(defalias 'eregistry 'ediff-show-registry)
7992 9225
9226(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ediff-mult" '("ediff-")))
9227
9228;;;***
9229
9230;;;### (autoloads nil "ediff-ptch" "vc/ediff-ptch.el" (0 0 0 0))
9231;;; Generated autoloads from vc/ediff-ptch.el
9232
9233(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ediff-ptch" '("ediff-")))
9234
7993;;;*** 9235;;;***
7994 9236
7995;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (0 0 0 0)) 9237;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (0 0 0 0))
@@ -8009,6 +9251,22 @@ To change the default, set the variable `ediff-use-toolbar-p', which see.
8009 9251
8010\(fn)" t nil) 9252\(fn)" t nil)
8011 9253
9254(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ediff-util" '("ediff-")))
9255
9256;;;***
9257
9258;;;### (autoloads nil "ediff-vers" "vc/ediff-vers.el" (0 0 0 0))
9259;;; Generated autoloads from vc/ediff-vers.el
9260
9261(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ediff-vers" '("ediff-vc-" "ediff-rcs-" "rcs-ediff-view-revision" "ediff-keep-tmp-versions" "ediff-delete-version-file")))
9262
9263;;;***
9264
9265;;;### (autoloads nil "ediff-wind" "vc/ediff-wind.el" (0 0 0 0))
9266;;; Generated autoloads from vc/ediff-wind.el
9267
9268(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ediff-wind" '("ediff-")))
9269
8012;;;*** 9270;;;***
8013 9271
8014;;;### (autoloads nil "edmacro" "edmacro.el" (0 0 0 0)) 9272;;;### (autoloads nil "edmacro" "edmacro.el" (0 0 0 0))
@@ -8058,6 +9316,8 @@ or nil, use a compact 80-column format.
8058 9316
8059\(fn &optional MACRO VERBOSE)" nil nil) 9317\(fn &optional MACRO VERBOSE)" nil nil)
8060 9318
9319(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "edmacro" '("edmacro-")))
9320
8061;;;*** 9321;;;***
8062 9322
8063;;;### (autoloads nil "edt" "emulation/edt.el" (0 0 0 0)) 9323;;;### (autoloads nil "edt" "emulation/edt.el" (0 0 0 0))
@@ -8075,6 +9335,39 @@ Turn on EDT Emulation.
8075 9335
8076\(fn)" t nil) 9336\(fn)" t nil)
8077 9337
9338(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "edt" '("edt-")))
9339
9340;;;***
9341
9342;;;### (autoloads nil "edt-lk201" "emulation/edt-lk201.el" (0 0 0
9343;;;;;; 0))
9344;;; Generated autoloads from emulation/edt-lk201.el
9345
9346(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "edt-lk201" '("*EDT-keys*")))
9347
9348;;;***
9349
9350;;;### (autoloads nil "edt-mapper" "emulation/edt-mapper.el" (0 0
9351;;;;;; 0 0))
9352;;; Generated autoloads from emulation/edt-mapper.el
9353
9354(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "edt-mapper" '("edt-")))
9355
9356;;;***
9357
9358;;;### (autoloads nil "edt-pc" "emulation/edt-pc.el" (0 0 0 0))
9359;;; Generated autoloads from emulation/edt-pc.el
9360
9361(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "edt-pc" '("*EDT-keys*")))
9362
9363;;;***
9364
9365;;;### (autoloads nil "edt-vt100" "emulation/edt-vt100.el" (0 0 0
9366;;;;;; 0))
9367;;; Generated autoloads from emulation/edt-vt100.el
9368
9369(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "edt-vt100" '("edt-set-term-width-132" "edt-set-term-width-80")))
9370
8078;;;*** 9371;;;***
8079 9372
8080;;;### (autoloads nil "ehelp" "ehelp.el" (0 0 0 0)) 9373;;;### (autoloads nil "ehelp" "ehelp.el" (0 0 0 0))
@@ -8111,12 +9404,32 @@ BUFFER is put back into its original major mode.
8111 9404
8112\(fn FUN &optional NAME)" nil nil) 9405\(fn FUN &optional NAME)" nil nil)
8113 9406
9407(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ehelp" '("electric-" "ehelp-map" "ehelp-command")))
9408
8114;;;*** 9409;;;***
8115 9410
8116;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (0 0 0 0)) 9411;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (0 0 0 0))
8117;;; Generated autoloads from emacs-lisp/eieio.el 9412;;; Generated autoloads from emacs-lisp/eieio.el
8118(push (purecopy '(eieio 1 4)) package--builtin-versions) 9413(push (purecopy '(eieio 1 4)) package--builtin-versions)
8119 9414
9415(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eieio" '("eieio-" "object-" "slot-" "eieio--" "defclass" "oref" "set-slot-value" "oref-default" "with-slots" "same-class-p" "obj-of-class-p" "child-of-class-p" "oset" "oset-default" "find-class")))
9416
9417;;;***
9418
9419;;;### (autoloads nil "eieio-base" "emacs-lisp/eieio-base.el" (0
9420;;;;;; 0 0 0))
9421;;; Generated autoloads from emacs-lisp/eieio-base.el
9422
9423(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eieio-base" '("eieio-persistent-" "eieio-instance-" "eieio-singleton" "eieio-persistent" "eieio-named")))
9424
9425;;;***
9426
9427;;;### (autoloads "actual autoloads are elsewhere" "eieio-compat"
9428;;;;;; "emacs-lisp/eieio-compat.el" (22164 57534 179192 607000))
9429;;; Generated autoloads from emacs-lisp/eieio-compat.el
9430
9431(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eieio-compat" '("no-applicable-method" "no-next-method" "next-method-p" "generic-p" "eieio--generic-static-symbol-specializers")))
9432
8120;;;*** 9433;;;***
8121 9434
8122;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (0 9435;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (0
@@ -8134,6 +9447,40 @@ It creates an autoload function for CNAME's constructor.
8134 9447
8135\(fn CNAME SUPERCLASSES FILENAME DOC)" nil nil) 9448\(fn CNAME SUPERCLASSES FILENAME DOC)" nil nil)
8136 9449
9450(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eieio-core" '("eieio-" "eieio--" "class-" "invalid-slot-" "inconsistent-class-hierarchy" "unbound-slot")))
9451
9452;;;***
9453
9454;;;### (autoloads "actual autoloads are elsewhere" "eieio-custom"
9455;;;;;; "emacs-lisp/eieio-custom.el" (22164 57534 179192 607000))
9456;;; Generated autoloads from emacs-lisp/eieio-custom.el
9457
9458(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eieio-custom" '("eieio-")))
9459
9460;;;***
9461
9462;;;### (autoloads nil "eieio-datadebug" "emacs-lisp/eieio-datadebug.el"
9463;;;;;; (0 0 0 0))
9464;;; Generated autoloads from emacs-lisp/eieio-datadebug.el
9465
9466(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eieio-datadebug" '("data-debug-insert-object-button" "data-debug-insert-object-slots-from-point" "data-debug-insert-object-slots")))
9467
9468;;;***
9469
9470;;;### (autoloads "actual autoloads are elsewhere" "eieio-opt" "emacs-lisp/eieio-opt.el"
9471;;;;;; (22323 1714 165363 124000))
9472;;; Generated autoloads from emacs-lisp/eieio-opt.el
9473
9474(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eieio-opt" '("eieio-")))
9475
9476;;;***
9477
9478;;;### (autoloads nil "eieio-speedbar" "emacs-lisp/eieio-speedbar.el"
9479;;;;;; (0 0 0 0))
9480;;; Generated autoloads from emacs-lisp/eieio-speedbar.el
9481
9482(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eieio-speedbar" '("eieio-speedbar-" "eieio-speedbar")))
9483
8137;;;*** 9484;;;***
8138 9485
8139;;;### (autoloads nil "elec-pair" "elec-pair.el" (0 0 0 0)) 9486;;;### (autoloads nil "elec-pair" "elec-pair.el" (0 0 0 0))
@@ -8176,6 +9523,8 @@ Toggle `electric-pair-mode' only in this buffer.
8176 9523
8177\(fn &optional ARG)" t nil) 9524\(fn &optional ARG)" t nil)
8178 9525
9526(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "elec-pair" '("electric-pair-" "electric-pair--")))
9527
8179;;;*** 9528;;;***
8180 9529
8181;;;### (autoloads nil "elide-head" "elide-head.el" (0 0 0 0)) 9530;;;### (autoloads nil "elide-head" "elide-head.el" (0 0 0 0))
@@ -8191,6 +9540,8 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks.
8191 9540
8192\(fn &optional ARG)" t nil) 9541\(fn &optional ARG)" t nil)
8193 9542
9543(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "elide-head" '("elide-head-show" "elide-head-overlay" "elide-head-headers-to-hide")))
9544
8194;;;*** 9545;;;***
8195 9546
8196;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (0 0 0 0)) 9547;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (0 0 0 0))
@@ -8226,6 +9577,8 @@ optional prefix argument REINIT is non-nil.
8226 9577
8227\(fn &optional REINIT)" t nil) 9578\(fn &optional REINIT)" t nil)
8228 9579
9580(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "elint" '("elint-")))
9581
8229;;;*** 9582;;;***
8230 9583
8231;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (0 0 0 0)) 9584;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (0 0 0 0))
@@ -8260,6 +9613,144 @@ displayed.
8260 9613
8261\(fn)" t nil) 9614\(fn)" t nil)
8262 9615
9616(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "elp" '("elp-" "elp--make-wrapper" "elp--instrumented-p" "elp--advice-name")))
9617
9618;;;***
9619
9620;;;### (autoloads "actual autoloads are elsewhere" "em-alias" "eshell/em-alias.el"
9621;;;;;; (22164 57534 283192 607000))
9622;;; Generated autoloads from eshell/em-alias.el
9623
9624(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-alias" '("eshell-" "eshell/alias" "pcomplete/eshell-mode/alias")))
9625
9626;;;***
9627
9628;;;### (autoloads "actual autoloads are elsewhere" "em-banner" "eshell/em-banner.el"
9629;;;;;; (22164 57534 283192 607000))
9630;;; Generated autoloads from eshell/em-banner.el
9631
9632(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-banner" '("eshell-banner-message" "eshell-banner-load-hook" "eshell-banner-initialize")))
9633
9634;;;***
9635
9636;;;### (autoloads "actual autoloads are elsewhere" "em-basic" "eshell/em-basic.el"
9637;;;;;; (22164 57534 283192 607000))
9638;;; Generated autoloads from eshell/em-basic.el
9639
9640(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-basic" '("eshell/" "eshell-plain-echo-behavior" "eshell-echo")))
9641
9642;;;***
9643
9644;;;### (autoloads "actual autoloads are elsewhere" "em-cmpl" "eshell/em-cmpl.el"
9645;;;;;; (22164 57534 283192 607000))
9646;;; Generated autoloads from eshell/em-cmpl.el
9647
9648(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-cmpl" '("eshell-")))
9649
9650;;;***
9651
9652;;;### (autoloads "actual autoloads are elsewhere" "em-dirs" "eshell/em-dirs.el"
9653;;;;;; (22164 57534 283192 607000))
9654;;; Generated autoloads from eshell/em-dirs.el
9655
9656(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-dirs" '("eshell-" "eshell/")))
9657
9658;;;***
9659
9660;;;### (autoloads "actual autoloads are elsewhere" "em-glob" "eshell/em-glob.el"
9661;;;;;; (22164 57534 283192 607000))
9662;;; Generated autoloads from eshell/em-glob.el
9663
9664(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-glob" '("eshell-")))
9665
9666;;;***
9667
9668;;;### (autoloads "actual autoloads are elsewhere" "em-hist" "eshell/em-hist.el"
9669;;;;;; (22164 57534 287192 607000))
9670;;; Generated autoloads from eshell/em-hist.el
9671
9672(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-hist" '("eshell-" "eshell/history")))
9673
9674;;;***
9675
9676;;;### (autoloads "actual autoloads are elsewhere" "em-ls" "eshell/em-ls.el"
9677;;;;;; (22164 57534 287192 607000))
9678;;; Generated autoloads from eshell/em-ls.el
9679
9680(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-ls" '("eshell-ls-" "eshell/ls" "eshell-ls--insert-directory" "eshell-do-ls")))
9681
9682;;;***
9683
9684;;;### (autoloads "actual autoloads are elsewhere" "em-pred" "eshell/em-pred.el"
9685;;;;;; (22164 57534 287192 607000))
9686;;; Generated autoloads from eshell/em-pred.el
9687
9688(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-pred" '("eshell-")))
9689
9690;;;***
9691
9692;;;### (autoloads "actual autoloads are elsewhere" "em-prompt" "eshell/em-prompt.el"
9693;;;;;; (22164 57534 287192 607000))
9694;;; Generated autoloads from eshell/em-prompt.el
9695
9696(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-prompt" '("eshell-")))
9697
9698;;;***
9699
9700;;;### (autoloads "actual autoloads are elsewhere" "em-rebind" "eshell/em-rebind.el"
9701;;;;;; (22164 57534 291192 607000))
9702;;; Generated autoloads from eshell/em-rebind.el
9703
9704(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-rebind" '("eshell-")))
9705
9706;;;***
9707
9708;;;### (autoloads "actual autoloads are elsewhere" "em-script" "eshell/em-script.el"
9709;;;;;; (22164 57534 291192 607000))
9710;;; Generated autoloads from eshell/em-script.el
9711
9712(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-script" '("eshell-" "eshell/source" "eshell/.")))
9713
9714;;;***
9715
9716;;;### (autoloads "actual autoloads are elsewhere" "em-smart" "eshell/em-smart.el"
9717;;;;;; (22164 57534 291192 607000))
9718;;; Generated autoloads from eshell/em-smart.el
9719
9720(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-smart" '("eshell-")))
9721
9722;;;***
9723
9724;;;### (autoloads "actual autoloads are elsewhere" "em-term" "eshell/em-term.el"
9725;;;;;; (22174 6972 512792 520000))
9726;;; Generated autoloads from eshell/em-term.el
9727
9728(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-term" '("eshell-term-" "eshell-visual-" "eshell-escape-control-x" "eshell-destroy-buffer-when-process-dies" "eshell-exec-visual")))
9729
9730;;;***
9731
9732;;;### (autoloads "actual autoloads are elsewhere" "em-tramp" "eshell/em-tramp.el"
9733;;;;;; (22164 57534 291192 607000))
9734;;; Generated autoloads from eshell/em-tramp.el
9735
9736(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-tramp" '("eshell/sudo" "eshell/su" "eshell-tramp-initialize")))
9737
9738;;;***
9739
9740;;;### (autoloads "actual autoloads are elsewhere" "em-unix" "eshell/em-unix.el"
9741;;;;;; (22319 4659 781044 40000))
9742;;; Generated autoloads from eshell/em-unix.el
9743
9744(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-unix" '("eshell/" "eshell-" "pcomplete/" "nil-blank-string")))
9745
9746;;;***
9747
9748;;;### (autoloads "actual autoloads are elsewhere" "em-xtra" "eshell/em-xtra.el"
9749;;;;;; (22164 57534 295192 607000))
9750;;; Generated autoloads from eshell/em-xtra.el
9751
9752(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "em-xtra" '("eshell/" "pcomplete/bcc32" "pcomplete/bcc")))
9753
8263;;;*** 9754;;;***
8264 9755
8265;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (0 0 0 0)) 9756;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (0 0 0 0))
@@ -8287,6 +9778,8 @@ Other values are interpreted as usual.
8287 9778
8288\(fn &optional ARG)" t nil) 9779\(fn &optional ARG)" t nil)
8289 9780
9781(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "emacs-lock" '("emacs-lock--" "emacs-lock-" "toggle-emacs-lock")))
9782
8290;;;*** 9783;;;***
8291 9784
8292;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (0 0 0 0)) 9785;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (0 0 0 0))
@@ -8300,6 +9793,8 @@ Prompts for bug subject. Leaves you in a mail buffer.
8300 9793
8301(set-advertised-calling-convention 'report-emacs-bug '(topic) '"24.5") 9794(set-advertised-calling-convention 'report-emacs-bug '(topic) '"24.5")
8302 9795
9796(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "emacsbug" '("report-emacs-bug-")))
9797
8303;;;*** 9798;;;***
8304 9799
8305;;;### (autoloads nil "emerge" "vc/emerge.el" (0 0 0 0)) 9800;;;### (autoloads nil "emerge" "vc/emerge.el" (0 0 0 0))
@@ -8360,6 +9855,8 @@ Emerge two RCS revisions of a file, with another revision as ancestor.
8360 9855
8361\(fn A-DIR B-DIR ANCESTOR-DIR OUTPUT-DIR)" t nil) 9856\(fn A-DIR B-DIR ANCESTOR-DIR OUTPUT-DIR)" t nil)
8362 9857
9858(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "emerge" '("emerge-")))
9859
8363;;;*** 9860;;;***
8364 9861
8365;;;### (autoloads nil "enriched" "textmodes/enriched.el" (0 0 0 0)) 9862;;;### (autoloads nil "enriched" "textmodes/enriched.el" (0 0 0 0))
@@ -8395,6 +9892,8 @@ Commands:
8395 9892
8396\(fn FROM TO)" nil nil) 9893\(fn FROM TO)" nil nil)
8397 9894
9895(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "enriched" '("enriched-")))
9896
8398;;;*** 9897;;;***
8399 9898
8400;;;### (autoloads nil "epa" "epa.el" (0 0 0 0)) 9899;;;### (autoloads nil "epa" "epa.el" (0 0 0 0))
@@ -8583,6 +10082,8 @@ Insert selected KEYS after the point.
8583 10082
8584\(fn KEYS)" t nil) 10083\(fn KEYS)" t nil)
8585 10084
10085(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "epa" '("epa-" "epa--")))
10086
8586;;;*** 10087;;;***
8587 10088
8588;;;### (autoloads nil "epa-dired" "epa-dired.el" (0 0 0 0)) 10089;;;### (autoloads nil "epa-dired" "epa-dired.el" (0 0 0 0))
@@ -8628,6 +10129,8 @@ Encrypt marked files.
8628 10129
8629\(fn)" t nil) 10130\(fn)" t nil)
8630 10131
10132(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "epa-file" '("epa-file-" "epa-file--find-file-not-found-function" "epa-inhibit")))
10133
8631;;;*** 10134;;;***
8632 10135
8633;;;### (autoloads nil "epa-mail" "epa-mail.el" (0 0 0 0)) 10136;;;### (autoloads nil "epa-mail" "epa-mail.el" (0 0 0 0))
@@ -8706,6 +10209,8 @@ if ARG is omitted or nil.
8706 10209
8707\(fn &optional ARG)" t nil) 10210\(fn &optional ARG)" t nil)
8708 10211
10212(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "epa-mail" '("epa-mail-mode-" "epa-mail--find-usable-key" "epa-mail-default-recipients")))
10213
8709;;;*** 10214;;;***
8710 10215
8711;;;### (autoloads nil "epg" "epg.el" (0 0 0 0)) 10216;;;### (autoloads nil "epg" "epg.el" (0 0 0 0))
@@ -8717,6 +10222,8 @@ Return a context object.
8717 10222
8718\(fn &optional PROTOCOL ARMOR TEXTMODE INCLUDE-CERTS CIPHER-ALGORITHM DIGEST-ALGORITHM COMPRESS-ALGORITHM)" nil nil) 10223\(fn &optional PROTOCOL ARMOR TEXTMODE INCLUDE-CERTS CIPHER-ALGORITHM DIGEST-ALGORITHM COMPRESS-ALGORITHM)" nil nil)
8719 10224
10225(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "epg" '("epg-" "epg--")))
10226
8720;;;*** 10227;;;***
8721 10228
8722;;;### (autoloads nil "epg-config" "epg-config.el" (0 0 0 0)) 10229;;;### (autoloads nil "epg-config" "epg-config.el" (0 0 0 0))
@@ -8725,14 +10232,15 @@ Return a context object.
8725(autoload 'epg-find-configuration "epg-config" "\ 10232(autoload 'epg-find-configuration "epg-config" "\
8726Find or create a usable configuration to handle PROTOCOL. 10233Find or create a usable configuration to handle PROTOCOL.
8727This function first looks at the existing configuration found by 10234This function first looks at the existing configuration found by
8728the previous invocation of this function, unless FORCE is non-nil. 10235the previous invocation of this function, unless NO-CACHE is non-nil.
8729 10236
8730Then it walks through `epg-config--program-alist'. If 10237Then it walks through PROGRAM-ALIST or
8731`epg-gpg-program' or `epg-gpgsm-program' is already set with 10238`epg-config--program-alist'. If `epg-gpg-program' or
8732custom, use it. Otherwise, it tries the programs listed in the 10239`epg-gpgsm-program' is already set with custom, use it.
8733entry until the version requirement is met. 10240Otherwise, it tries the programs listed in the entry until the
10241version requirement is met.
8734 10242
8735\(fn PROTOCOL &optional FORCE)" nil nil) 10243\(fn PROTOCOL &optional NO-CACHE PROGRAM-ALIST)" nil nil)
8736 10244
8737(autoload 'epg-configuration "epg-config" "\ 10245(autoload 'epg-configuration "epg-config" "\
8738Return a list of internal configuration parameters of `epg-gpg-program'. 10246Return a list of internal configuration parameters of `epg-gpg-program'.
@@ -8751,6 +10259,8 @@ Look at CONFIG and try to expand GROUP.
8751 10259
8752\(fn CONFIG GROUP)" nil nil) 10260\(fn CONFIG GROUP)" nil nil)
8753 10261
10262(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "epg-config" '("epg-" "epg--configurations")))
10263
8754;;;*** 10264;;;***
8755 10265
8756;;;### (autoloads nil "erc" "erc/erc.el" (0 0 0 0)) 10266;;;### (autoloads nil "erc" "erc/erc.el" (0 0 0 0))
@@ -8800,6 +10310,8 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL.
8800 10310
8801\(fn HOST PORT CHANNEL USER PASSWORD)" nil nil) 10311\(fn HOST PORT CHANNEL USER PASSWORD)" nil nil)
8802 10312
10313(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc" '("erc-" "erc--buffer-p" "define-erc-module")))
10314
8803;;;*** 10315;;;***
8804 10316
8805;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (0 0 0 10317;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (0 0 0
@@ -8807,24 +10319,39 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL.
8807;;; Generated autoloads from erc/erc-autoaway.el 10319;;; Generated autoloads from erc/erc-autoaway.el
8808 (autoload 'erc-autoaway-mode "erc-autoaway") 10320 (autoload 'erc-autoaway-mode "erc-autoaway")
8809 10321
10322(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-autoaway" '("erc-autoaway-" "erc-auto-set-away" "erc-auto-discard-away" "autoaway")))
10323
10324;;;***
10325
10326;;;### (autoloads nil "erc-backend" "erc/erc-backend.el" (0 0 0 0))
10327;;; Generated autoloads from erc/erc-backend.el
10328
10329(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-backend" '("erc-" "431" "315" "311" "250" "376" "MOTD" "PRIVMSG")))
10330
8810;;;*** 10331;;;***
8811 10332
8812;;;### (autoloads nil "erc-button" "erc/erc-button.el" (0 0 0 0)) 10333;;;### (autoloads nil "erc-button" "erc/erc-button.el" (0 0 0 0))
8813;;; Generated autoloads from erc/erc-button.el 10334;;; Generated autoloads from erc/erc-button.el
8814 (autoload 'erc-button-mode "erc-button" nil t) 10335 (autoload 'erc-button-mode "erc-button" nil t)
8815 10336
10337(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-button" '("erc-button-" "erc-emacswiki-" "erc-browse-" "erc-nick-" "button")))
10338
8816;;;*** 10339;;;***
8817 10340
8818;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (0 0 0 0)) 10341;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (0 0 0 0))
8819;;; Generated autoloads from erc/erc-capab.el 10342;;; Generated autoloads from erc/erc-capab.el
8820 (autoload 'erc-capab-identify-mode "erc-capab" nil t) 10343 (autoload 'erc-capab-identify-mode "erc-capab" nil t)
8821 10344
10345(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-capab" '("erc-capab-identify-" "capab-identify")))
10346
8822;;;*** 10347;;;***
8823 10348
8824;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (0 0 0 0)) 10349;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (0 0 0 0))
8825;;; Generated autoloads from erc/erc-compat.el 10350;;; Generated autoloads from erc/erc-compat.el
8826 (autoload 'erc-define-minor-mode "erc-compat") 10351 (autoload 'erc-define-minor-mode "erc-compat")
8827 10352
10353(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-compat" '("erc-")))
10354
8828;;;*** 10355;;;***
8829 10356
8830;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (0 0 0 0)) 10357;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (0 0 0 0))
@@ -8854,6 +10381,8 @@ that subcommand.
8854 10381
8855\(fn PROC NICK LOGIN HOST TO QUERY)" nil nil) 10382\(fn PROC NICK LOGIN HOST TO QUERY)" nil nil)
8856 10383
10384(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-dcc" '("erc-" "dcc" "pcomplete/erc-mode/CREQ" "pcomplete/erc-mode/SREQ")))
10385
8857;;;*** 10386;;;***
8858 10387
8859;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" 10388;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el"
@@ -8861,6 +10390,8 @@ that subcommand.
8861;;; Generated autoloads from erc/erc-desktop-notifications.el 10390;;; Generated autoloads from erc/erc-desktop-notifications.el
8862(autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) 10391(autoload 'erc-notifications-mode "erc-desktop-notifications" "" t)
8863 10392
10393(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-desktop-notifications" '("erc-notifications-" "notifications")))
10394
8864;;;*** 10395;;;***
8865 10396
8866;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (0 0 0 10397;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (0 0 0
@@ -8924,6 +10455,8 @@ Add EZBouncer convenience functions to ERC.
8924 10455
8925\(fn)" nil nil) 10456\(fn)" nil nil)
8926 10457
10458(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-ezbounce" '("erc-ezb-inside-session-listing" "erc-ezb-session-list" "erc-ezb-action-alist" "erc-ezb-login-alist" "erc-ezb-regexp")))
10459
8927;;;*** 10460;;;***
8928 10461
8929;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (0 0 0 0)) 10462;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (0 0 0 0))
@@ -8936,6 +10469,22 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'.
8936 10469
8937\(fn)" nil nil) 10470\(fn)" nil nil)
8938 10471
10472(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-fill" '("erc-fill-" "erc-timestamp-offset")))
10473
10474;;;***
10475
10476;;;### (autoloads nil "erc-goodies" "erc/erc-goodies.el" (0 0 0 0))
10477;;; Generated autoloads from erc/erc-goodies.el
10478
10479(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-goodies" '("erc-" "unmorse" "smiley" "irccontrols" "noncommands" "keep-place" "move-to-prompt" "readonly" "scrolltobottom")))
10480
10481;;;***
10482
10483;;;### (autoloads nil "erc-ibuffer" "erc/erc-ibuffer.el" (0 0 0 0))
10484;;; Generated autoloads from erc/erc-ibuffer.el
10485
10486(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-ibuffer" '("erc-")))
10487
8939;;;*** 10488;;;***
8940 10489
8941;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (0 0 0 0)) 10490;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (0 0 0 0))
@@ -8957,6 +10506,8 @@ system.
8957 10506
8958\(fn &rest IGNORE)" t nil) 10507\(fn &rest IGNORE)" t nil)
8959 10508
10509(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-identd" '("identd" "erc-identd-quickstart" "erc-identd-filter" "erc-identd-port" "erc-identd-process")))
10510
8960;;;*** 10511;;;***
8961 10512
8962;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (0 0 0 0)) 10513;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (0 0 0 0))
@@ -8967,18 +10518,31 @@ system.
8967 10518
8968\(fn)" nil nil) 10519\(fn)" nil nil)
8969 10520
10521(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-imenu" '("erc-unfill-notice")))
10522
8970;;;*** 10523;;;***
8971 10524
8972;;;### (autoloads nil "erc-join" "erc/erc-join.el" (0 0 0 0)) 10525;;;### (autoloads nil "erc-join" "erc/erc-join.el" (0 0 0 0))
8973;;; Generated autoloads from erc/erc-join.el 10526;;; Generated autoloads from erc/erc-join.el
8974 (autoload 'erc-autojoin-mode "erc-join" nil t) 10527 (autoload 'erc-autojoin-mode "erc-join" nil t)
8975 10528
10529(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-join" '("erc-autojoin-" "autojoin" "erc--autojoin-timer" "erc-server-join-channel")))
10530
10531;;;***
10532
10533;;;### (autoloads nil "erc-lang" "erc/erc-lang.el" (0 0 0 0))
10534;;; Generated autoloads from erc/erc-lang.el
10535
10536(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-lang" '("erc-cmd-LANG" "language" "iso-638-languages")))
10537
8976;;;*** 10538;;;***
8977 10539
8978;;;### (autoloads nil "erc-list" "erc/erc-list.el" (0 0 0 0)) 10540;;;### (autoloads nil "erc-list" "erc/erc-list.el" (0 0 0 0))
8979;;; Generated autoloads from erc/erc-list.el 10541;;; Generated autoloads from erc/erc-list.el
8980 (autoload 'erc-list-mode "erc-list") 10542 (autoload 'erc-list-mode "erc-list")
8981 10543
10544(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-list" '("erc-list-" "erc-cmd-LIST" "list")))
10545
8982;;;*** 10546;;;***
8983 10547
8984;;;### (autoloads nil "erc-log" "erc/erc-log.el" (0 0 0 0)) 10548;;;### (autoloads nil "erc-log" "erc/erc-log.el" (0 0 0 0))
@@ -9008,6 +10572,8 @@ You can save every individual message by putting this function on
9008 10572
9009\(fn &optional BUFFER)" t nil) 10573\(fn &optional BUFFER)" t nil)
9010 10574
10575(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-log" '("erc-" "log")))
10576
9011;;;*** 10577;;;***
9012 10578
9013;;;### (autoloads nil "erc-match" "erc/erc-match.el" (0 0 0 0)) 10579;;;### (autoloads nil "erc-match" "erc/erc-match.el" (0 0 0 0))
@@ -9054,12 +10620,16 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'.
9054 10620
9055\(fn)" t nil) 10621\(fn)" t nil)
9056 10622
10623(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-match" '("erc-" "match")))
10624
9057;;;*** 10625;;;***
9058 10626
9059;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (0 0 0 0)) 10627;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (0 0 0 0))
9060;;; Generated autoloads from erc/erc-menu.el 10628;;; Generated autoloads from erc/erc-menu.el
9061 (autoload 'erc-menu-mode "erc-menu" nil t) 10629 (autoload 'erc-menu-mode "erc-menu" nil t)
9062 10630
10631(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-menu" '("menu" "erc-menu-remove" "erc-menu-add" "erc-menu-defined" "erc-menu-definition")))
10632
9063;;;*** 10633;;;***
9064 10634
9065;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (0 0 0 10635;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (0 0 0
@@ -9072,6 +10642,8 @@ Show who's gone.
9072 10642
9073\(fn)" nil nil) 10643\(fn)" nil nil)
9074 10644
10645(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-netsplit" '("erc-netsplit-" "erc-cmd-WL" "erc-netjoin-hook" "netsplit")))
10646
9075;;;*** 10647;;;***
9076 10648
9077;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (0 0 0 10649;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (0 0 0
@@ -9090,6 +10662,8 @@ Interactively select a server to connect to using `erc-server-alist'.
9090 10662
9091\(fn)" t nil) 10663\(fn)" t nil)
9092 10664
10665(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-networks" '("erc-" "networks")))
10666
9093;;;*** 10667;;;***
9094 10668
9095;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (0 0 0 0)) 10669;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (0 0 0 0))
@@ -9108,12 +10682,16 @@ with args, toggle notify status of people.
9108 10682
9109\(fn)" nil nil) 10683\(fn)" nil nil)
9110 10684
10685(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-notify" '("erc-notify-" "erc-last-ison" "erc-last-ison-time" "notify")))
10686
9111;;;*** 10687;;;***
9112 10688
9113;;;### (autoloads nil "erc-page" "erc/erc-page.el" (0 0 0 0)) 10689;;;### (autoloads nil "erc-page" "erc/erc-page.el" (0 0 0 0))
9114;;; Generated autoloads from erc/erc-page.el 10690;;; Generated autoloads from erc/erc-page.el
9115 (autoload 'erc-page-mode "erc-page") 10691 (autoload 'erc-page-mode "erc-page")
9116 10692
10693(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-page" '("erc-ctcp-query-PAGE" "erc-ctcp-query-PAGE-hook" "erc-cmd-PAGE" "erc-page-function" "page")))
10694
9117;;;*** 10695;;;***
9118 10696
9119;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (0 0 10697;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (0 0
@@ -9121,18 +10699,24 @@ with args, toggle notify status of people.
9121;;; Generated autoloads from erc/erc-pcomplete.el 10699;;; Generated autoloads from erc/erc-pcomplete.el
9122 (autoload 'erc-completion-mode "erc-pcomplete" nil t) 10700 (autoload 'erc-completion-mode "erc-pcomplete" nil t)
9123 10701
10702(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-pcomplete" '("pcomplete/erc-mode/" "pcomplete-erc-" "erc-" "pcomplete")))
10703
9124;;;*** 10704;;;***
9125 10705
9126;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (0 0 0 0)) 10706;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (0 0 0 0))
9127;;; Generated autoloads from erc/erc-replace.el 10707;;; Generated autoloads from erc/erc-replace.el
9128 (autoload 'erc-replace-mode "erc-replace") 10708 (autoload 'erc-replace-mode "erc-replace")
9129 10709
10710(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-replace" '("replace" "erc-replace-insert" "erc-replace-alist")))
10711
9130;;;*** 10712;;;***
9131 10713
9132;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (0 0 0 0)) 10714;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (0 0 0 0))
9133;;; Generated autoloads from erc/erc-ring.el 10715;;; Generated autoloads from erc/erc-ring.el
9134 (autoload 'erc-ring-mode "erc-ring" nil t) 10716 (autoload 'erc-ring-mode "erc-ring" nil t)
9135 10717
10718(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-ring" '("erc-" "ring")))
10719
9136;;;*** 10720;;;***
9137 10721
9138;;;### (autoloads nil "erc-services" "erc/erc-services.el" (0 0 0 10722;;;### (autoloads nil "erc-services" "erc/erc-services.el" (0 0 0
@@ -9151,12 +10735,16 @@ When called interactively, read the password using `read-passwd'.
9151 10735
9152\(fn PASSWORD)" t nil) 10736\(fn PASSWORD)" t nil)
9153 10737
10738(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-services" '("erc-nickserv-" "erc-prompt-for-nickserv-password" "services")))
10739
9154;;;*** 10740;;;***
9155 10741
9156;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (0 0 0 0)) 10742;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (0 0 0 0))
9157;;; Generated autoloads from erc/erc-sound.el 10743;;; Generated autoloads from erc/erc-sound.el
9158 (autoload 'erc-sound-mode "erc-sound") 10744 (autoload 'erc-sound-mode "erc-sound")
9159 10745
10746(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-sound" '("erc-" "sound")))
10747
9160;;;*** 10748;;;***
9161 10749
9162;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (0 0 0 10750;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (0 0 0
@@ -9169,6 +10757,8 @@ This will add a speedbar major display mode.
9169 10757
9170\(fn)" t nil) 10758\(fn)" t nil)
9171 10759
10760(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-speedbar" '("erc-speedbar-" "erc-install-speedbar-variables")))
10761
9172;;;*** 10762;;;***
9173 10763
9174;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (0 0 0 10764;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (0 0 0
@@ -9176,12 +10766,16 @@ This will add a speedbar major display mode.
9176;;; Generated autoloads from erc/erc-spelling.el 10766;;; Generated autoloads from erc/erc-spelling.el
9177 (autoload 'erc-spelling-mode "erc-spelling" nil t) 10767 (autoload 'erc-spelling-mode "erc-spelling" nil t)
9178 10768
10769(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-spelling" '("erc-spelling-dictionaries" "erc-spelling-init" "erc-spelling-unhighlight-word" "erc-spelling-flyspell-verify" "spelling")))
10770
9179;;;*** 10771;;;***
9180 10772
9181;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (0 0 0 0)) 10773;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (0 0 0 0))
9182;;; Generated autoloads from erc/erc-stamp.el 10774;;; Generated autoloads from erc/erc-stamp.el
9183 (autoload 'erc-timestamp-mode "erc-stamp" nil t) 10775 (autoload 'erc-timestamp-mode "erc-stamp" nil t)
9184 10776
10777(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-stamp" '("erc-" "stamp")))
10778
9185;;;*** 10779;;;***
9186 10780
9187;;;### (autoloads nil "erc-track" "erc/erc-track.el" (0 0 0 0)) 10781;;;### (autoloads nil "erc-track" "erc/erc-track.el" (0 0 0 0))
@@ -9208,6 +10802,8 @@ keybindings will not do anything useful.
9208\(fn &optional ARG)" t nil) 10802\(fn &optional ARG)" t nil)
9209 (autoload 'erc-track-mode "erc-track" nil t) 10803 (autoload 'erc-track-mode "erc-track" nil t)
9210 10804
10805(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-track" '("erc-" "track")))
10806
9211;;;*** 10807;;;***
9212 10808
9213;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (0 0 0 10809;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (0 0 0
@@ -9228,6 +10824,8 @@ Meant to be used in hooks, like `erc-insert-post-hook'.
9228 10824
9229\(fn)" t nil) 10825\(fn)" t nil)
9230 10826
10827(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-truncate" '("erc-max-buffer-size" "truncate")))
10828
9231;;;*** 10829;;;***
9232 10830
9233;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (0 0 0 0)) 10831;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (0 0 0 0))
@@ -9239,6 +10837,8 @@ Add a file to `erc-xdcc-files'.
9239 10837
9240\(fn FILE)" t nil) 10838\(fn FILE)" t nil)
9241 10839
10840(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "erc-xdcc" '("erc-xdcc-" "erc-xdcc" "erc-ctcp-query-XDCC-hook" "xdcc")))
10841
9242;;;*** 10842;;;***
9243 10843
9244;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (0 0 0 0)) 10844;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (0 0 0 0))
@@ -9308,6 +10908,8 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test).
9308 10908
9309\(fn TEST-OR-TEST-NAME)" t nil) 10909\(fn TEST-OR-TEST-NAME)" t nil)
9310 10910
10911(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ert" '("ert--" "ert-")))
10912
9311;;;*** 10913;;;***
9312 10914
9313;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (0 0 0 0)) 10915;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (0 0 0 0))
@@ -9320,6 +10922,36 @@ Kill all test buffers that are still live.
9320 10922
9321\(fn)" t nil) 10923\(fn)" t nil)
9322 10924
10925(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ert-x" '("ert-" "ert--test-" "ert--call-with-test-buffer" "ert--format-test-buffer-name" "ert--text-button")))
10926
10927;;;***
10928
10929;;;### (autoloads nil "esh-arg" "eshell/esh-arg.el" (0 0 0 0))
10930;;; Generated autoloads from eshell/esh-arg.el
10931
10932(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "esh-arg" '("eshell-")))
10933
10934;;;***
10935
10936;;;### (autoloads nil "esh-cmd" "eshell/esh-cmd.el" (0 0 0 0))
10937;;; Generated autoloads from eshell/esh-cmd.el
10938
10939(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "esh-cmd" '("eshell-" "eshell/which" "eshell/eshell-debug" "pcomplete/eshell-mode/eshell-debug" "eshell--local-vars")))
10940
10941;;;***
10942
10943;;;### (autoloads nil "esh-ext" "eshell/esh-ext.el" (0 0 0 0))
10944;;; Generated autoloads from eshell/esh-ext.el
10945
10946(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "esh-ext" '("eshell-" "eshell/addpath")))
10947
10948;;;***
10949
10950;;;### (autoloads nil "esh-io" "eshell/esh-io.el" (0 0 0 0))
10951;;; Generated autoloads from eshell/esh-io.el
10952
10953(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "esh-io" '("eshell-" "eshell--apply-redirections")))
10954
9323;;;*** 10955;;;***
9324 10956
9325;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (0 0 0 0)) 10957;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (0 0 0 0))
@@ -9330,6 +10962,44 @@ Emacs shell interactive mode.
9330 10962
9331\(fn)" t nil) 10963\(fn)" t nil)
9332 10964
10965(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "esh-mode" '("eshell-" "eshell/exit" "eshell/clear-scrollback" "eshell/clear")))
10966
10967;;;***
10968
10969;;;### (autoloads nil "esh-module" "eshell/esh-module.el" (0 0 0
10970;;;;;; 0))
10971;;; Generated autoloads from eshell/esh-module.el
10972
10973(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "esh-module" '("eshell-module-unload-hook" "eshell-modules-list" "eshell-using-module" "eshell-unload-extension-modules")))
10974
10975;;;***
10976
10977;;;### (autoloads nil "esh-opt" "eshell/esh-opt.el" (0 0 0 0))
10978;;; Generated autoloads from eshell/esh-opt.el
10979
10980(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "esh-opt" '("eshell--process-" "eshell-eval-using-options" "eshell-show-usage" "eshell--do-opts" "eshell--set-option")))
10981
10982;;;***
10983
10984;;;### (autoloads nil "esh-proc" "eshell/esh-proc.el" (0 0 0 0))
10985;;; Generated autoloads from eshell/esh-proc.el
10986
10987(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "esh-proc" '("eshell-" "eshell/wait" "eshell/jobs" "eshell/kill")))
10988
10989;;;***
10990
10991;;;### (autoloads nil "esh-util" "eshell/esh-util.el" (0 0 0 0))
10992;;; Generated autoloads from eshell/esh-util.el
10993
10994(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "esh-util" '("eshell-")))
10995
10996;;;***
10997
10998;;;### (autoloads nil "esh-var" "eshell/esh-var.el" (0 0 0 0))
10999;;; Generated autoloads from eshell/esh-var.el
11000
11001(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "esh-var" '("eshell-" "eshell/" "pcomplete/eshell-mode/export" "pcomplete/eshell-mode/unset" "pcomplete/eshell-mode/setq")))
11002
9333;;;*** 11003;;;***
9334 11004
9335;;;### (autoloads nil "eshell" "eshell/eshell.el" (0 0 0 0)) 11005;;;### (autoloads nil "eshell" "eshell/eshell.el" (0 0 0 0))
@@ -9365,6 +11035,8 @@ corresponding to a successful execution.
9365 11035
9366(define-obsolete-function-alias 'eshell-report-bug 'report-emacs-bug "23.1") 11036(define-obsolete-function-alias 'eshell-report-bug 'report-emacs-bug "23.1")
9367 11037
11038(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eshell" '("eshell-")))
11039
9368;;;*** 11040;;;***
9369 11041
9370;;;### (autoloads nil "etags" "progmodes/etags.el" (0 0 0 0)) 11042;;;### (autoloads nil "etags" "progmodes/etags.el" (0 0 0 0))
@@ -9680,6 +11352,8 @@ for \\[find-tag] (which see).
9680 11352
9681\(fn)" nil nil) 11353\(fn)" nil nil)
9682 11354
11355(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "etags" '("tags-" "tag-" "etags-" "select-tags-table-" "file-of-" "etags--xref-" "find-" "xref-" "default-tags-table-function" "next-file-list" "snarf-tag-function" "goto-tag-location-function" "list-tags-function" "verify-tags-table-function" "initialize-new-tags-table" "last-tag")))
11356
9683;;;*** 11357;;;***
9684 11358
9685;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (0 0 11359;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (0 0
@@ -9849,6 +11523,8 @@ With ARG, insert that many delimiters.
9849 11523
9850\(fn POS TO FONT-OBJECT STRING)" nil nil) 11524\(fn POS TO FONT-OBJECT STRING)" nil nil)
9851 11525
11526(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ethio-util" '("ethio-" "exit-ethiopic-environment-data" "exit-ethiopic-environment")))
11527
9852;;;*** 11528;;;***
9853 11529
9854;;;### (autoloads nil "eudc" "net/eudc.el" (0 0 0 0)) 11530;;;### (autoloads nil "eudc" "net/eudc.el" (0 0 0 0))
@@ -9903,6 +11579,8 @@ This does nothing except loading eudc by autoload side-effect.
9903 11579
9904(cond ((not (featurep 'xemacs)) (defvar eudc-tools-menu (let ((map (make-sparse-keymap "Directory Servers"))) (define-key map [phone] `(menu-item ,(purecopy "Get Phone") eudc-get-phone :help ,(purecopy "Get the phone field of name from the directory server"))) (define-key map [email] `(menu-item ,(purecopy "Get Email") eudc-get-email :help ,(purecopy "Get the email field of NAME from the directory server"))) (define-key map [separator-eudc-email] menu-bar-separator) (define-key map [expand-inline] `(menu-item ,(purecopy "Expand Inline Query") eudc-expand-inline :help ,(purecopy "Query the directory server, and expand the query string before point"))) (define-key map [query] `(menu-item ,(purecopy "Query with Form") eudc-query-form :help ,(purecopy "Display a form to query the directory server"))) (define-key map [separator-eudc-query] menu-bar-separator) (define-key map [new] `(menu-item ,(purecopy "New Server") eudc-set-server :help ,(purecopy "Set the directory server to SERVER using PROTOCOL"))) (define-key map [load] `(menu-item ,(purecopy "Load Hotlist of Servers") eudc-load-eudc :help ,(purecopy "Load the Emacs Unified Directory Client"))) map)) (fset 'eudc-tools-menu (symbol-value 'eudc-tools-menu))) (t (let ((menu '("Directory Servers" ["Load Hotlist of Servers" eudc-load-eudc t] ["New Server" eudc-set-server t] ["---" nil nil] ["Query with Form" eudc-query-form t] ["Expand Inline Query" eudc-expand-inline t] ["---" nil nil] ["Get Email" eudc-get-email t] ["Get Phone" eudc-get-phone t]))) (if (not (featurep 'eudc-autoloads)) (if (featurep 'xemacs) (if (and (featurep 'menubar) (not (featurep 'infodock))) (add-submenu '("Tools") menu)) (require 'easymenu) (cond ((fboundp 'easy-menu-add-item) (easy-menu-add-item nil '("tools") (easy-menu-create-menu (car menu) (cdr menu)))) ((fboundp 'easy-menu-create-keymaps) (define-key global-map [menu-bar tools eudc] (cons "Directory Servers" (easy-menu-create-keymaps "Directory Servers" (cdr menu))))))))))) 11580(cond ((not (featurep 'xemacs)) (defvar eudc-tools-menu (let ((map (make-sparse-keymap "Directory Servers"))) (define-key map [phone] `(menu-item ,(purecopy "Get Phone") eudc-get-phone :help ,(purecopy "Get the phone field of name from the directory server"))) (define-key map [email] `(menu-item ,(purecopy "Get Email") eudc-get-email :help ,(purecopy "Get the email field of NAME from the directory server"))) (define-key map [separator-eudc-email] menu-bar-separator) (define-key map [expand-inline] `(menu-item ,(purecopy "Expand Inline Query") eudc-expand-inline :help ,(purecopy "Query the directory server, and expand the query string before point"))) (define-key map [query] `(menu-item ,(purecopy "Query with Form") eudc-query-form :help ,(purecopy "Display a form to query the directory server"))) (define-key map [separator-eudc-query] menu-bar-separator) (define-key map [new] `(menu-item ,(purecopy "New Server") eudc-set-server :help ,(purecopy "Set the directory server to SERVER using PROTOCOL"))) (define-key map [load] `(menu-item ,(purecopy "Load Hotlist of Servers") eudc-load-eudc :help ,(purecopy "Load the Emacs Unified Directory Client"))) map)) (fset 'eudc-tools-menu (symbol-value 'eudc-tools-menu))) (t (let ((menu '("Directory Servers" ["Load Hotlist of Servers" eudc-load-eudc t] ["New Server" eudc-set-server t] ["---" nil nil] ["Query with Form" eudc-query-form t] ["Expand Inline Query" eudc-expand-inline t] ["---" nil nil] ["Get Email" eudc-get-email t] ["Get Phone" eudc-get-phone t]))) (if (not (featurep 'eudc-autoloads)) (if (featurep 'xemacs) (if (and (featurep 'menubar) (not (featurep 'infodock))) (add-submenu '("Tools") menu)) (require 'easymenu) (cond ((fboundp 'easy-menu-add-item) (easy-menu-add-item nil '("tools") (easy-menu-create-menu (car menu) (cdr menu)))) ((fboundp 'easy-menu-create-keymaps) (define-key global-map [menu-bar tools eudc] (cons "Directory Servers" (easy-menu-create-keymaps "Directory Servers" (cdr menu)))))))))))
9905 11581
11582(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eudc" '("eudc-" "eudc--using-bbdb-3-or-newer-p")))
11583
9906;;;*** 11584;;;***
9907 11585
9908;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (0 0 0 0)) 11586;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (0 0 0 0))
@@ -9938,6 +11616,8 @@ Display a button for the JPEG DATA.
9938 11616
9939\(fn DATA)" nil nil) 11617\(fn DATA)" nil nil)
9940 11618
11619(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eudc-bob" '("eudc-bob-" "eudc-jump-to-event")))
11620
9941;;;*** 11621;;;***
9942 11622
9943;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (0 0 0 0)) 11623;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (0 0 0 0))
@@ -9954,6 +11634,8 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record.
9954 11634
9955\(fn)" t nil) 11635\(fn)" t nil)
9956 11636
11637(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eudc-export" '("eudc-bbdbify-" "eudc-create-bbdb-record" "eudc-parse-spec" "eudc-batch-export-records-to-bbdb")))
11638
9957;;;*** 11639;;;***
9958 11640
9959;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (0 0 0 11641;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (0 0 0
@@ -9965,6 +11647,36 @@ Edit the hotlist of directory servers in a specialized buffer.
9965 11647
9966\(fn)" t nil) 11648\(fn)" t nil)
9967 11649
11650(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eudc-hotlist" '("eudc-hotlist-")))
11651
11652;;;***
11653
11654;;;### (autoloads nil "eudc-vars" "net/eudc-vars.el" (0 0 0 0))
11655;;; Generated autoloads from net/eudc-vars.el
11656
11657(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eudc-vars" '("eudc-")))
11658
11659;;;***
11660
11661;;;### (autoloads nil "eudcb-bbdb" "net/eudcb-bbdb.el" (0 0 0 0))
11662;;; Generated autoloads from net/eudcb-bbdb.el
11663
11664(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eudcb-bbdb" '("eudc-bbdb-")))
11665
11666;;;***
11667
11668;;;### (autoloads nil "eudcb-ldap" "net/eudcb-ldap.el" (0 0 0 0))
11669;;; Generated autoloads from net/eudcb-ldap.el
11670
11671(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eudcb-ldap" '("eudc-ldap-" "eudc-filter-$")))
11672
11673;;;***
11674
11675;;;### (autoloads nil "eudcb-mab" "net/eudcb-mab.el" (0 0 0 0))
11676;;; Generated autoloads from net/eudcb-mab.el
11677
11678(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eudcb-mab" '("eudc-mab-conversion-alist" "eudc-mab-query-internal" "eudc-mab-set-server" "eudc-buffer-time" "eudc-contacts-file")))
11679
9968;;;*** 11680;;;***
9969 11681
9970;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (0 0 0 0)) 11682;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (0 0 0 0))
@@ -9991,6 +11703,8 @@ fourth arg NOSEP non-nil inhibits this.
9991 11703
9992\(fn PRETTY-PRINTER &optional HEADER FOOTER NOSEP)" nil nil) 11704\(fn PRETTY-PRINTER &optional HEADER FOOTER NOSEP)" nil nil)
9993 11705
11706(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ewoc" '("ewoc-" "ewoc--")))
11707
9994;;;*** 11708;;;***
9995 11709
9996;;;### (autoloads nil "eww" "net/eww.el" (0 0 0 0)) 11710;;;### (autoloads nil "eww" "net/eww.el" (0 0 0 0))
@@ -10038,6 +11752,8 @@ Display the bookmarks.
10038 11752
10039\(fn)" t nil) 11753\(fn)" t nil)
10040 11754
11755(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eww" '("eww-")))
11756
10041;;;*** 11757;;;***
10042 11758
10043;;;### (autoloads nil "executable" "progmodes/executable.el" (0 0 11759;;;### (autoloads nil "executable" "progmodes/executable.el" (0 0
@@ -10074,6 +11790,8 @@ file modes.
10074 11790
10075\(fn)" nil nil) 11791\(fn)" nil nil)
10076 11792
11793(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "executable" '("executable-")))
11794
10077;;;*** 11795;;;***
10078 11796
10079;;;### (autoloads nil "expand" "expand.el" (0 0 0 0)) 11797;;;### (autoloads nil "expand" "expand.el" (0 0 0 0))
@@ -10123,6 +11841,15 @@ This is used only in conjunction with `expand-add-abbrevs'.
10123 (define-key abbrev-map "p" 'expand-jump-to-previous-slot) 11841 (define-key abbrev-map "p" 'expand-jump-to-previous-slot)
10124 (define-key abbrev-map "n" 'expand-jump-to-next-slot) 11842 (define-key abbrev-map "n" 'expand-jump-to-next-slot)
10125 11843
11844(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "expand" '("expand-")))
11845
11846;;;***
11847
11848;;;### (autoloads nil "ezimage" "ezimage.el" (0 0 0 0))
11849;;; Generated autoloads from ezimage.el
11850
11851(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ezimage" '("ezimage-")))
11852
10126;;;*** 11853;;;***
10127 11854
10128;;;### (autoloads nil "f90" "progmodes/f90.el" (0 0 0 0)) 11855;;;### (autoloads nil "f90" "progmodes/f90.el" (0 0 0 0))
@@ -10190,6 +11917,8 @@ with no args, if that value is non-nil.
10190 11917
10191\(fn)" t nil) 11918\(fn)" t nil)
10192 11919
11920(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "f90" '("f90-")))
11921
10193;;;*** 11922;;;***
10194 11923
10195;;;### (autoloads nil "face-remap" "face-remap.el" (0 0 0 0)) 11924;;;### (autoloads nil "face-remap" "face-remap.el" (0 0 0 0))
@@ -10349,6 +12078,8 @@ Besides the choice of face, it is the same as `buffer-face-mode'.
10349 12078
10350\(fn &optional ARG)" t nil) 12079\(fn &optional ARG)" t nil)
10351 12080
12081(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "face-remap" '("text-scale-" "buffer-face-mode-" "face-remap-" "face-attrs-more-relative-p" "internal-lisp-face-attributes")))
12082
10352;;;*** 12083;;;***
10353 12084
10354;;;### (autoloads nil "feedmail" "mail/feedmail.el" (0 0 0 0)) 12085;;;### (autoloads nil "feedmail" "mail/feedmail.el" (0 0 0 0))
@@ -10403,6 +12134,8 @@ you can set `feedmail-queue-reminder-alist' to nil.
10403 12134
10404\(fn &optional WHAT-EVENT)" t nil) 12135\(fn &optional WHAT-EVENT)" t nil)
10405 12136
12137(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "feedmail" '("feedmail-")))
12138
10406;;;*** 12139;;;***
10407 12140
10408;;;### (autoloads nil "ffap" "ffap.el" (0 0 0 0)) 12141;;;### (autoloads nil "ffap" "ffap.el" (0 0 0 0))
@@ -10466,6 +12199,8 @@ Evaluate the forms in variable `ffap-bindings'.
10466 12199
10467\(fn)" t nil) 12200\(fn)" t nil)
10468 12201
12202(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ffap" '("ffap-" "dired-at-point-prompter" "dired-at-point-require-prefix" "find-file-literally-at-point" "ffap--toggle-read-only")))
12203
10469;;;*** 12204;;;***
10470 12205
10471;;;### (autoloads nil "filecache" "filecache.el" (0 0 0 0)) 12206;;;### (autoloads nil "filecache" "filecache.el" (0 0 0 0))
@@ -10523,6 +12258,8 @@ the name is considered already unique; only the second substitution
10523 12258
10524\(fn ARG)" t nil) 12259\(fn ARG)" t nil)
10525 12260
12261(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "filecache" '("file-cache-" "file-cache--read-list")))
12262
10526;;;*** 12263;;;***
10527 12264
10528;;;### (autoloads nil "filenotify" "filenotify.el" (0 0 0 0)) 12265;;;### (autoloads nil "filenotify" "filenotify.el" (0 0 0 0))
@@ -10538,6 +12275,8 @@ Otherwise, signal a `file-notify-error'.
10538 12275
10539\(fn EVENT)" t nil) 12276\(fn EVENT)" t nil)
10540 12277
12278(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "filenotify" '("file-notify--" "file-notify-")))
12279
10541;;;*** 12280;;;***
10542 12281
10543;;;### (autoloads nil "files-x" "files-x.el" (0 0 0 0)) 12282;;;### (autoloads nil "files-x" "files-x.el" (0 0 0 0))
@@ -10603,6 +12342,8 @@ Copy directory-local variables to the -*- line.
10603 12342
10604\(fn)" t nil) 12343\(fn)" t nil)
10605 12344
12345(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "files-x" '("read-file-local-variable-" "modify-file-local-variable-" "modify-dir-local-variable" "read-file-local-variable" "modify-file-local-variable")))
12346
10606;;;*** 12347;;;***
10607 12348
10608;;;### (autoloads nil "filesets" "filesets.el" (0 0 0 0)) 12349;;;### (autoloads nil "filesets" "filesets.el" (0 0 0 0))
@@ -10614,6 +12355,8 @@ Set up hooks, load the cache file -- if existing -- and build the menu.
10614 12355
10615\(fn)" nil nil) 12356\(fn)" nil nil)
10616 12357
12358(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "filesets" '("filesets-")))
12359
10617;;;*** 12360;;;***
10618 12361
10619;;;### (autoloads nil "find-cmd" "find-cmd.el" (0 0 0 0)) 12362;;;### (autoloads nil "find-cmd" "find-cmd.el" (0 0 0 0))
@@ -10634,6 +12377,8 @@ result is a string that should be ready for the command line.
10634 12377
10635\(fn &rest SUBFINDS)" nil nil) 12378\(fn &rest SUBFINDS)" nil nil)
10636 12379
12380(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "find-cmd" '("find-")))
12381
10637;;;*** 12382;;;***
10638 12383
10639;;;### (autoloads nil "find-dired" "find-dired.el" (0 0 0 0)) 12384;;;### (autoloads nil "find-dired" "find-dired.el" (0 0 0 0))
@@ -10674,6 +12419,8 @@ use in place of \"-ls\" as the final argument.
10674 12419
10675\(fn DIR REGEXP)" t nil) 12420\(fn DIR REGEXP)" t nil)
10676 12421
12422(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "find-dired" '("find-" "kill-find" "lookfor-dired")))
12423
10677;;;*** 12424;;;***
10678 12425
10679;;;### (autoloads nil "find-file" "find-file.el" (0 0 0 0)) 12426;;;### (autoloads nil "find-file" "find-file.el" (0 0 0 0))
@@ -10764,6 +12511,8 @@ Visit the file you click on in another window.
10764 12511
10765\(fn EVENT)" t nil) 12512\(fn EVENT)" t nil)
10766 12513
12514(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "find-file" '("ff-" "modula2-other-file-alist" "cc-search-directories" "cc-other-file-alist")))
12515
10767;;;*** 12516;;;***
10768 12517
10769;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (0 0 12518;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (0 0
@@ -10938,6 +12687,8 @@ Define some key bindings for the find-function family of functions.
10938 12687
10939\(fn)" nil nil) 12688\(fn)" nil nil)
10940 12689
12690(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "find-func" '("find-variable-regexp" "find-alias-regexp" "find-library-" "find-f")))
12691
10941;;;*** 12692;;;***
10942 12693
10943;;;### (autoloads nil "find-lisp" "find-lisp.el" (0 0 0 0)) 12694;;;### (autoloads nil "find-lisp" "find-lisp.el" (0 0 0 0))
@@ -10958,6 +12709,8 @@ Change the filter on a `find-lisp-find-dired' buffer to REGEXP.
10958 12709
10959\(fn REGEXP)" t nil) 12710\(fn REGEXP)" t nil)
10960 12711
12712(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "find-lisp" '("find-lisp-")))
12713
10961;;;*** 12714;;;***
10962 12715
10963;;;### (autoloads nil "finder" "finder.el" (0 0 0 0)) 12716;;;### (autoloads nil "finder" "finder.el" (0 0 0 0))
@@ -10980,6 +12733,8 @@ Find packages matching a given keyword.
10980 12733
10981\(fn)" t nil) 12734\(fn)" t nil)
10982 12735
12736(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "finder" '("finder-" "finder--builtins-descriptions" "finder--builtins-alist" "generated-finder-keywords-file")))
12737
10983;;;*** 12738;;;***
10984 12739
10985;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (0 0 0 0)) 12740;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (0 0 0 0))
@@ -11001,6 +12756,8 @@ to get the effect of a C-q.
11001 12756
11002\(fn &rest LOSING-TERMINAL-TYPES)" nil nil) 12757\(fn &rest LOSING-TERMINAL-TYPES)" nil nil)
11003 12758
12759(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flow-ctrl" '("flow-control-c-q-replacement" "flow-control-c-s-replacement")))
12760
11004;;;*** 12761;;;***
11005 12762
11006;;;### (autoloads nil "flow-fill" "mail/flow-fill.el" (0 0 0 0)) 12763;;;### (autoloads nil "flow-fill" "mail/flow-fill.el" (0 0 0 0))
@@ -11016,6 +12773,8 @@ to get the effect of a C-q.
11016 12773
11017\(fn &optional BUFFER DELETE-SPACE)" nil nil) 12774\(fn &optional BUFFER DELETE-SPACE)" nil nil)
11018 12775
12776(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flow-fill" '("fill-flowed-display-column" "fill-flowed-fill-buffer" "fill-flowed-test" "fill-flowed-encode-column" "fill-flowed-encode-tests")))
12777
11019;;;*** 12778;;;***
11020 12779
11021;;;### (autoloads nil "flymake" "progmodes/flymake.el" (0 0 0 0)) 12780;;;### (autoloads nil "flymake" "progmodes/flymake.el" (0 0 0 0))
@@ -11046,6 +12805,8 @@ Turn flymake mode off.
11046 12805
11047\(fn)" nil nil) 12806\(fn)" nil nil)
11048 12807
12808(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flymake" '("flymake-")))
12809
11049;;;*** 12810;;;***
11050 12811
11051;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (0 0 0 0)) 12812;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (0 0 0 0))
@@ -11116,12 +12877,16 @@ Flyspell whole buffer.
11116 12877
11117\(fn)" t nil) 12878\(fn)" t nil)
11118 12879
12880(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flyspell" '("flyspell-" "mail-mode-flyspell-verify" "texinfo-mode-flyspell-verify" "tex-mode-flyspell-verify" "sgml-mode-flyspell-verify" "make-flyspell-overlay")))
12881
11119;;;*** 12882;;;***
11120 12883
11121;;;### (autoloads nil "foldout" "foldout.el" (0 0 0 0)) 12884;;;### (autoloads nil "foldout" "foldout.el" (0 0 0 0))
11122;;; Generated autoloads from foldout.el 12885;;; Generated autoloads from foldout.el
11123(push (purecopy '(foldout 1 10)) package--builtin-versions) 12886(push (purecopy '(foldout 1 10)) package--builtin-versions)
11124 12887
12888(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "foldout" '("foldout-")))
12889
11125;;;*** 12890;;;***
11126 12891
11127;;;### (autoloads nil "follow" "follow.el" (0 0 0 0)) 12892;;;### (autoloads nil "follow" "follow.el" (0 0 0 0))
@@ -11155,11 +12920,11 @@ virtual window. This is accomplished by two main techniques:
11155 makes it possible to walk between windows using normal cursor 12920 makes it possible to walk between windows using normal cursor
11156 movement commands. 12921 movement commands.
11157 12922
11158Follow mode comes to its prime when used on a large screen and two 12923Follow mode comes to its prime when used on a large screen and two or
11159side-by-side windows are used. The user can, with the help of Follow 12924more side-by-side windows are used. The user can, with the help of
11160mode, use two full-height windows as though they would have been 12925Follow mode, use these full-height windows as though they were one.
11161one. Imagine yourself editing a large function, or section of text, 12926Imagine yourself editing a large function, or section of text, and
11162and being able to use 144 lines instead of the normal 72... (your 12927being able to use 144 or 216 lines instead of the normal 72... (your
11163mileage may vary). 12928mileage may vary).
11164 12929
11165To split one large window into two side-by-side windows, the commands 12930To split one large window into two side-by-side windows, the commands
@@ -11174,6 +12939,34 @@ Keys specific to Follow mode:
11174 12939
11175\(fn &optional ARG)" t nil) 12940\(fn &optional ARG)" t nil)
11176 12941
12942(autoload 'follow-scroll-up-window "follow" "\
12943Scroll text in a Follow mode window up by that window's size.
12944The other windows in the window chain will scroll synchronously.
12945
12946If called with no ARG, the `next-screen-context-lines' last lines of
12947the window will be visible after the scroll.
12948
12949If called with an argument, scroll ARG lines up.
12950Negative ARG means scroll downward.
12951
12952Works like `scroll-up' when not in Follow mode.
12953
12954\(fn &optional ARG)" t nil)
12955
12956(autoload 'follow-scroll-down-window "follow" "\
12957Scroll text in a Follow mode window down by that window's size.
12958The other windows in the window chain will scroll synchronously.
12959
12960If called with no ARG, the `next-screen-context-lines' top lines of
12961the window in the chain will be visible after the scroll.
12962
12963If called with an argument, scroll ARG lines down.
12964Negative ARG means scroll upward.
12965
12966Works like `scroll-down' when not in Follow mode.
12967
12968\(fn &optional ARG)" t nil)
12969
11177(autoload 'follow-scroll-up "follow" "\ 12970(autoload 'follow-scroll-up "follow" "\
11178Scroll text in a Follow mode window chain up. 12971Scroll text in a Follow mode window chain up.
11179 12972
@@ -11216,6 +13009,16 @@ selected if the original window is the first one in the frame.
11216 13009
11217\(fn &optional ARG)" t nil) 13010\(fn &optional ARG)" t nil)
11218 13011
13012(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "follow" '("follow-" "follow--window-sorter")))
13013
13014;;;***
13015
13016;;;### (autoloads nil "fontset" "international/fontset.el" (0 0 0
13017;;;;;; 0))
13018;;; Generated autoloads from international/fontset.el
13019
13020(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "fontset" '("x-" "xlfd-" "create-" "fontset-" "standard-fontset-spec" "charset-script-alist" "generate-fontset-menu" "set-font-encoding" "setup-default-fontset")))
13021
11219;;;*** 13022;;;***
11220 13023
11221;;;### (autoloads nil "footnote" "mail/footnote.el" (0 0 0 0)) 13024;;;### (autoloads nil "footnote" "mail/footnote.el" (0 0 0 0))
@@ -11235,6 +13038,15 @@ play around with the following keys:
11235 13038
11236\(fn &optional ARG)" t nil) 13039\(fn &optional ARG)" t nil)
11237 13040
13041(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "footnote" '("Footnote-" "footnote-")))
13042
13043;;;***
13044
13045;;;### (autoloads nil "format-spec" "format-spec.el" (0 0 0 0))
13046;;; Generated autoloads from format-spec.el
13047
13048(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "format-spec" '("format-spec-make" "format-spec")))
13049
11238;;;*** 13050;;;***
11239 13051
11240;;;### (autoloads nil "forms" "forms.el" (0 0 0 0)) 13052;;;### (autoloads nil "forms" "forms.el" (0 0 0 0))
@@ -11271,6 +13083,8 @@ Visit a file in Forms mode in other window.
11271 13083
11272\(fn FN)" t nil) 13084\(fn FN)" t nil)
11273 13085
13086(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "forms" '("forms--" "forms-")))
13087
11274;;;*** 13088;;;***
11275 13089
11276;;;### (autoloads nil "fortran" "progmodes/fortran.el" (0 0 0 0)) 13090;;;### (autoloads nil "fortran" "progmodes/fortran.el" (0 0 0 0))
@@ -11348,6 +13162,8 @@ with no args, if that value is non-nil.
11348 13162
11349\(fn)" t nil) 13163\(fn)" t nil)
11350 13164
13165(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "fortran" '("fortran-")))
13166
11351;;;*** 13167;;;***
11352 13168
11353;;;### (autoloads nil "fortune" "play/fortune.el" (0 0 0 0)) 13169;;;### (autoloads nil "fortune" "play/fortune.el" (0 0 0 0))
@@ -11403,6 +13219,8 @@ and choose the directory as the fortune-file.
11403 13219
11404\(fn &optional FILE)" t nil) 13220\(fn &optional FILE)" t nil)
11405 13221
13222(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "fortune" '("fortune-")))
13223
11406;;;*** 13224;;;***
11407 13225
11408;;;### (autoloads nil "frameset" "frameset.el" (0 0 0 0)) 13226;;;### (autoloads nil "frameset" "frameset.el" (0 0 0 0))
@@ -11589,12 +13407,30 @@ Interactively, reads the register using `register-read-with-preview'.
11589 13407
11590\(fn REGISTER)" t nil) 13408\(fn REGISTER)" t nil)
11591 13409
13410(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "frameset" '("frameset-" "frameset--")))
13411
13412;;;***
13413
13414;;;### (autoloads nil "fringe" "fringe.el" (0 0 0 0))
13415;;; Generated autoloads from fringe.el
13416
13417(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "fringe" '("fringe-" "set-fringe-mode-1" "set-fringe-mode" "set-fringe-style" "fringe--check-style")))
13418
11592;;;*** 13419;;;***
11593 13420
11594;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (0 0 0 0)) 13421;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (0 0 0 0))
11595;;; Generated autoloads from play/gamegrid.el 13422;;; Generated autoloads from play/gamegrid.el
11596(push (purecopy '(gamegrid 1 2)) package--builtin-versions) 13423(push (purecopy '(gamegrid 1 2)) package--builtin-versions)
11597 13424
13425(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gamegrid" '("gamegrid-")))
13426
13427;;;***
13428
13429;;;### (autoloads nil "gametree" "play/gametree.el" (0 0 0 0))
13430;;; Generated autoloads from play/gametree.el
13431
13432(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gametree" '("gametree-")))
13433
11598;;;*** 13434;;;***
11599 13435
11600;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (0 0 0 0)) 13436;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (0 0 0 0))
@@ -11673,6 +13509,16 @@ detailed description of this mode.
11673 13509
11674\(fn COMMAND-LINE)" t nil) 13510\(fn COMMAND-LINE)" t nil)
11675 13511
13512(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gdb-mi" '("gdb-" "def-gdb-" "gdbmi-" "gud-" "gdb--" "breakpoint-" "nil")))
13513
13514;;;***
13515
13516;;;### (autoloads nil "generator" "emacs-lisp/generator.el" (0 0
13517;;;;;; 0 0))
13518;;; Generated autoloads from emacs-lisp/generator.el
13519
13520(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "generator" '("cps--" "iter-" "cps-standard-special-forms" "cps-inhibit-atomic-optimization" "cps-generate-evaluator")))
13521
11676;;;*** 13522;;;***
11677 13523
11678;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (0 0 0 0)) 13524;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (0 0 0 0))
@@ -11753,6 +13599,15 @@ regular expression that can be used as an element of
11753 13599
11754(make-obsolete 'generic-make-keywords-list 'regexp-opt '"24.4") 13600(make-obsolete 'generic-make-keywords-list 'regexp-opt '"24.4")
11755 13601
13602(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "generic" '("generic-set-comment-" "generic--normalize-comments" "generic-font-lock-keywords" "generic-mode-set-comments" "generic-bracket-support")))
13603
13604;;;***
13605
13606;;;### (autoloads nil "generic-x" "generic-x.el" (0 0 0 0))
13607;;; Generated autoloads from generic-x.el
13608
13609(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "generic-x" '("generic-" "default-generic-mode")))
13610
11756;;;*** 13611;;;***
11757 13612
11758;;;### (autoloads nil "glasses" "progmodes/glasses.el" (0 0 0 0)) 13613;;;### (autoloads nil "glasses" "progmodes/glasses.el" (0 0 0 0))
@@ -11767,6 +13622,8 @@ add virtual separators (like underscores) at places they belong to.
11767 13622
11768\(fn &optional ARG)" t nil) 13623\(fn &optional ARG)" t nil)
11769 13624
13625(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "glasses" '("glasses-")))
13626
11770;;;*** 13627;;;***
11771 13628
11772;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (0 0 0 0)) 13629;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (0 0 0 0))
@@ -11821,6 +13678,8 @@ DEFAULT-MAP specifies the default key map for ICON-LIST.
11821 13678
11822\(fn ICON-LIST ZAP-LIST DEFAULT-MAP)" nil nil) 13679\(fn ICON-LIST ZAP-LIST DEFAULT-MAP)" nil nil)
11823 13680
13681(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gmm-utils" '("defun-gmm" "gmm-verbose" "gmm-tool-bar-style" "gmm-customize-mode")))
13682
11824;;;*** 13683;;;***
11825 13684
11826;;;### (autoloads nil "gnus" "gnus/gnus.el" (0 0 0 0)) 13685;;;### (autoloads nil "gnus" "gnus/gnus.el" (0 0 0 0))
@@ -11871,6 +13730,8 @@ prompt the user for the name of an NNTP server to use.
11871 13730
11872\(fn &optional ARG DONT-CONNECT SLAVE)" t nil) 13731\(fn &optional ARG DONT-CONNECT SLAVE)" t nil)
11873 13732
13733(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus" '("gnus-")))
13734
11874;;;*** 13735;;;***
11875 13736
11876;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (0 0 0 0)) 13737;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (0 0 0 0))
@@ -11961,6 +13822,8 @@ CLEAN is obsolete and ignored.
11961 13822
11962\(fn &optional CLEAN REREAD)" t nil) 13823\(fn &optional CLEAN REREAD)" t nil)
11963 13824
13825(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-agent" '("gnus-")))
13826
11964;;;*** 13827;;;***
11965 13828
11966;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (0 0 0 0)) 13829;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (0 0 0 0))
@@ -11971,6 +13834,22 @@ Make the current buffer look like a nice article.
11971 13834
11972\(fn)" nil nil) 13835\(fn)" nil nil)
11973 13836
13837(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-art" '("gnus-" "article-")))
13838
13839;;;***
13840
13841;;;### (autoloads nil "gnus-async" "gnus/gnus-async.el" (0 0 0 0))
13842;;; Generated autoloads from gnus/gnus-async.el
13843
13844(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-async" '("gnus-")))
13845
13846;;;***
13847
13848;;;### (autoloads nil "gnus-bcklg" "gnus/gnus-bcklg.el" (0 0 0 0))
13849;;; Generated autoloads from gnus/gnus-bcklg.el
13850
13851(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-bcklg" '("gnus-backlog-")))
13852
11974;;;*** 13853;;;***
11975 13854
11976;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (0 13855;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (0
@@ -11995,6 +13874,8 @@ deletion, or > if it is flagged for displaying.
11995 13874
11996\(fn)" t nil) 13875\(fn)" t nil)
11997 13876
13877(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-bookmark" '("gnus-bookmark-")))
13878
11998;;;*** 13879;;;***
11999 13880
12000;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (0 0 0 0)) 13881;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (0 0 0 0))
@@ -12036,6 +13917,29 @@ supported.
12036 13917
12037\(fn GROUP)" nil nil) 13918\(fn GROUP)" nil nil)
12038 13919
13920(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-cache" '("gnus-cache-" "gnus-summary-" "gnus-cacheable-groups" "gnus-uncacheable-groups" "gnus-cached-article-p")))
13921
13922;;;***
13923
13924;;;### (autoloads nil "gnus-cite" "gnus/gnus-cite.el" (0 0 0 0))
13925;;; Generated autoloads from gnus/gnus-cite.el
13926
13927(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-cite" '("gnus-" "turn-on-gnus-message-citation-mode" "turn-off-gnus-message-citation-mode")))
13928
13929;;;***
13930
13931;;;### (autoloads nil "gnus-cloud" "gnus/gnus-cloud.el" (0 0 0 0))
13932;;; Generated autoloads from gnus/gnus-cloud.el
13933
13934(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-cloud" '("gnus-cloud-")))
13935
13936;;;***
13937
13938;;;### (autoloads nil "gnus-cus" "gnus/gnus-cus.el" (0 0 0 0))
13939;;; Generated autoloads from gnus/gnus-cus.el
13940
13941(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-cus" '("gnus-" "category-fields")))
13942
12039;;;*** 13943;;;***
12040 13944
12041;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (0 0 0 0)) 13945;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (0 0 0 0))
@@ -12071,6 +13975,15 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil.
12071 13975
12072\(fn &optional NO-KEYMAP NO-CHECK)" nil nil) 13976\(fn &optional NO-KEYMAP NO-CHECK)" nil nil)
12073 13977
13978(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-delay" '("gnus-delay-group" "gnus-delay-header" "gnus-delay-default-delay" "gnus-delay-default-hour")))
13979
13980;;;***
13981
13982;;;### (autoloads nil "gnus-demon" "gnus/gnus-demon.el" (0 0 0 0))
13983;;; Generated autoloads from gnus/gnus-demon.el
13984
13985(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-demon" '("gnus-demon-" "gnus-inhibit-demon")))
13986
12074;;;*** 13987;;;***
12075 13988
12076;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (0 0 0 0)) 13989;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (0 0 0 0))
@@ -12086,6 +13999,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil.
12086 13999
12087\(fn HEADER)" nil nil) 14000\(fn HEADER)" nil nil)
12088 14001
14002(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-diary" '("gnus-diary-" "gnus-summary-sort-by-schedule" "gnus-thread-sort-by-schedule" "gnus-article-sort-by-schedule")))
14003
12089;;;*** 14004;;;***
12090 14005
12091;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (0 0 0 0)) 14006;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (0 0 0 0))
@@ -12096,6 +14011,8 @@ Convenience method to turn on gnus-dired-mode.
12096 14011
12097\(fn)" t nil) 14012\(fn)" t nil)
12098 14013
14014(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-dired" '("gnus-dired-")))
14015
12099;;;*** 14016;;;***
12100 14017
12101;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (0 0 0 0)) 14018;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (0 0 0 0))
@@ -12106,6 +14023,22 @@ Reminder user if there are unsent drafts.
12106 14023
12107\(fn)" t nil) 14024\(fn)" t nil)
12108 14025
14026(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-draft" '("gnus-draft-" "gnus-group-send-queue")))
14027
14028;;;***
14029
14030;;;### (autoloads nil "gnus-dup" "gnus/gnus-dup.el" (0 0 0 0))
14031;;; Generated autoloads from gnus/gnus-dup.el
14032
14033(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-dup" '("gnus-dup-" "gnus-duplicate-list-length" "gnus-duplicate-file" "gnus-save-duplicate-list")))
14034
14035;;;***
14036
14037;;;### (autoloads nil "gnus-eform" "gnus/gnus-eform.el" (0 0 0 0))
14038;;; Generated autoloads from gnus/gnus-eform.el
14039
14040(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-eform" '("gnus-edit-form-" "gnus-edit-form")))
14041
12109;;;*** 14042;;;***
12110 14043
12111;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (0 0 0 0)) 14044;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (0 0 0 0))
@@ -12171,6 +14104,8 @@ Insert a random Face header from `gnus-face-directory'.
12171 14104
12172\(fn)" nil nil) 14105\(fn)" nil nil)
12173 14106
14107(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-fun" '("gnus-" "gnus--insert-random-face-with-type")))
14108
12174;;;*** 14109;;;***
12175 14110
12176;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (0 14111;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (0
@@ -12189,6 +14124,8 @@ If gravatars are already displayed, remove them.
12189 14124
12190\(fn &optional FORCE)" t nil) 14125\(fn &optional FORCE)" t nil)
12191 14126
14127(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-gravatar" '("gnus-gravatar-size" "gnus-gravatar-properties" "gnus-gravatar-too-ugly" "gnus-gravatar-transform-address" "gnus-gravatar-insert")))
14128
12192;;;*** 14129;;;***
12193 14130
12194;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (0 0 0 0)) 14131;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (0 0 0 0))
@@ -12206,6 +14143,8 @@ Pop up a frame and enter GROUP.
12206 14143
12207\(fn GROUP)" t nil) 14144\(fn GROUP)" t nil)
12208 14145
14146(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-group" '("gnus-")))
14147
12209;;;*** 14148;;;***
12210 14149
12211;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (0 0 0 0)) 14150;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (0 0 0 0))
@@ -12221,6 +14160,23 @@ Pop up a frame and enter GROUP.
12221 14160
12222\(fn SUMMARY)" nil nil) 14161\(fn SUMMARY)" nil nil)
12223 14162
14163(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-html" '("gnus-html-" "gnus-max-image-proportion")))
14164
14165;;;***
14166
14167;;;### (autoloads nil "gnus-icalendar" "gnus/gnus-icalendar.el" (0
14168;;;;;; 0 0 0))
14169;;; Generated autoloads from gnus/gnus-icalendar.el
14170
14171(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-icalendar" '("gnus-icalendar-" "gnus-icalendar--" "gnus-icalendar:org-event-save")))
14172
14173;;;***
14174
14175;;;### (autoloads nil "gnus-int" "gnus/gnus-int.el" (0 0 0 0))
14176;;; Generated autoloads from gnus/gnus-int.el
14177
14178(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-int" '("gnus-")))
14179
12224;;;*** 14180;;;***
12225 14181
12226;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (0 0 0 0)) 14182;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (0 0 0 0))
@@ -12234,6 +14190,22 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score
12234 14190
12235\(fn)" t nil) 14191\(fn)" t nil)
12236 14192
14193(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-kill" '("gnus-")))
14194
14195;;;***
14196
14197;;;### (autoloads nil "gnus-logic" "gnus/gnus-logic.el" (0 0 0 0))
14198;;; Generated autoloads from gnus/gnus-logic.el
14199
14200(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-logic" '("gnus-advanced-" "gnus-score-advanced")))
14201
14202;;;***
14203
14204;;;### (autoloads nil "gnus-mh" "gnus/gnus-mh.el" (0 0 0 0))
14205;;; Generated autoloads from gnus/gnus-mh.el
14206
14207(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-mh" '("gnus-summary-save-in-folder" "gnus-summary-save-article-folder" "gnus-folder-save-name" "gnus-Folder-save-name")))
14208
12237;;;*** 14209;;;***
12238 14210
12239;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (0 0 0 0)) 14211;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (0 0 0 0))
@@ -12257,6 +14229,8 @@ Minor mode for providing mailing-list commands.
12257 14229
12258\(fn &optional ARG)" t nil) 14230\(fn &optional ARG)" t nil)
12259 14231
14232(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-ml" '("gnus-mailing-list-")))
14233
12260;;;*** 14234;;;***
12261 14235
12262;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (0 0 0 0)) 14236;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (0 0 0 0))
@@ -12357,6 +14331,8 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns:
12357 14331
12358\(fn &optional GROUPS NO-CROSSPOST CATCH-ALL)" nil nil) 14332\(fn &optional GROUPS NO-CROSSPOST CATCH-ALL)" nil nil)
12359 14333
14334(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-mlspl" '("gnus-group-split-default-catch-all-group" "gnus-group-split-updated-hook")))
14335
12360;;;*** 14336;;;***
12361 14337
12362;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (0 0 0 0)) 14338;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (0 0 0 0))
@@ -12383,6 +14359,8 @@ Like `message-reply'.
12383 14359
12384(define-mail-user-agent 'gnus-user-agent 'gnus-msg-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) 14360(define-mail-user-agent 'gnus-user-agent 'gnus-msg-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook)
12385 14361
14362(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-msg" '("gnus-")))
14363
12386;;;*** 14364;;;***
12387 14365
12388;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" 14366;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el"
@@ -12400,6 +14378,8 @@ This is typically a function to add in
12400 14378
12401\(fn)" nil nil) 14379\(fn)" nil nil)
12402 14380
14381(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-notifications" '("gnus-notifications-")))
14382
12403;;;*** 14383;;;***
12404 14384
12405;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (0 0 0 0)) 14385;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (0 0 0 0))
@@ -12423,6 +14403,8 @@ If picons are already displayed, remove them.
12423 14403
12424\(fn)" t nil) 14404\(fn)" t nil)
12425 14405
14406(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-picon" '("gnus-picon-")))
14407
12426;;;*** 14408;;;***
12427 14409
12428;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (0 0 0 0)) 14410;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (0 0 0 0))
@@ -12490,6 +14472,8 @@ Add NUM into sorted LIST by side effect.
12490 14472
12491\(fn LIST NUM)" nil nil) 14473\(fn LIST NUM)" nil nil)
12492 14474
14475(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-range" '("gnus-")))
14476
12493;;;*** 14477;;;***
12494 14478
12495;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (0 14479;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (0
@@ -12506,6 +14490,30 @@ Install the registry hooks.
12506 14490
12507\(fn)" t nil) 14491\(fn)" t nil)
12508 14492
14493(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-registry" '("gnus-registry-" "gnus-try-warping-via-registry" "gnus-registry--set/remove-mark" "gnus-registry--split-fancy-with-parent-internal")))
14494
14495;;;***
14496
14497;;;### (autoloads nil "gnus-rfc1843" "gnus/gnus-rfc1843.el" (0 0
14498;;;;;; 0 0))
14499;;; Generated autoloads from gnus/gnus-rfc1843.el
14500
14501(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-rfc1843" '("rfc1843-decode-article-body" "rfc1843-gnus-setup")))
14502
14503;;;***
14504
14505;;;### (autoloads nil "gnus-salt" "gnus/gnus-salt.el" (0 0 0 0))
14506;;; Generated autoloads from gnus/gnus-salt.el
14507
14508(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-salt" '("gnus-" "gnus--let-eval")))
14509
14510;;;***
14511
14512;;;### (autoloads nil "gnus-score" "gnus/gnus-score.el" (0 0 0 0))
14513;;; Generated autoloads from gnus/gnus-score.el
14514
14515(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-score" '("gnus-")))
14516
12509;;;*** 14517;;;***
12510 14518
12511;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (0 0 0 0)) 14519;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (0 0 0 0))
@@ -12533,6 +14541,8 @@ See the documentation for these variables and functions for details.
12533 14541
12534\(fn)" t nil) 14542\(fn)" t nil)
12535 14543
14544(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-sieve" '("gnus-sieve-")))
14545
12536;;;*** 14546;;;***
12537 14547
12538;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (0 0 0 0)) 14548;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (0 0 0 0))
@@ -12543,6 +14553,15 @@ Update the format specification near point.
12543 14553
12544\(fn VAR)" t nil) 14554\(fn VAR)" t nil)
12545 14555
14556(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-spec" '("gnus-")))
14557
14558;;;***
14559
14560;;;### (autoloads nil "gnus-srvr" "gnus/gnus-srvr.el" (0 0 0 0))
14561;;; Generated autoloads from gnus/gnus-srvr.el
14562
14563(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-srvr" '("gnus-server-" "gnus-browse-" "gnus-inserted-opened-servers" "gnus-enter-server-buffer" "gnus-opened-servers-remove")))
14564
12546;;;*** 14565;;;***
12547 14566
12548;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (0 0 0 0)) 14567;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (0 0 0 0))
@@ -12553,6 +14572,8 @@ Declare back end NAME with ABILITIES as a Gnus back end.
12553 14572
12554\(fn NAME &rest ABILITIES)" nil nil) 14573\(fn NAME &rest ABILITIES)" nil nil)
12555 14574
14575(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-start" '("gnus-")))
14576
12556;;;*** 14577;;;***
12557 14578
12558;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (0 0 0 0)) 14579;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (0 0 0 0))
@@ -12564,6 +14585,8 @@ BOOKMARK is a bookmark name or a bookmark record.
12564 14585
12565\(fn BOOKMARK)" nil nil) 14586\(fn BOOKMARK)" nil nil)
12566 14587
14588(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-sum" '("gnus-")))
14589
12567;;;*** 14590;;;***
12568 14591
12569;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (0 0 0 0)) 14592;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (0 0 0 0))
@@ -12579,6 +14602,43 @@ Install the sync hooks.
12579 14602
12580\(fn)" t nil) 14603\(fn)" t nil)
12581 14604
14605(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-sync" '("gnus-sync-")))
14606
14607;;;***
14608
14609;;;### (autoloads nil "gnus-topic" "gnus/gnus-topic.el" (0 0 0 0))
14610;;; Generated autoloads from gnus/gnus-topic.el
14611
14612(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-topic" '("gnus-")))
14613
14614;;;***
14615
14616;;;### (autoloads nil "gnus-undo" "gnus/gnus-undo.el" (0 0 0 0))
14617;;; Generated autoloads from gnus/gnus-undo.el
14618
14619(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-undo" '("gnus-undo-" "gnus-undo" "gnus-disable-undo")))
14620
14621;;;***
14622
14623;;;### (autoloads nil "gnus-util" "gnus/gnus-util.el" (0 0 0 0))
14624;;; Generated autoloads from gnus/gnus-util.el
14625
14626(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-util" '("gnus-")))
14627
14628;;;***
14629
14630;;;### (autoloads nil "gnus-uu" "gnus/gnus-uu.el" (0 0 0 0))
14631;;; Generated autoloads from gnus/gnus-uu.el
14632
14633(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-uu" '("gnus-uu-" "gnus-message-process-mark" "gnus-new-processable")))
14634
14635;;;***
14636
14637;;;### (autoloads nil "gnus-vm" "gnus/gnus-vm.el" (0 0 0 0))
14638;;; Generated autoloads from gnus/gnus-vm.el
14639
14640(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-vm" '("gnus-summary-save-in-vm" "gnus-summary-save-article-vm" "gnus-vm-make-folder" "gnus-vm-inhibit-window-system")))
14641
12582;;;*** 14642;;;***
12583 14643
12584;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (0 0 0 0)) 14644;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (0 0 0 0))
@@ -12589,6 +14649,8 @@ Add the window configuration CONF to `gnus-buffer-configuration'.
12589 14649
12590\(fn CONF)" nil nil) 14650\(fn CONF)" nil nil)
12591 14651
14652(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnus-win" '("gnus-")))
14653
12592;;;*** 14654;;;***
12593 14655
12594;;;### (autoloads nil "gnutls" "net/gnutls.el" (0 0 0 0)) 14656;;;### (autoloads nil "gnutls" "net/gnutls.el" (0 0 0 0))
@@ -12605,6 +14667,8 @@ A value of nil says to use the default GnuTLS value.")
12605 14667
12606(custom-autoload 'gnutls-min-prime-bits "gnutls" t) 14668(custom-autoload 'gnutls-min-prime-bits "gnutls" t)
12607 14669
14670(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gnutls" '("gnutls-" "open-gnutls-stream")))
14671
12608;;;*** 14672;;;***
12609 14673
12610;;;### (autoloads nil "gomoku" "play/gomoku.el" (0 0 0 0)) 14674;;;### (autoloads nil "gomoku" "play/gomoku.el" (0 0 0 0))
@@ -12631,6 +14695,8 @@ Use \\[describe-mode] for more info.
12631 14695
12632\(fn &optional N M)" t nil) 14696\(fn &optional N M)" t nil)
12633 14697
14698(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gomoku" '("gomoku-" "gomoku--intangible" "gomoku--intangible-chars" "gomoku--last-pos")))
14699
12634;;;*** 14700;;;***
12635 14701
12636;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (0 0 0 0)) 14702;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (0 0 0 0))
@@ -12672,6 +14738,8 @@ Like `goto-address-mode', but only for comments and strings.
12672 14738
12673\(fn &optional ARG)" t nil) 14739\(fn &optional ARG)" t nil)
12674 14740
14741(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "goto-addr" '("goto-address-")))
14742
12675;;;*** 14743;;;***
12676 14744
12677;;;### (autoloads nil "gravatar" "image/gravatar.el" (0 0 0 0)) 14745;;;### (autoloads nil "gravatar" "image/gravatar.el" (0 0 0 0))
@@ -12688,6 +14756,8 @@ Retrieve MAIL-ADDRESS gravatar and returns it.
12688 14756
12689\(fn MAIL-ADDRESS)" nil nil) 14757\(fn MAIL-ADDRESS)" nil nil)
12690 14758
14759(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gravatar" '("gravatar-")))
14760
12691;;;*** 14761;;;***
12692 14762
12693;;;### (autoloads nil "grep" "progmodes/grep.el" (0 0 0 0)) 14763;;;### (autoloads nil "grep" "progmodes/grep.el" (0 0 0 0))
@@ -12855,6 +14925,8 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'.
12855 14925
12856(defalias 'rzgrep 'zrgrep) 14926(defalias 'rzgrep 'zrgrep)
12857 14927
14928(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "grep" '("grep-" "rgrep-default-command" "grep--save-buffers" "kill-grep")))
14929
12858;;;*** 14930;;;***
12859 14931
12860;;;### (autoloads nil "gs" "gs.el" (0 0 0 0)) 14932;;;### (autoloads nil "gs" "gs.el" (0 0 0 0))
@@ -12868,6 +14940,15 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful.
12868 14940
12869\(fn FRAME SPEC IMG-WIDTH IMG-HEIGHT WINDOW-AND-PIXMAP-ID PIXEL-COLORS)" nil nil) 14941\(fn FRAME SPEC IMG-WIDTH IMG-HEIGHT WINDOW-AND-PIXMAP-ID PIXEL-COLORS)" nil nil)
12870 14942
14943(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gs" '("gs-")))
14944
14945;;;***
14946
14947;;;### (autoloads nil "gssapi" "gnus/gssapi.el" (0 0 0 0))
14948;;; Generated autoloads from gnus/gssapi.el
14949
14950(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gssapi" '("open-gssapi-stream" "gssapi-program")))
14951
12871;;;*** 14952;;;***
12872 14953
12873;;;### (autoloads nil "gud" "progmodes/gud.el" (0 0 0 0)) 14954;;;### (autoloads nil "gud" "progmodes/gud.el" (0 0 0 0))
@@ -12964,6 +15045,8 @@ it if ARG is omitted or nil.
12964 15045
12965\(fn &optional ARG)" t nil) 15046\(fn &optional ARG)" t nil)
12966 15047
15048(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gud" '("gud-" "gdb-script-" "gdb-first-prompt")))
15049
12967;;;*** 15050;;;***
12968 15051
12969;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (0 0 0 0)) 15052;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (0 0 0 0))
@@ -13066,6 +15149,8 @@ binding mode.
13066 15149
13067\(fn PLACE)" nil t) 15150\(fn PLACE)" nil t)
13068 15151
15152(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gv" '("gv-" "gv--defsetter")))
15153
13069;;;*** 15154;;;***
13070 15155
13071;;;### (autoloads nil "handwrite" "play/handwrite.el" (0 0 0 0)) 15156;;;### (autoloads nil "handwrite" "play/handwrite.el" (0 0 0 0))
@@ -13083,6 +15168,16 @@ Variables: `handwrite-linespace' (default 12)
13083 15168
13084\(fn)" t nil) 15169\(fn)" t nil)
13085 15170
15171(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "handwrite" '("handwrite-" "menu-bar-handwrite-map")))
15172
15173;;;***
15174
15175;;;### (autoloads nil "hanja-util" "language/hanja-util.el" (0 0
15176;;;;;; 0 0))
15177;;; Generated autoloads from language/hanja-util.el
15178
15179(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hanja-util" '("hanja-" "hangul-to-hanja-char")))
15180
13086;;;*** 15181;;;***
13087 15182
13088;;;### (autoloads nil "hanoi" "play/hanoi.el" (0 0 0 0)) 15183;;;### (autoloads nil "hanoi" "play/hanoi.el" (0 0 0 0))
@@ -13110,6 +15205,8 @@ to be updated.
13110 15205
13111\(fn)" t nil) 15206\(fn)" t nil)
13112 15207
15208(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hanoi" '("hanoi-")))
15209
13113;;;*** 15210;;;***
13114 15211
13115;;;### (autoloads nil "hashcash" "mail/hashcash.el" (0 0 0 0)) 15212;;;### (autoloads nil "hashcash" "mail/hashcash.el" (0 0 0 0))
@@ -13152,6 +15249,8 @@ Prefix arg sets default accept amount temporarily.
13152 15249
13153\(fn &optional ARG)" t nil) 15250\(fn &optional ARG)" t nil)
13154 15251
15252(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hashcash" '("hashcash-")))
15253
13155;;;*** 15254;;;***
13156 15255
13157;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (0 0 0 0)) 15256;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (0 0 0 0))
@@ -13279,6 +15378,8 @@ different regions. With numeric argument ARG, behaves like
13279 15378
13280\(fn &optional ARG)" t nil) 15379\(fn &optional ARG)" t nil)
13281 15380
15381(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "help-at-pt" '("help-at-pt-maybe-display" "help-at-pt-timer-delay" "help-at-pt-timer" "scan-buf-move-hook")))
15382
13282;;;*** 15383;;;***
13283 15384
13284;;;### (autoloads nil "help-fns" "help-fns.el" (0 0 0 0)) 15385;;;### (autoloads nil "help-fns" "help-fns.el" (0 0 0 0))
@@ -13366,6 +15467,8 @@ Produce a texinfo buffer with sorted doc-strings from the DOC file.
13366 15467
13367\(fn FILE)" t nil) 15468\(fn FILE)" t nil)
13368 15469
15470(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "help-fns" '("help-" "describe-variable-custom-version-info" "describe-function-orig-buffer")))
15471
13369;;;*** 15472;;;***
13370 15473
13371;;;### (autoloads nil "help-macro" "help-macro.el" (0 0 0 0)) 15474;;;### (autoloads nil "help-macro" "help-macro.el" (0 0 0 0))
@@ -13380,6 +15483,8 @@ gives the window that lists the options.")
13380 15483
13381(custom-autoload 'three-step-help "help-macro" t) 15484(custom-autoload 'three-step-help "help-macro" t)
13382 15485
15486(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "help-macro" '("make-help-screen")))
15487
13383;;;*** 15488;;;***
13384 15489
13385;;;### (autoloads nil "help-mode" "help-mode.el" (0 0 0 0)) 15490;;;### (autoloads nil "help-mode" "help-mode.el" (0 0 0 0))
@@ -13481,6 +15586,8 @@ BOOKMARK is a bookmark name or a bookmark record.
13481 15586
13482\(fn BOOKMARK)" nil nil) 15587\(fn BOOKMARK)" nil nil)
13483 15588
15589(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "help-mode" '("help-" "describe-symbol-backends")))
15590
13484;;;*** 15591;;;***
13485 15592
13486;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (0 0 0 0)) 15593;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (0 0 0 0))
@@ -13496,6 +15603,15 @@ Provide help for current mode.
13496 15603
13497\(fn)" t nil) 15604\(fn)" t nil)
13498 15605
15606(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helper" '("Helper-describe-" "Helper-return-blurb" "Helper-help-options" "Helper-help-scroller" "Helper-help-map")))
15607
15608;;;***
15609
15610;;;### (autoloads nil "hex-util" "hex-util.el" (0 0 0 0))
15611;;; Generated autoloads from hex-util.el
15612
15613(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hex-util" '("encode-hex-string" "decode-hex-string")))
15614
13499;;;*** 15615;;;***
13500 15616
13501;;;### (autoloads nil "hexl" "hexl.el" (0 0 0 0)) 15617;;;### (autoloads nil "hexl" "hexl.el" (0 0 0 0))
@@ -13590,6 +15706,8 @@ This discards the buffer's undo information.
13590 15706
13591\(fn)" t nil) 15707\(fn)" t nil)
13592 15708
15709(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hexl" '("hexl-" "dehexlify-buffer")))
15710
13593;;;*** 15711;;;***
13594 15712
13595;;;### (autoloads nil "hi-lock" "hi-lock.el" (0 0 0 0)) 15713;;;### (autoloads nil "hi-lock" "hi-lock.el" (0 0 0 0))
@@ -13758,6 +15876,8 @@ be found in variable `hi-lock-interactive-patterns'.
13758 15876
13759\(fn)" t nil) 15877\(fn)" t nil)
13760 15878
15879(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hi-lock" '("hi-lock-" "hi-lock--" "turn-on-hi-lock-if-enabled")))
15880
13761;;;*** 15881;;;***
13762 15882
13763;;;### (autoloads nil "hideif" "progmodes/hideif.el" (0 0 0 0)) 15883;;;### (autoloads nil "hideif" "progmodes/hideif.el" (0 0 0 0))
@@ -13805,6 +15925,8 @@ Several variables affect how the hiding is done:
13805 15925
13806\(fn &optional ARG)" t nil) 15926\(fn &optional ARG)" t nil)
13807 15927
15928(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hideif" '("hif-" "show-" "hide-" "intern-safe" "forward-ifdef" "backward-ifdef" "down-ifdef" "up-ifdef" "next-ifdef" "previous-ifdef")))
15929
13808;;;*** 15930;;;***
13809 15931
13810;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (0 0 0 0)) 15932;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (0 0 0 0))
@@ -13867,6 +15989,8 @@ Unconditionally turn off `hs-minor-mode'.
13867 15989
13868\(fn)" nil nil) 15990\(fn)" nil nil)
13869 15991
15992(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hideshow" '("hs-")))
15993
13870;;;*** 15994;;;***
13871 15995
13872;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (0 0 0 0)) 15996;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (0 0 0 0))
@@ -13999,6 +16123,8 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode.
13999 16123
14000\(fn &optional ARG)" t nil) 16124\(fn &optional ARG)" t nil)
14001 16125
16126(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hilit-chg" '("hilit-chg-" "highlight-changes-" "highlight-markup-buffers" "global-highlight-changes")))
16127
14002;;;*** 16128;;;***
14003 16129
14004;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (0 0 0 0)) 16130;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (0 0 0 0))
@@ -14031,6 +16157,8 @@ argument VERBOSE non-nil makes the function verbose.
14031 16157
14032\(fn TRY-LIST &optional VERBOSE)" nil t) 16158\(fn TRY-LIST &optional VERBOSE)" nil t)
14033 16159
16160(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hippie-exp" '("he-" "try-expand-" "hippie-expand-" "try-complete-" "he--all-buffers")))
16161
14034;;;*** 16162;;;***
14035 16163
14036;;;### (autoloads nil "hl-line" "hl-line.el" (0 0 0 0)) 16164;;;### (autoloads nil "hl-line" "hl-line.el" (0 0 0 0))
@@ -14051,7 +16179,7 @@ non-selected window. Hl-Line mode uses the function
14051 16179
14052When `hl-line-sticky-flag' is nil, Hl-Line mode highlights the 16180When `hl-line-sticky-flag' is nil, Hl-Line mode highlights the
14053line about point in the selected window only. In this case, it 16181line about point in the selected window only. In this case, it
14054uses the function `hl-line-unhighlight' on `pre-command-hook' in 16182uses the function `hl-line-maybe-unhighlight' in
14055addition to `hl-line-highlight' on `post-command-hook'. 16183addition to `hl-line-highlight' on `post-command-hook'.
14056 16184
14057\(fn &optional ARG)" t nil) 16185\(fn &optional ARG)" t nil)
@@ -14073,14 +16201,30 @@ positive, and disable it otherwise. If called from Lisp, enable
14073the mode if ARG is omitted or nil. 16201the mode if ARG is omitted or nil.
14074 16202
14075If `global-hl-line-sticky-flag' is non-nil, Global Hl-Line mode 16203If `global-hl-line-sticky-flag' is non-nil, Global Hl-Line mode
14076highlights the line about the current buffer's point in all 16204highlights the line about the current buffer's point in all live
14077windows. 16205windows.
14078 16206
14079Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and 16207Global-Hl-Line mode uses the functions `global-hl-line-highlight'
14080`global-hl-line-highlight' on `pre-command-hook' and `post-command-hook'. 16208and `global-hl-line-maybe-unhighlight' on `post-command-hook'.
14081 16209
14082\(fn &optional ARG)" t nil) 16210\(fn &optional ARG)" t nil)
14083 16211
16212(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hl-line" '("hl-line-" "global-hl-line-")))
16213
16214;;;***
16215
16216;;;### (autoloads nil "hmac-def" "net/hmac-def.el" (0 0 0 0))
16217;;; Generated autoloads from net/hmac-def.el
16218
16219(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hmac-def" '("define-hmac-function")))
16220
16221;;;***
16222
16223;;;### (autoloads nil "hmac-md5" "net/hmac-md5.el" (0 0 0 0))
16224;;; Generated autoloads from net/hmac-md5.el
16225
16226(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hmac-md5" '("hmac-md5-96" "hmac-md5" "md5-binary")))
16227
14084;;;*** 16228;;;***
14085 16229
14086;;;### (autoloads nil "holidays" "calendar/holidays.el" (0 0 0 0)) 16230;;;### (autoloads nil "holidays" "calendar/holidays.el" (0 0 0 0))
@@ -14191,6 +16335,8 @@ The optional LABEL is used to label the buffer created.
14191 16335
14192(defalias 'holiday-list 'list-holidays) 16336(defalias 'holiday-list 'list-holidays)
14193 16337
16338(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "holidays" '("holiday-" "calendar-")))
16339
14194;;;*** 16340;;;***
14195 16341
14196;;;### (autoloads nil "html2text" "net/html2text.el" (0 0 0 0)) 16342;;;### (autoloads nil "html2text" "net/html2text.el" (0 0 0 0))
@@ -14201,6 +16347,8 @@ Convert HTML to plain text in the current buffer.
14201 16347
14202\(fn)" t nil) 16348\(fn)" t nil)
14203 16349
16350(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "html2text" '("html2text-")))
16351
14204;;;*** 16352;;;***
14205 16353
14206;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (0 0 0 0)) 16354;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (0 0 0 0))
@@ -14234,6 +16382,16 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'.
14234 16382
14235\(fn SRCDIR DSTDIR &optional F-EXT L-EXT)" t nil) 16383\(fn SRCDIR DSTDIR &optional F-EXT L-EXT)" t nil)
14236 16384
16385(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "htmlfontify" '("hfy-" "htmlfontify-")))
16386
16387;;;***
16388
16389;;;### (autoloads "actual autoloads are elsewhere" "ibuf-ext" "ibuf-ext.el"
16390;;;;;; (22220 16330 779423 271000))
16391;;; Generated autoloads from ibuf-ext.el
16392
16393(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ibuf-ext" '("ibuffer-" "shell-command-" "size-" "query-" "filename/process" "size" "alphabetic" "mode-name" "major-mode" "predicate" "content" "filename" "name" "derived-mode" "used-mode" "mode" "print" "replace-regexp" "revert" "rename-uniquely" "view-and-eval" "eval")))
16394
14237;;;*** 16395;;;***
14238 16396
14239;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (0 0 0 0)) 16397;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (0 0 0 0))
@@ -14336,6 +16494,8 @@ bound to the current value of the filter.
14336 16494
14337(function-put 'define-ibuffer-filter 'doc-string-elt '2) 16495(function-put 'define-ibuffer-filter 'doc-string-elt '2)
14338 16496
16497(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ibuf-macs" '("ibuffer-save-marks" "ibuffer-awhen" "ibuffer-aif")))
16498
14339;;;*** 16499;;;***
14340 16500
14341;;;### (autoloads nil "ibuffer" "ibuffer.el" (0 0 0 0)) 16501;;;### (autoloads nil "ibuffer" "ibuffer.el" (0 0 0 0))
@@ -14375,6 +16535,8 @@ FORMATS is the value to use for `ibuffer-formats'.
14375 16535
14376\(fn &optional OTHER-WINDOW-P NAME QUALIFIERS NOSELECT SHRINK FILTER-GROUPS FORMATS)" t nil) 16536\(fn &optional OTHER-WINDOW-P NAME QUALIFIERS NOSELECT SHRINK FILTER-GROUPS FORMATS)" t nil)
14377 16537
16538(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ibuffer" '("ibuffer-" "filename-and-process" "filename" "process" "mode" "size" "name" "modified" "read-only" "mark")))
16539
14378;;;*** 16540;;;***
14379 16541
14380;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (0 0 0 16542;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (0 0 0
@@ -14429,6 +16591,8 @@ buffer `*icalendar-errors*'.
14429 16591
14430\(fn &optional DIARY-FILE DO-NOT-ASK NON-MARKING)" t nil) 16592\(fn &optional DIARY-FILE DO-NOT-ASK NON-MARKING)" t nil)
14431 16593
16594(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "icalendar" '("icalendar--" "icalendar-")))
16595
14432;;;*** 16596;;;***
14433 16597
14434;;;### (autoloads nil "icomplete" "icomplete.el" (0 0 0 0)) 16598;;;### (autoloads nil "icomplete" "icomplete.el" (0 0 0 0))
@@ -14469,6 +16633,8 @@ completions:
14469 (make-obsolete 'iswitchb-mode 16633 (make-obsolete 'iswitchb-mode
14470 "use `icomplete-mode' or `ido-mode' instead." "24.4")) 16634 "use `icomplete-mode' or `ido-mode' instead." "24.4"))
14471 16635
16636(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "icomplete" '("icomplete-" "icomplete--field-" "icomplete--in-region-" "icomplete--completion-predicate" "icomplete--completion-table")))
16637
14472;;;*** 16638;;;***
14473 16639
14474;;;### (autoloads nil "icon" "progmodes/icon.el" (0 0 0 0)) 16640;;;### (autoloads nil "icon" "progmodes/icon.el" (0 0 0 0))
@@ -14509,6 +16675,24 @@ with no args, if that value is non-nil.
14509 16675
14510\(fn)" t nil) 16676\(fn)" t nil)
14511 16677
16678(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "icon" '("icon-" "electric-icon-brace" "calculate-icon-indent" "mark-icon-function" "beginning-of-icon-defun" "end-of-icon-defun" "indent-icon-exp")))
16679
16680;;;***
16681
16682;;;### (autoloads nil "idlw-complete-structtag" "progmodes/idlw-complete-structtag.el"
16683;;;;;; (0 0 0 0))
16684;;; Generated autoloads from progmodes/idlw-complete-structtag.el
16685
16686(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "idlw-complete-structtag" '("idlwave-complete-structure-" "idlwave-structtag-" "idlwave-current-" "idlwave-prepare-structure-tag-completion" "idlwave-sint-structtags")))
16687
16688;;;***
16689
16690;;;### (autoloads nil "idlw-help" "progmodes/idlw-help.el" (0 0 0
16691;;;;;; 0))
16692;;; Generated autoloads from progmodes/idlw-help.el
16693
16694(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "idlw-help" '("idlwave-")))
16695
14512;;;*** 16696;;;***
14513 16697
14514;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (0 0 16698;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (0 0
@@ -14535,6 +16719,16 @@ See also the variable `idlwave-shell-prompt-pattern'.
14535 16719
14536\(fn &optional ARG QUICK)" t nil) 16720\(fn &optional ARG QUICK)" t nil)
14537 16721
16722(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "idlw-shell" '("idlwave-")))
16723
16724;;;***
16725
16726;;;### (autoloads nil "idlw-toolbar" "progmodes/idlw-toolbar.el"
16727;;;;;; (0 0 0 0))
16728;;; Generated autoloads from progmodes/idlw-toolbar.el
16729
16730(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "idlw-toolbar" '("idlwave-toolbar-")))
16731
14538;;;*** 16732;;;***
14539 16733
14540;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (0 0 0 0)) 16734;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (0 0 0 0))
@@ -14664,6 +16858,8 @@ The main features of this mode are
14664 16858
14665\(fn)" t nil) 16859\(fn)" t nil)
14666 16860
16861(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "idlwave" '("idlwave-")))
16862
14667;;;*** 16863;;;***
14668 16864
14669;;;### (autoloads nil "ido" "ido.el" (0 0 0 0)) 16865;;;### (autoloads nil "ido" "ido.el" (0 0 0 0))
@@ -14926,6 +17122,8 @@ DEF, if non-nil, is the default value.
14926 17122
14927\(fn PROMPT CHOICES &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)" nil nil) 17123\(fn PROMPT CHOICES &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)" nil nil)
14928 17124
17125(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ido" '("ido-")))
17126
14929;;;*** 17127;;;***
14930 17128
14931;;;### (autoloads nil "ielm" "ielm.el" (0 0 0 0)) 17129;;;### (autoloads nil "ielm" "ielm.el" (0 0 0 0))
@@ -14938,6 +17136,15 @@ See `inferior-emacs-lisp-mode' for details.
14938 17136
14939\(fn)" t nil) 17137\(fn)" t nil)
14940 17138
17139(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ielm" '("ielm-" "inferior-emacs-lisp-" "*3" "*2" "*1" "***" "**" "*")))
17140
17141;;;***
17142
17143;;;### (autoloads nil "ietf-drums" "mail/ietf-drums.el" (0 0 0 0))
17144;;; Generated autoloads from mail/ietf-drums.el
17145
17146(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ietf-drums" '("ietf-drums-")))
17147
14941;;;*** 17148;;;***
14942 17149
14943;;;### (autoloads nil "iimage" "iimage.el" (0 0 0 0)) 17150;;;### (autoloads nil "iimage" "iimage.el" (0 0 0 0))
@@ -14954,6 +17161,8 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'.
14954 17161
14955\(fn &optional ARG)" t nil) 17162\(fn &optional ARG)" t nil)
14956 17163
17164(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "iimage" '("iimage-mode-" "turn-off-iimage-mode" "iimage-recenter" "iimage-modification-hook")))
17165
14957;;;*** 17166;;;***
14958 17167
14959;;;### (autoloads nil "image" "image.el" (0 0 0 0)) 17168;;;### (autoloads nil "image" "image.el" (0 0 0 0))
@@ -15147,6 +17356,8 @@ If Emacs is compiled without ImageMagick support, this does nothing.
15147 17356
15148\(fn)" nil nil) 17357\(fn)" nil nil)
15149 17358
17359(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "image" '("image-" "image--" "imagemagick-" "imagemagick--file-regexp")))
17360
15150;;;*** 17361;;;***
15151 17362
15152;;;### (autoloads nil "image-dired" "image-dired.el" (0 0 0 0)) 17363;;;### (autoloads nil "image-dired" "image-dired.el" (0 0 0 0))
@@ -15284,6 +17495,8 @@ easy-to-use form.
15284 17495
15285\(fn)" t nil) 17496\(fn)" t nil)
15286 17497
17498(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "image-dired" '("image-dired-" "image-dired--with-db-file")))
17499
15287;;;*** 17500;;;***
15288 17501
15289;;;### (autoloads nil "image-file" "image-file.el" (0 0 0 0)) 17502;;;### (autoloads nil "image-file" "image-file.el" (0 0 0 0))
@@ -15347,6 +17560,8 @@ An image file is one whose name has an extension in
15347 17560
15348\(fn &optional ARG)" t nil) 17561\(fn &optional ARG)" t nil)
15349 17562
17563(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "image-file" '("image-file-yank-handler" "image-file-handler" "image-file-call-underlying")))
17564
15350;;;*** 17565;;;***
15351 17566
15352;;;### (autoloads nil "image-mode" "image-mode.el" (0 0 0 0)) 17567;;;### (autoloads nil "image-mode" "image-mode.el" (0 0 0 0))
@@ -15386,6 +17601,15 @@ displays an image file as text.
15386 17601
15387\(fn BMK)" nil nil) 17602\(fn BMK)" nil nil)
15388 17603
17604(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "image-mode" '("image-" "image--set-speed")))
17605
17606;;;***
17607
17608;;;### (autoloads nil "imap" "net/imap.el" (0 0 0 0))
17609;;; Generated autoloads from net/imap.el
17610
17611(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "imap" '("imap-")))
17612
15389;;;*** 17613;;;***
15390 17614
15391;;;### (autoloads nil "imenu" "imenu.el" (0 0 0 0)) 17615;;;### (autoloads nil "imenu" "imenu.el" (0 0 0 0))
@@ -15524,6 +17748,8 @@ for more information.
15524 17748
15525\(fn INDEX-ITEM)" t nil) 17749\(fn INDEX-ITEM)" t nil)
15526 17750
17751(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "imenu" '("imenu-" "imenu--")))
17752
15527;;;*** 17753;;;***
15528 17754
15529;;;### (autoloads nil "ind-util" "language/ind-util.el" (0 0 0 0)) 17755;;;### (autoloads nil "ind-util" "language/ind-util.el" (0 0 0 0))
@@ -15554,6 +17780,8 @@ Convert old Emacs Devanagari characters to UCS.
15554 17780
15555\(fn FROM TO)" t nil) 17781\(fn FROM TO)" t nil)
15556 17782
17783(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ind-util" '("is13194-" "indian-" "ucs-to-is13194-regexp" "ucs-to-iscii-region" "iscii-to-ucs-region")))
17784
15557;;;*** 17785;;;***
15558 17786
15559;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (0 0 0 0)) 17787;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (0 0 0 0))
@@ -15572,12 +17800,14 @@ of `inferior-lisp-program'). Runs the hooks from
15572 17800
15573(defalias 'run-lisp 'inferior-lisp) 17801(defalias 'run-lisp 'inferior-lisp)
15574 17802
17803(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "inf-lisp" '("lisp-" "inferior-lisp-" "switch-to-lisp")))
17804
15575;;;*** 17805;;;***
15576 17806
15577;;;### (autoloads nil "info" "info.el" (0 0 0 0)) 17807;;;### (autoloads nil "info" "info.el" (0 0 0 0))
15578;;; Generated autoloads from info.el 17808;;; Generated autoloads from info.el
15579 17809
15580(defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) (suffixes '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\ 17810(defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/"))) (suffixes '("share/" "")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\
15581Default list of directories to search for Info documentation files. 17811Default list of directories to search for Info documentation files.
15582They are searched in the order they are given in the list. 17812They are searched in the order they are given in the list.
15583Therefore, the directory of Info files that come with Emacs 17813Therefore, the directory of Info files that come with Emacs
@@ -15784,6 +18014,8 @@ completion alternatives to currently visited manuals.
15784 18014
15785\(fn MANUAL)" t nil) 18015\(fn MANUAL)" t nil)
15786 18016
18017(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "info" '("Info-" "info-" "info--manual-names" "info--prettify-description" "Info--search-loop")))
18018
15787;;;*** 18019;;;***
15788 18020
15789;;;### (autoloads nil "info-look" "info-look.el" (0 0 0 0)) 18021;;;### (autoloads nil "info-look" "info-look.el" (0 0 0 0))
@@ -15831,6 +18063,8 @@ Perform completion on file preceding point.
15831 18063
15832\(fn &optional MODE)" t nil) 18064\(fn &optional MODE)" t nil)
15833 18065
18066(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "info-look" '("info-lookup-" "info-lookup" "info-complete")))
18067
15834;;;*** 18068;;;***
15835 18069
15836;;;### (autoloads nil "info-xref" "info-xref.el" (0 0 0 0)) 18070;;;### (autoloads nil "info-xref" "info-xref.el" (0 0 0 0))
@@ -15914,6 +18148,8 @@ the sources handy.
15914 18148
15915\(fn FILENAME-LIST)" t nil) 18149\(fn FILENAME-LIST)" t nil)
15916 18150
18151(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "info-xref" '("info-xref-")))
18152
15917;;;*** 18153;;;***
15918 18154
15919;;;### (autoloads nil "informat" "informat.el" (0 0 0 0)) 18155;;;### (autoloads nil "informat" "informat.el" (0 0 0 0))
@@ -15959,6 +18195,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"
15959 18195
15960\(fn)" nil nil) 18196\(fn)" nil nil)
15961 18197
18198(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "informat" '("Info-validate-node-name" "Info-validate-tags-table")))
18199
15962;;;*** 18200;;;***
15963 18201
15964;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (0 0 0 0)) 18202;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (0 0 0 0))
@@ -15973,6 +18211,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"
15973 18211
15974(function-put 'define-inline 'doc-string-elt '3) 18212(function-put 'define-inline 'doc-string-elt '3)
15975 18213
18214(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "inline" '("inline--" "inline-const-" "inline-quote" "inline-error" "inline-letevals")))
18215
15976;;;*** 18216;;;***
15977 18217
15978;;;### (autoloads nil "inversion" "cedet/inversion.el" (0 0 0 0)) 18218;;;### (autoloads nil "inversion" "cedet/inversion.el" (0 0 0 0))
@@ -15985,6 +18225,8 @@ Only checks one based on which kind of Emacs is being run.
15985 18225
15986\(fn EMACS-VER XEMACS-VER SXEMACS-VER)" nil nil) 18226\(fn EMACS-VER XEMACS-VER SXEMACS-VER)" nil nil)
15987 18227
18228(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "inversion" '("inversion-")))
18229
15988;;;*** 18230;;;***
15989 18231
15990;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (0 18232;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (0
@@ -16006,6 +18248,8 @@ Toggle input method in interactive search.
16006 18248
16007\(fn LAST-CHAR &optional COUNT)" nil nil) 18249\(fn LAST-CHAR &optional COUNT)" nil nil)
16008 18250
18251(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "isearch-x" '("isearch-with-keyboard-coding" "isearch-with-input-method" "isearch-minibuffer-local-map" "isearch-exit-recursive-edit")))
18252
16009;;;*** 18253;;;***
16010 18254
16011;;;### (autoloads nil "isearchb" "isearchb.el" (0 0 0 0)) 18255;;;### (autoloads nil "isearchb" "isearchb.el" (0 0 0 0))
@@ -16020,6 +18264,16 @@ accessed via isearchb.
16020 18264
16021\(fn)" t nil) 18265\(fn)" t nil)
16022 18266
18267(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "isearchb" '("isearchb-" "isearchb")))
18268
18269;;;***
18270
18271;;;### (autoloads nil "iso-ascii" "international/iso-ascii.el" (0
18272;;;;;; 0 0 0))
18273;;; Generated autoloads from international/iso-ascii.el
18274
18275(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "iso-ascii" '("iso-ascii-mode" "iso-ascii-display" "iso-ascii-standard-display-table" "iso-ascii-display-table" "iso-ascii-convenient")))
18276
16023;;;*** 18277;;;***
16024 18278
16025;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (0 0 0 18279;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (0 0 0
@@ -16111,6 +18365,8 @@ Add submenus to the File menu, to convert to and from various formats.
16111 18365
16112\(fn)" t nil) 18366\(fn)" t nil)
16113 18367
18368(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "iso-cvt" '("iso-")))
18369
16114;;;*** 18370;;;***
16115 18371
16116;;;### (autoloads nil "iso-transl" "international/iso-transl.el" 18372;;;### (autoloads nil "iso-transl" "international/iso-transl.el"
@@ -16119,6 +18375,8 @@ Add submenus to the File menu, to convert to and from various formats.
16119 (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) 18375 (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map)
16120 (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) 18376 (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap)
16121 18377
18378(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "iso-transl" '("iso-transl-")))
18379
16122;;;*** 18380;;;***
16123 18381
16124;;;### (autoloads nil "ispell" "textmodes/ispell.el" (0 0 0 0)) 18382;;;### (autoloads nil "ispell" "textmodes/ispell.el" (0 0 0 0))
@@ -16352,6 +18610,24 @@ You can bind this to the key C-c i in GNUS or mail by adding to
16352 18610
16353\(fn)" t nil) 18611\(fn)" t nil)
16354 18612
18613(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ispell" '("ispell-" "ispell--make-\\\\w-expression" "ispell--make-filename-or-URL-re" "check-ispell-version" "ispell--\\\\w-filter")))
18614
18615;;;***
18616
18617;;;### (autoloads nil "ja-dic-cnv" "international/ja-dic-cnv.el"
18618;;;;;; (0 0 0 0))
18619;;; Generated autoloads from international/ja-dic-cnv.el
18620
18621(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ja-dic-cnv" '("skkdic-" "batch-skkdic-convert" "ja-dic-filename")))
18622
18623;;;***
18624
18625;;;### (autoloads nil "ja-dic-utl" "international/ja-dic-utl.el"
18626;;;;;; (0 0 0 0))
18627;;; Generated autoloads from international/ja-dic-utl.el
18628
18629(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ja-dic-utl" '("skkdic-")))
18630
16355;;;*** 18631;;;***
16356 18632
16357;;;### (autoloads nil "japan-util" "language/japan-util.el" (0 0 18633;;;### (autoloads nil "japan-util" "language/japan-util.el" (0 0
@@ -16430,6 +18706,8 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
16430 18706
16431\(fn PROMPT &optional INITIAL-INPUT)" nil nil) 18707\(fn PROMPT &optional INITIAL-INPUT)" nil nil)
16432 18708
18709(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "japan-util" '("japanese-replace-region" "japanese-symbol-table" "japanese-string-conversion" "japanese-alpha-numeric-table" "japanese-kana-table")))
18710
16433;;;*** 18711;;;***
16434 18712
16435;;;### (autoloads nil "jka-compr" "jka-compr.el" (0 0 0 0)) 18713;;;### (autoloads nil "jka-compr" "jka-compr.el" (0 0 0 0))
@@ -16453,6 +18731,8 @@ by `jka-compr-installed'.
16453 18731
16454\(fn)" nil nil) 18732\(fn)" nil nil)
16455 18733
18734(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "jka-compr" '("jka-compr-" "compression-error")))
18735
16456;;;*** 18736;;;***
16457 18737
16458;;;### (autoloads nil "js" "progmodes/js.el" (0 0 0 0)) 18738;;;### (autoloads nil "js" "progmodes/js.el" (0 0 0 0))
@@ -16480,12 +18760,23 @@ locally, like so:
16480 18760
16481(dolist (name (list "node" "nodejs" "gjs" "rhino")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'js-mode))) 18761(dolist (name (list "node" "nodejs" "gjs" "rhino")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'js-mode)))
16482 18762
18763(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "js" '("js--" "js-" "with-js")))
18764
16483;;;*** 18765;;;***
16484 18766
16485;;;### (autoloads nil "json" "json.el" (0 0 0 0)) 18767;;;### (autoloads nil "json" "json.el" (0 0 0 0))
16486;;; Generated autoloads from json.el 18768;;; Generated autoloads from json.el
16487(push (purecopy '(json 1 4)) package--builtin-versions) 18769(push (purecopy '(json 1 4)) package--builtin-versions)
16488 18770
18771(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "json" '("json-" "json--")))
18772
18773;;;***
18774
18775;;;### (autoloads nil "kermit" "kermit.el" (0 0 0 0))
18776;;; Generated autoloads from kermit.el
18777
18778(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "kermit" '("kermit-clean-" "kermit-default-" "kermit-send-" "kermit-esc" "kermit-esc-char")))
18779
16489;;;*** 18780;;;***
16490 18781
16491;;;### (autoloads nil "keypad" "emulation/keypad.el" (0 0 0 0)) 18782;;;### (autoloads nil "keypad" "emulation/keypad.el" (0 0 0 0))
@@ -16563,6 +18854,8 @@ the context of text formatting.
16563 18854
16564\(fn LINEBEG)" nil nil) 18855\(fn LINEBEG)" nil nil)
16565 18856
18857(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "kinsoku" '("kinsoku-shorter" "kinsoku-limit" "kinsoku-longer")))
18858
16566;;;*** 18859;;;***
16567 18860
16568;;;### (autoloads nil "kkc" "international/kkc.el" (0 0 0 0)) 18861;;;### (autoloads nil "kkc" "international/kkc.el" (0 0 0 0))
@@ -16585,6 +18878,8 @@ and the return value is the length of the conversion.
16585 18878
16586\(fn FROM TO)" t nil) 18879\(fn FROM TO)" t nil)
16587 18880
18881(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "kkc" '("kkc-")))
18882
16588;;;*** 18883;;;***
16589 18884
16590;;;### (autoloads nil "kmacro" "kmacro.el" (0 0 0 0)) 18885;;;### (autoloads nil "kmacro" "kmacro.el" (0 0 0 0))
@@ -16697,6 +18992,8 @@ If kbd macro currently being defined end it before activating it.
16697 18992
16698\(fn EVENT)" t nil) 18993\(fn EVENT)" t nil)
16699 18994
18995(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "kmacro" '("kmacro-")))
18996
16700;;;*** 18997;;;***
16701 18998
16702;;;### (autoloads nil "korea-util" "language/korea-util.el" (0 0 18999;;;### (autoloads nil "korea-util" "language/korea-util.el" (0 0
@@ -16712,6 +19009,8 @@ The kind of Korean keyboard for Korean input method.
16712 19009
16713\(fn)" nil nil) 19010\(fn)" nil nil)
16714 19011
19012(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "korea-util" '("isearch-" "quail-hangul-switch-" "toggle-korean-input-method" "korean-key-bindings" "exit-korean-environment")))
19013
16715;;;*** 19014;;;***
16716 19015
16717;;;### (autoloads nil "lao-util" "language/lao-util.el" (0 0 0 0)) 19016;;;### (autoloads nil "lao-util" "language/lao-util.el" (0 0 0 0))
@@ -16749,6 +19048,8 @@ Transcribe Romanized Lao string STR to Lao character string.
16749 19048
16750\(fn FROM TO)" t nil) 19049\(fn FROM TO)" t nil)
16751 19050
19051(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "lao-util" '("lao-transcription-" "lao-category-table" "lao-composition-pattern" "lao-vowel-reordering-rule")))
19052
16752;;;*** 19053;;;***
16753 19054
16754;;;### (autoloads nil "latexenc" "international/latexenc.el" (0 0 19055;;;### (autoloads nil "latexenc" "international/latexenc.el" (0 0
@@ -16781,6 +19082,8 @@ coding system names is determined from `latex-inputenc-coding-alist'.
16781 19082
16782\(fn ARG-LIST)" nil nil) 19083\(fn ARG-LIST)" nil nil)
16783 19084
19085(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "latexenc" '("latexenc-dont-use-TeX-master-flag" "latexenc-dont-use-tex-guess-main-file-flag")))
19086
16784;;;*** 19087;;;***
16785 19088
16786;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el" 19089;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el"
@@ -16823,6 +19126,8 @@ use either \\[customize] or the function `latin1-display'.")
16823 19126
16824(custom-autoload 'latin1-display-ucs-per-lynx "latin1-disp" nil) 19127(custom-autoload 'latin1-display-ucs-per-lynx "latin1-disp" nil)
16825 19128
19129(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "latin1-disp" '("latin1-display-")))
19130
16826;;;*** 19131;;;***
16827 19132
16828;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (0 0 0 19133;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (0 0 0
@@ -16834,6 +19139,23 @@ A major mode to edit GNU ld script files
16834 19139
16835\(fn)" t nil) 19140\(fn)" t nil)
16836 19141
19142(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ld-script" '("ld-script-font-lock-keywords" "ld-script-builtins" "ld-script-keywords" "ld-script-mode-syntax-table" "ld-script-location-counter-face")))
19143
19144;;;***
19145
19146;;;### (autoloads nil "ldap" "net/ldap.el" (0 0 0 0))
19147;;; Generated autoloads from net/ldap.el
19148
19149(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ldap" '("ldap-")))
19150
19151;;;***
19152
19153;;;### (autoloads nil "legacy-gnus-agent" "gnus/legacy-gnus-agent.el"
19154;;;;;; (0 0 0 0))
19155;;; Generated autoloads from gnus/legacy-gnus-agent.el
19156
19157(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "legacy-gnus-agent" '("gnus-agent-convert-to-compressed-" "gnus-agent-compressed-agentview-search-only" "gnus-agent-unlist-expire-days" "gnus-agent-unhook-expire-days" "gnus-agent-convert-agentview")))
19158
16837;;;*** 19159;;;***
16838 19160
16839;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (0 0 19161;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (0 0
@@ -16874,6 +19196,8 @@ displayed in the example above.
16874 19196
16875(function-put 'let-alist 'lisp-indent-function '1) 19197(function-put 'let-alist 'lisp-indent-function '1)
16876 19198
19199(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "let-alist" '("let-alist--remove-dot" "let-alist--list-to-sexp" "let-alist--access-sexp" "let-alist--deep-dot-search")))
19200
16877;;;*** 19201;;;***
16878 19202
16879;;;### (autoloads nil "life" "play/life.el" (0 0 0 0)) 19203;;;### (autoloads nil "life" "play/life.el" (0 0 0 0))
@@ -16887,6 +19211,8 @@ generations (this defaults to 1).
16887 19211
16888\(fn &optional SLEEPTIME)" t nil) 19212\(fn &optional SLEEPTIME)" t nil)
16889 19213
19214(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "life" '("life-")))
19215
16890;;;*** 19216;;;***
16891 19217
16892;;;### (autoloads nil "linum" "linum.el" (0 0 0 0)) 19218;;;### (autoloads nil "linum" "linum.el" (0 0 0 0))
@@ -16925,6 +19251,16 @@ See `linum-mode' for more information on Linum mode.
16925 19251
16926\(fn &optional ARG)" t nil) 19252\(fn &optional ARG)" t nil)
16927 19253
19254(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "linum" '("linum-" "linum--face-width")))
19255
19256;;;***
19257
19258;;;### (autoloads nil "lisp-mnt" "emacs-lisp/lisp-mnt.el" (0 0 0
19259;;;;;; 0))
19260;;; Generated autoloads from emacs-lisp/lisp-mnt.el
19261
19262(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "lisp-mnt" '("lm-")))
19263
16928;;;*** 19264;;;***
16929 19265
16930;;;### (autoloads nil "loadhist" "loadhist.el" (0 0 0 0)) 19266;;;### (autoloads nil "loadhist" "loadhist.el" (0 0 0 0))
@@ -16956,6 +19292,8 @@ something strange, such as redefining an Emacs function.
16956 19292
16957\(fn FEATURE &optional FORCE)" t nil) 19293\(fn FEATURE &optional FORCE)" t nil)
16958 19294
19295(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "loadhist" '("file-" "feature-" "unload-" "read-feature" "loadhist-hook-functions" "unload--set-major-mode")))
19296
16959;;;*** 19297;;;***
16960 19298
16961;;;### (autoloads nil "locate" "locate.el" (0 0 0 0)) 19299;;;### (autoloads nil "locate" "locate.el" (0 0 0 0))
@@ -17008,6 +19346,8 @@ except that FILTER is not optional.
17008 19346
17009\(fn SEARCH-STRING FILTER &optional ARG)" t nil) 19347\(fn SEARCH-STRING FILTER &optional ARG)" t nil)
17010 19348
19349(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "locate" '("locate-")))
19350
17011;;;*** 19351;;;***
17012 19352
17013;;;### (autoloads nil "log-edit" "vc/log-edit.el" (0 0 0 0)) 19353;;;### (autoloads nil "log-edit" "vc/log-edit.el" (0 0 0 0))
@@ -17039,6 +19379,8 @@ done. Otherwise, it uses the current buffer.
17039 19379
17040\(fn CALLBACK &optional SETUP PARAMS BUFFER MODE &rest IGNORE)" nil nil) 19380\(fn CALLBACK &optional SETUP PARAMS BUFFER MODE &rest IGNORE)" nil nil)
17041 19381
19382(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "log-edit" '("log-edit-" "log-edit--match-first-line" "vc-log-entry-mode" "vc-log-mode-map")))
19383
17042;;;*** 19384;;;***
17043 19385
17044;;;### (autoloads nil "log-view" "vc/log-view.el" (0 0 0 0)) 19386;;;### (autoloads nil "log-view" "vc/log-view.el" (0 0 0 0))
@@ -17049,6 +19391,8 @@ Major mode for browsing CVS log output.
17049 19391
17050\(fn)" t nil) 19392\(fn)" t nil)
17051 19393
19394(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "log-view" '("log-view-")))
19395
17052;;;*** 19396;;;***
17053 19397
17054;;;### (autoloads nil "lpr" "lpr.el" (0 0 0 0)) 19398;;;### (autoloads nil "lpr" "lpr.el" (0 0 0 0))
@@ -17144,6 +19488,8 @@ for further customization of the printer command.
17144 19488
17145\(fn START END)" t nil) 19489\(fn START END)" t nil)
17146 19490
19491(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "lpr" '("lpr-" "print-region-function" "print-region-1" "print-region-new-buffer" "printify-region")))
19492
17147;;;*** 19493;;;***
17148 19494
17149;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (0 0 0 0)) 19495;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (0 0 0 0))
@@ -17155,6 +19501,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).")
17155 19501
17156(custom-autoload 'ls-lisp-support-shell-wildcards "ls-lisp" t) 19502(custom-autoload 'ls-lisp-support-shell-wildcards "ls-lisp" t)
17157 19503
19504(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ls-lisp" '("ls-lisp-" "ls-lisp--insert-directory")))
19505
17158;;;*** 19506;;;***
17159 19507
17160;;;### (autoloads nil "lunar" "calendar/lunar.el" (0 0 0 0)) 19508;;;### (autoloads nil "lunar" "calendar/lunar.el" (0 0 0 0))
@@ -17167,6 +19515,8 @@ This function is suitable for execution in an init file.
17167 19515
17168\(fn &optional ARG)" t nil) 19516\(fn &optional ARG)" t nil)
17169 19517
19518(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "lunar" '("lunar-" "diary-lunar-phases" "calendar-lunar-phases")))
19519
17170;;;*** 19520;;;***
17171 19521
17172;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (0 0 0 0)) 19522;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (0 0 0 0))
@@ -17177,6 +19527,8 @@ A major mode to edit m4 macro files.
17177 19527
17178\(fn)" t nil) 19528\(fn)" t nil)
17179 19529
19530(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "m4-mode" '("m4-" "m4--quoted-p")))
19531
17180;;;*** 19532;;;***
17181 19533
17182;;;### (autoloads nil "macros" "macros.el" (0 0 0 0)) 19534;;;### (autoloads nil "macros" "macros.el" (0 0 0 0))
@@ -17296,6 +19648,8 @@ Convert mail domain DOMAIN to the country it corresponds to.
17296 19648
17297\(fn DOMAIN)" t nil) 19649\(fn DOMAIN)" t nil)
17298 19650
19651(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mail-extr" '("mail-extr-")))
19652
17299;;;*** 19653;;;***
17300 19654
17301;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (0 0 0 0)) 19655;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (0 0 0 0))
@@ -17325,6 +19679,30 @@ This function normally would be called when the message is sent.
17325 19679
17326\(fn)" nil nil) 19680\(fn)" nil nil)
17327 19681
19682(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mail-hist" '("mail-hist-")))
19683
19684;;;***
19685
19686;;;### (autoloads nil "mail-parse" "mail/mail-parse.el" (0 0 0 0))
19687;;; Generated autoloads from mail/mail-parse.el
19688
19689(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mail-parse" '("mail-")))
19690
19691;;;***
19692
19693;;;### (autoloads nil "mail-prsvr" "mail/mail-prsvr.el" (0 0 0 0))
19694;;; Generated autoloads from mail/mail-prsvr.el
19695
19696(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mail-prsvr" '("mail-parse-charset" "mail-parse-mule-charset" "mail-parse-ignored-charsets")))
19697
19698;;;***
19699
19700;;;### (autoloads nil "mail-source" "gnus/mail-source.el" (0 0 0
19701;;;;;; 0))
19702;;; Generated autoloads from gnus/mail-source.el
19703
19704(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mail-source" '("mail-source-" "mail-sources")))
19705
17328;;;*** 19706;;;***
17329 19707
17330;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (0 0 0 0)) 19708;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (0 0 0 0))
@@ -17399,6 +19777,8 @@ matches may be returned from the message body.
17399 19777
17400\(fn FIELD-NAME &optional LAST ALL LIST)" nil nil) 19778\(fn FIELD-NAME &optional LAST ALL LIST)" nil nil)
17401 19779
19780(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mail-utils" '("mail-")))
19781
17402;;;*** 19782;;;***
17403 19783
17404;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (0 0 0 0)) 19784;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (0 0 0 0))
@@ -17449,6 +19829,8 @@ double-quotes.
17449 19829
17450\(fn NAME DEFINITION &optional FROM-MAILRC-FILE)" t nil) 19830\(fn NAME DEFINITION &optional FROM-MAILRC-FILE)" t nil)
17451 19831
19832(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mailabbrev" '("mail-" "rebuild-mail-abbrevs" "merge-mail-abbrevs")))
19833
17452;;;*** 19834;;;***
17453 19835
17454;;;### (autoloads nil "mailalias" "mail/mailalias.el" (0 0 0 0)) 19836;;;### (autoloads nil "mailalias" "mail/mailalias.el" (0 0 0 0))
@@ -17502,6 +19884,15 @@ current header, calls `mail-complete-function' and passes prefix ARG if any.
17502 19884
17503(make-obsolete 'mail-complete 'mail-completion-at-point-function '"24.1") 19885(make-obsolete 'mail-complete 'mail-completion-at-point-function '"24.1")
17504 19886
19887(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mailalias" '("mail-" "build-mail-aliases")))
19888
19889;;;***
19890
19891;;;### (autoloads nil "mailcap" "net/mailcap.el" (0 0 0 0))
19892;;; Generated autoloads from net/mailcap.el
19893
19894(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mailcap" '("mailcap-" "mailcap--set-user-mime-data" "mailcap--get-user-mime-data")))
19895
17505;;;*** 19896;;;***
17506 19897
17507;;;### (autoloads nil "mailclient" "mail/mailclient.el" (0 0 0 0)) 19898;;;### (autoloads nil "mailclient" "mail/mailclient.el" (0 0 0 0))
@@ -17514,6 +19905,22 @@ The mail client is taken to be the handler of mailto URLs.
17514 19905
17515\(fn)" nil nil) 19906\(fn)" nil nil)
17516 19907
19908(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mailclient" '("mailclient-place-body-on-clipboard-flag" "mailclient-encode-string-as-url" "mailclient-delim-static" "mailclient-url-delim" "mailclient-gather-addresses")))
19909
19910;;;***
19911
19912;;;### (autoloads nil "mailheader" "mail/mailheader.el" (0 0 0 0))
19913;;; Generated autoloads from mail/mailheader.el
19914
19915(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mailheader" '("mail-header-" "mail-header")))
19916
19917;;;***
19918
19919;;;### (autoloads nil "mairix" "net/mairix.el" (0 0 0 0))
19920;;; Generated autoloads from net/mairix.el
19921
19922(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mairix" '("mairix-")))
19923
17517;;;*** 19924;;;***
17518 19925
17519;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (0 0 0 19926;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (0 0 0
@@ -17632,6 +20039,15 @@ An adapted `makefile-mode' that knows about imake.
17632 20039
17633\(fn)" t nil) 20040\(fn)" t nil)
17634 20041
20042(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "make-mode" '("makefile-")))
20043
20044;;;***
20045
20046;;;### (autoloads nil "makeinfo" "textmodes/makeinfo.el" (0 0 0 0))
20047;;; Generated autoloads from textmodes/makeinfo.el
20048
20049(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "makeinfo" '("makeinfo-")))
20050
17635;;;*** 20051;;;***
17636 20052
17637;;;### (autoloads nil "makesum" "makesum.el" (0 0 0 0)) 20053;;;### (autoloads nil "makesum" "makesum.el" (0 0 0 0))
@@ -17643,6 +20059,8 @@ Previous contents of that buffer are killed first.
17643 20059
17644\(fn)" t nil) 20060\(fn)" t nil)
17645 20061
20062(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "makesum" '("double-column")))
20063
17646;;;*** 20064;;;***
17647 20065
17648;;;### (autoloads nil "man" "man.el" (0 0 0 0)) 20066;;;### (autoloads nil "man" "man.el" (0 0 0 0))
@@ -17683,7 +20101,7 @@ otherwise look like a page name.
17683 20101
17684An \"apropos\" query with -k gives a buffer of matching page 20102An \"apropos\" query with -k gives a buffer of matching page
17685names or descriptions. The pattern argument is usually an 20103names or descriptions. The pattern argument is usually an
17686\"egrep\" style regexp. 20104\"grep -E\" style regexp.
17687 20105
17688 -k pattern 20106 -k pattern
17689 20107
@@ -17699,12 +20117,23 @@ Default bookmark handler for Man buffers.
17699 20117
17700\(fn BOOKMARK)" nil nil) 20118\(fn BOOKMARK)" nil nil)
17701 20119
20120(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "man" '("Man-" "Man--" "man-imenu-title" "manual-program")))
20121
20122;;;***
20123
20124;;;### (autoloads nil "mantemp" "progmodes/mantemp.el" (0 0 0 0))
20125;;; Generated autoloads from progmodes/mantemp.el
20126
20127(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mantemp" '("mantemp-make-mantemps-" "mantemp-remove-" "mantemp-insert-cxx-syntax" "mantemp-sort-and-unique-lines" "mantemp-make-mantemps")))
20128
17702;;;*** 20129;;;***
17703 20130
17704;;;### (autoloads nil "map" "emacs-lisp/map.el" (0 0 0 0)) 20131;;;### (autoloads nil "map" "emacs-lisp/map.el" (0 0 0 0))
17705;;; Generated autoloads from emacs-lisp/map.el 20132;;; Generated autoloads from emacs-lisp/map.el
17706(push (purecopy '(map 1 0)) package--builtin-versions) 20133(push (purecopy '(map 1 0)) package--builtin-versions)
17707 20134
20135(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "map" '("map-" "map--" "mapp")))
20136
17708;;;*** 20137;;;***
17709 20138
17710;;;### (autoloads nil "master" "master.el" (0 0 0 0)) 20139;;;### (autoloads nil "master" "master.el" (0 0 0 0))
@@ -17728,6 +20157,8 @@ yourself the value of `master-of' by calling `master-show-slave'.
17728 20157
17729\(fn &optional ARG)" t nil) 20158\(fn &optional ARG)" t nil)
17730 20159
20160(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "master" '("master-says-" "master-set-" "master-says" "master-show-slave" "master-of")))
20161
17731;;;*** 20162;;;***
17732 20163
17733;;;### (autoloads nil "mb-depth" "mb-depth.el" (0 0 0 0)) 20164;;;### (autoloads nil "mb-depth" "mb-depth.el" (0 0 0 0))
@@ -17756,12 +20187,16 @@ recursion depth in the minibuffer prompt. This is only useful if
17756 20187
17757\(fn &optional ARG)" t nil) 20188\(fn &optional ARG)" t nil)
17758 20189
20190(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mb-depth" '("minibuffer-depth-indicator-function" "minibuffer-depth-setup")))
20191
17759;;;*** 20192;;;***
17760 20193
17761;;;### (autoloads nil "md4" "md4.el" (0 0 0 0)) 20194;;;### (autoloads nil "md4" "md4.el" (0 0 0 0))
17762;;; Generated autoloads from md4.el 20195;;; Generated autoloads from md4.el
17763(push (purecopy '(md4 1 0)) package--builtin-versions) 20196(push (purecopy '(md4 1 0)) package--builtin-versions)
17764 20197
20198(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "md4" '("md4-" "md4")))
20199
17765;;;*** 20200;;;***
17766 20201
17767;;;### (autoloads nil "message" "gnus/message.el" (0 0 0 0)) 20202;;;### (autoloads nil "message" "gnus/message.el" (0 0 0 0))
@@ -17927,6 +20362,15 @@ which specify the range to operate on.
17927 20362
17928\(fn START END)" t nil) 20363\(fn START END)" t nil)
17929 20364
20365(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "message" '("message-" "nil" "message--syntax-propertize" "message--yank-original-internal")))
20366
20367;;;***
20368
20369;;;### (autoloads nil "messcompat" "gnus/messcompat.el" (0 0 0 0))
20370;;; Generated autoloads from gnus/messcompat.el
20371
20372(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "messcompat" '("message-")))
20373
17930;;;*** 20374;;;***
17931 20375
17932;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (0 0 0 20376;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (0 0 0
@@ -17944,6 +20388,8 @@ Major mode for editing MetaPost sources.
17944 20388
17945\(fn)" t nil) 20389\(fn)" t nil)
17946 20390
20391(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "meta-mode" '("meta-" "metapost-" "metafont-" "font-lock-match-meta-declaration-item-and-skip-to-next")))
20392
17947;;;*** 20393;;;***
17948 20394
17949;;;### (autoloads nil "metamail" "mail/metamail.el" (0 0 0 0)) 20395;;;### (autoloads nil "metamail" "mail/metamail.el" (0 0 0 0))
@@ -17987,6 +20433,29 @@ redisplayed as output is inserted.
17987 20433
17988\(fn BEG END &optional VIEWMODE BUFFER NODISPLAY)" t nil) 20434\(fn BEG END &optional VIEWMODE BUFFER NODISPLAY)" t nil)
17989 20435
20436(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "metamail" '("metamail-switches" "metamail-environment" "metamail-mailer-name" "metamail-program-name")))
20437
20438;;;***
20439
20440;;;### (autoloads nil "mh-acros" "mh-e/mh-acros.el" (0 0 0 0))
20441;;; Generated autoloads from mh-e/mh-acros.el
20442
20443(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-acros" '("mh-" "defun-mh" "defmacro-mh" "with-mh-folder-updating")))
20444
20445;;;***
20446
20447;;;### (autoloads nil "mh-alias" "mh-e/mh-alias.el" (0 0 0 0))
20448;;; Generated autoloads from mh-e/mh-alias.el
20449
20450(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-alias" '("mh-alias-" "mh-folder-line-matches-show-buffer-p" "mh-read-address")))
20451
20452;;;***
20453
20454;;;### (autoloads nil "mh-buffers" "mh-e/mh-buffers.el" (0 0 0 0))
20455;;; Generated autoloads from mh-e/mh-buffers.el
20456
20457(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-buffers" '("mh-")))
20458
17990;;;*** 20459;;;***
17991 20460
17992;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (0 0 0 0)) 20461;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (0 0 0 0))
@@ -18077,6 +20546,15 @@ delete the draft message.
18077 20546
18078\(fn)" t nil) 20547\(fn)" t nil)
18079 20548
20549(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-comp" '("mh-")))
20550
20551;;;***
20552
20553;;;### (autoloads nil "mh-compat" "mh-e/mh-compat.el" (0 0 0 0))
20554;;; Generated autoloads from mh-e/mh-compat.el
20555
20556(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-compat" '("mh-")))
20557
18080;;;*** 20558;;;***
18081 20559
18082;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (0 0 0 0)) 20560;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (0 0 0 0))
@@ -18094,6 +20572,8 @@ Display version information about MH-E and the MH mail handling system.
18094 20572
18095\(fn)" t nil) 20573\(fn)" t nil)
18096 20574
20575(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-e" '("mh-" "defgroup-mh" "defcustom-mh" "defface-mh")))
20576
18097;;;*** 20577;;;***
18098 20578
18099;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (0 0 0 0)) 20579;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (0 0 0 0))
@@ -18175,6 +20655,129 @@ perform the operation on all messages in that region.
18175 20655
18176\(fn)" t nil) 20656\(fn)" t nil)
18177 20657
20658(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-folder" '("mh-")))
20659
20660;;;***
20661
20662;;;### (autoloads nil "mh-funcs" "mh-e/mh-funcs.el" (0 0 0 0))
20663;;; Generated autoloads from mh-e/mh-funcs.el
20664
20665(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-funcs" '("mh-")))
20666
20667;;;***
20668
20669;;;### (autoloads nil "mh-identity" "mh-e/mh-identity.el" (0 0 0
20670;;;;;; 0))
20671;;; Generated autoloads from mh-e/mh-identity.el
20672
20673(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-identity" '("mh-identity-" "mh-header-field-delete" "mh-insert-identity")))
20674
20675;;;***
20676
20677;;;### (autoloads nil "mh-inc" "mh-e/mh-inc.el" (0 0 0 0))
20678;;; Generated autoloads from mh-e/mh-inc.el
20679
20680(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-inc" '("mh-inc-spool-map-help" "mh-inc-spool-make" "mh-inc-spool-make-no-autoload" "mh-inc-spool-generator" "mh-inc-spool-def-key")))
20681
20682;;;***
20683
20684;;;### (autoloads nil "mh-junk" "mh-e/mh-junk.el" (0 0 0 0))
20685;;; Generated autoloads from mh-e/mh-junk.el
20686
20687(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-junk" '("mh-")))
20688
20689;;;***
20690
20691;;;### (autoloads nil "mh-letter" "mh-e/mh-letter.el" (0 0 0 0))
20692;;; Generated autoloads from mh-e/mh-letter.el
20693
20694(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-letter" '("mh-")))
20695
20696;;;***
20697
20698;;;### (autoloads nil "mh-limit" "mh-e/mh-limit.el" (0 0 0 0))
20699;;; Generated autoloads from mh-e/mh-limit.el
20700
20701(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-limit" '("mh-")))
20702
20703;;;***
20704
20705;;;### (autoloads nil "mh-mime" "mh-e/mh-mime.el" (0 0 0 0))
20706;;; Generated autoloads from mh-e/mh-mime.el
20707
20708(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-mime" '("mh-")))
20709
20710;;;***
20711
20712;;;### (autoloads nil "mh-print" "mh-e/mh-print.el" (0 0 0 0))
20713;;; Generated autoloads from mh-e/mh-print.el
20714
20715(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-print" '("mh-ps-print-" "mh-print-msg" "mh-ps-spool-msg" "mh-ps-spool-buffer")))
20716
20717;;;***
20718
20719;;;### (autoloads nil "mh-scan" "mh-e/mh-scan.el" (0 0 0 0))
20720;;; Generated autoloads from mh-e/mh-scan.el
20721
20722(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-scan" '("mh-")))
20723
20724;;;***
20725
20726;;;### (autoloads nil "mh-search" "mh-e/mh-search.el" (0 0 0 0))
20727;;; Generated autoloads from mh-e/mh-search.el
20728
20729(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-search" '("mh-")))
20730
20731;;;***
20732
20733;;;### (autoloads nil "mh-seq" "mh-e/mh-seq.el" (0 0 0 0))
20734;;; Generated autoloads from mh-e/mh-seq.el
20735
20736(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-seq" '("mh-")))
20737
20738;;;***
20739
20740;;;### (autoloads nil "mh-show" "mh-e/mh-show.el" (0 0 0 0))
20741;;; Generated autoloads from mh-e/mh-show.el
20742
20743(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-show" '("mh-")))
20744
20745;;;***
20746
20747;;;### (autoloads nil "mh-speed" "mh-e/mh-speed.el" (0 0 0 0))
20748;;; Generated autoloads from mh-e/mh-speed.el
20749
20750(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-speed" '("mh-")))
20751
20752;;;***
20753
20754;;;### (autoloads nil "mh-thread" "mh-e/mh-thread.el" (0 0 0 0))
20755;;; Generated autoloads from mh-e/mh-thread.el
20756
20757(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-thread" '("mh-toggle-threads" "mh-thread-" "mh-message-id-regexp")))
20758
20759;;;***
20760
20761;;;### (autoloads nil "mh-tool-bar" "mh-e/mh-tool-bar.el" (0 0 0
20762;;;;;; 0))
20763;;; Generated autoloads from mh-e/mh-tool-bar.el
20764
20765(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-tool-bar" '("mh-tool-bar-")))
20766
20767;;;***
20768
20769;;;### (autoloads nil "mh-utils" "mh-e/mh-utils.el" (0 0 0 0))
20770;;; Generated autoloads from mh-e/mh-utils.el
20771
20772(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-utils" '("mh-")))
20773
20774;;;***
20775
20776;;;### (autoloads nil "mh-xface" "mh-e/mh-xface.el" (0 0 0 0))
20777;;; Generated autoloads from mh-e/mh-xface.el
20778
20779(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mh-xface" '("mh-")))
20780
18178;;;*** 20781;;;***
18179 20782
18180;;;### (autoloads nil "midnight" "midnight.el" (0 0 0 0)) 20783;;;### (autoloads nil "midnight" "midnight.el" (0 0 0 0))
@@ -18216,6 +20819,8 @@ to its second argument TM.
18216 20819
18217\(fn SYMB TM)" nil nil) 20820\(fn SYMB TM)" nil nil)
18218 20821
20822(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "midnight" '("midnight-" "clean-buffer-list-kill-" "clean-buffer-list-delay" "clean-buffer-list-delay-special" "clean-buffer-list-delay-general")))
20823
18219;;;*** 20824;;;***
18220 20825
18221;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (0 0 0 0)) 20826;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (0 0 0 0))
@@ -18246,6 +20851,8 @@ is modified to remove the default indication.
18246 20851
18247\(fn &optional ARG)" t nil) 20852\(fn &optional ARG)" t nil)
18248 20853
20854(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "minibuf-eldef" '("minibuf-eldef-" "minibuffer-default-in-prompt-regexps" "minibuffer-eldef-shorten-default" "minibuffer-default--in-prompt-regexps")))
20855
18249;;;*** 20856;;;***
18250 20857
18251;;;### (autoloads nil "misc" "misc.el" (0 0 0 0)) 20858;;;### (autoloads nil "misc" "misc.el" (0 0 0 0))
@@ -18274,6 +20881,8 @@ The return value is always nil.
18274 20881
18275\(fn &optional LOADED-ONLY-P BUFFER)" t nil) 20882\(fn &optional LOADED-ONLY-P BUFFER)" t nil)
18276 20883
20884(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "misc" '("mark-" "list-dynamic-libraries--" "copy-from-above-command" "zap-up-to-char" "upcase-char" "forward-to-word" "backward-to-word")))
20885
18277;;;*** 20886;;;***
18278 20887
18279;;;### (autoloads nil "misearch" "misearch.el" (0 0 0 0)) 20888;;;### (autoloads nil "misearch" "misearch.el" (0 0 0 0))
@@ -18362,6 +20971,8 @@ whose file names match the specified wildcard.
18362 20971
18363\(fn FILES)" t nil) 20972\(fn FILES)" t nil)
18364 20973
20974(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "misearch" '("multi-isearch-" "misearch-unload-function")))
20975
18365;;;*** 20976;;;***
18366 20977
18367;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (0 0 20978;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (0 0
@@ -18374,6 +20985,29 @@ Major mode for the mixal asm language.
18374 20985
18375\(fn)" t nil) 20986\(fn)" t nil)
18376 20987
20988(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mixal-mode" '("mixal-")))
20989
20990;;;***
20991
20992;;;### (autoloads nil "mm-archive" "gnus/mm-archive.el" (0 0 0 0))
20993;;; Generated autoloads from gnus/mm-archive.el
20994
20995(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mm-archive" '("mm-dissect-archive" "mm-archive-dissect-and-inline" "mm-archive-list-files" "mm-archive-decoders")))
20996
20997;;;***
20998
20999;;;### (autoloads nil "mm-bodies" "gnus/mm-bodies.el" (0 0 0 0))
21000;;; Generated autoloads from gnus/mm-bodies.el
21001
21002(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mm-bodies" '("mm-body-" "mm-decode-" "mm-7bit-chars" "mm-encode-body" "mm-long-lines-p")))
21003
21004;;;***
21005
21006;;;### (autoloads nil "mm-decode" "gnus/mm-decode.el" (0 0 0 0))
21007;;; Generated autoloads from gnus/mm-decode.el
21008
21009(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mm-decode" '("mm-")))
21010
18377;;;*** 21011;;;***
18378 21012
18379;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (0 0 0 0)) 21013;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (0 0 0 0))
@@ -18384,6 +21018,8 @@ Return a default encoding for FILE.
18384 21018
18385\(fn FILE)" nil nil) 21019\(fn FILE)" nil nil)
18386 21020
21021(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mm-encode" '("mm-")))
21022
18387;;;*** 21023;;;***
18388 21024
18389;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (0 0 0 0)) 21025;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (0 0 0 0))
@@ -18402,6 +21038,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing.
18402 21038
18403\(fn HANDLE &optional NO-DISPLAY)" nil nil) 21039\(fn HANDLE &optional NO-DISPLAY)" nil nil)
18404 21040
21041(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mm-extern" '("mm-extern-")))
21042
18405;;;*** 21043;;;***
18406 21044
18407;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (0 0 0 0)) 21045;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (0 0 0 0))
@@ -18415,6 +21053,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing.
18415 21053
18416\(fn HANDLE &optional NO-DISPLAY)" nil nil) 21054\(fn HANDLE &optional NO-DISPLAY)" nil nil)
18417 21055
21056(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mm-partial" '("mm-partial-find-parts")))
21057
18418;;;*** 21058;;;***
18419 21059
18420;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (0 0 0 0)) 21060;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (0 0 0 0))
@@ -18431,6 +21071,15 @@ Insert file contents of URL using `mm-url-program'.
18431 21071
18432\(fn URL)" nil nil) 21072\(fn URL)" nil nil)
18433 21073
21074(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mm-url" '("mm-url-")))
21075
21076;;;***
21077
21078;;;### (autoloads nil "mm-util" "gnus/mm-util.el" (0 0 0 0))
21079;;; Generated autoloads from gnus/mm-util.el
21080
21081(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mm-util" '("mm-")))
21082
18434;;;*** 21083;;;***
18435 21084
18436;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (0 0 0 0)) 21085;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (0 0 0 0))
@@ -18450,6 +21099,15 @@ Assume text has been decoded if DECODED is non-nil.
18450 21099
18451\(fn HANDLE &optional DECODED)" nil nil) 21100\(fn HANDLE &optional DECODED)" nil nil)
18452 21101
21102(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mm-uu" '("mm-uu-" "mm-dissect-disposition")))
21103
21104;;;***
21105
21106;;;### (autoloads nil "mm-view" "gnus/mm-view.el" (0 0 0 0))
21107;;; Generated autoloads from gnus/mm-view.el
21108
21109(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mm-view" '("mm-")))
21110
18453;;;*** 21111;;;***
18454 21112
18455;;;### (autoloads nil "mml" "gnus/mml.el" (0 0 0 0)) 21113;;;### (autoloads nil "mml" "gnus/mml.el" (0 0 0 0))
@@ -18475,6 +21133,22 @@ body) or \"attachment\" (separate from the body).
18475 21133
18476\(fn FILE &optional TYPE DESCRIPTION DISPOSITION)" t nil) 21134\(fn FILE &optional TYPE DESCRIPTION DISPOSITION)" t nil)
18477 21135
21136(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mml" '("mml-" "mml--possibly-alter-image" "mime-to-mml")))
21137
21138;;;***
21139
21140;;;### (autoloads nil "mml-sec" "gnus/mml-sec.el" (0 0 0 0))
21141;;; Generated autoloads from gnus/mml-sec.el
21142
21143(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mml-sec" '("mml-")))
21144
21145;;;***
21146
21147;;;### (autoloads nil "mml-smime" "gnus/mml-smime.el" (0 0 0 0))
21148;;; Generated autoloads from gnus/mml-smime.el
21149
21150(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mml-smime" '("mml-smime-")))
21151
18478;;;*** 21152;;;***
18479 21153
18480;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (0 0 0 0)) 21154;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (0 0 0 0))
@@ -18490,6 +21164,8 @@ body) or \"attachment\" (separate from the body).
18490 21164
18491\(fn CONT)" nil nil) 21165\(fn CONT)" nil nil)
18492 21166
21167(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mml1991" '("mml1991-")))
21168
18493;;;*** 21169;;;***
18494 21170
18495;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (0 0 0 0)) 21171;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (0 0 0 0))
@@ -18530,6 +21206,8 @@ body) or \"attachment\" (separate from the body).
18530 21206
18531\(fn)" nil nil) 21207\(fn)" nil nil)
18532 21208
21209(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mml2015" '("mml2015-")))
21210
18533;;;*** 21211;;;***
18534 21212
18535;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (0 0 0 0)) 21213;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (0 0 0 0))
@@ -18537,6 +21215,8 @@ body) or \"attachment\" (separate from the body).
18537 21215
18538(put 'define-overloadable-function 'doc-string-elt 3) 21216(put 'define-overloadable-function 'doc-string-elt 3)
18539 21217
21218(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mode-local" '("define-" "overload-" "describe-mode-local-" "with-mode-" "xref-mode-" "mode-" "get-mode-local-parent" "set-mode-local-parent" "new-mode-local-bindings" "activate-mode-local-bindings" "deactivate-mode-local-bindings" "setq-mode-local" "defvar-mode-local" "defconst-mode-local" "make-obsolete-overload" "fetch-overload" "function-overload-p")))
21219
18540;;;*** 21220;;;***
18541 21221
18542;;;### (autoloads nil "modula2" "progmodes/modula2.el" (0 0 0 0)) 21222;;;### (autoloads nil "modula2" "progmodes/modula2.el" (0 0 0 0))
@@ -18570,6 +21250,8 @@ followed by the first character of the construct.
18570 21250
18571\(fn)" t nil) 21251\(fn)" t nil)
18572 21252
21253(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "modula2" '("m2-" "m3-font-lock-keywords" "m3-font-lock-keywords-2" "m3-font-lock-keywords-1")))
21254
18573;;;*** 21255;;;***
18574 21256
18575;;;### (autoloads nil "morse" "play/morse.el" (0 0 0 0)) 21257;;;### (autoloads nil "morse" "play/morse.el" (0 0 0 0))
@@ -18595,6 +21277,15 @@ Convert NATO phonetic alphabet in region to ordinary ASCII text.
18595 21277
18596\(fn BEG END)" t nil) 21278\(fn BEG END)" t nil)
18597 21279
21280(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "morse" '("morse-code" "nato-alphabet")))
21281
21282;;;***
21283
21284;;;### (autoloads nil "mouse-copy" "mouse-copy.el" (0 0 0 0))
21285;;; Generated autoloads from mouse-copy.el
21286
21287(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mouse-copy" '("mouse-copy-last-paste-" "mouse-drag-secondary-" "mouse-copy-have-drag-bug" "mouse-copy-work-around-drag-bug" "mouse-kill-preserving-secondary")))
21288
18598;;;*** 21289;;;***
18599 21290
18600;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (0 0 0 0)) 21291;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (0 0 0 0))
@@ -18642,6 +21333,8 @@ To test this function, evaluate:
18642 21333
18643\(fn START-EVENT)" t nil) 21334\(fn START-EVENT)" t nil)
18644 21335
21336(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mouse-drag" '("mouse-drag-" "mouse-throw-magnifier-base" "mouse-throw-magnifier-max" "mouse-throw-magnifier-min" "mouse-throw-with-scroll-bar")))
21337
18645;;;*** 21338;;;***
18646 21339
18647;;;### (autoloads nil "mpc" "mpc.el" (0 0 0 0)) 21340;;;### (autoloads nil "mpc" "mpc.el" (0 0 0 0))
@@ -18652,6 +21345,8 @@ Main entry point for MPC.
18652 21345
18653\(fn)" t nil) 21346\(fn)" t nil)
18654 21347
21348(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mpc" '("mpc-" "mpc--" "tag-browser-tagtypes")))
21349
18655;;;*** 21350;;;***
18656 21351
18657;;;### (autoloads nil "mpuz" "play/mpuz.el" (0 0 0 0)) 21352;;;### (autoloads nil "mpuz" "play/mpuz.el" (0 0 0 0))
@@ -18662,6 +21357,8 @@ Multiplication puzzle with GNU Emacs.
18662 21357
18663\(fn)" t nil) 21358\(fn)" t nil)
18664 21359
21360(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mpuz" '("mpuz-")))
21361
18665;;;*** 21362;;;***
18666 21363
18667;;;### (autoloads nil "msb" "msb.el" (0 0 0 0)) 21364;;;### (autoloads nil "msb" "msb.el" (0 0 0 0))
@@ -18688,6 +21385,15 @@ different buffer menu using the function `msb'.
18688 21385
18689\(fn &optional ARG)" t nil) 21386\(fn &optional ARG)" t nil)
18690 21387
21388(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "msb" '("msb--" "msb-" "mouse-select-buffer" "msb")))
21389
21390;;;***
21391
21392;;;### (autoloads nil "mspools" "mail/mspools.el" (0 0 0 0))
21393;;; Generated autoloads from mail/mspools.el
21394
21395(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mspools" '("mspools-")))
21396
18691;;;*** 21397;;;***
18692 21398
18693;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (0 21399;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (0
@@ -18821,6 +21527,8 @@ The default is 20. If LIMIT is negative, do not limit the listing.
18821 21527
18822\(fn &optional LIMIT)" t nil) 21528\(fn &optional LIMIT)" t nil)
18823 21529
21530(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mule-diag" '("print-" "list-" "sort-listed-character-sets" "non-iso-charset-alist" "decode-codepage-char" "charset-history" "describe-font-internal" "insert-section")))
21531
18824;;;*** 21532;;;***
18825 21533
18826;;;### (autoloads nil "mule-util" "international/mule-util.el" (0 21534;;;### (autoloads nil "mule-util" "international/mule-util.el" (0
@@ -18981,6 +21689,15 @@ QUALITY can be:
18981 21689
18982\(fn POSITION &optional QUALITY CODING-SYSTEM)" nil nil) 21690\(fn POSITION &optional QUALITY CODING-SYSTEM)" nil nil)
18983 21691
21692(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mule-util" '("truncate-string-ellipsis" "filepos-to-bufferpos--dos")))
21693
21694;;;***
21695
21696;;;### (autoloads nil "mwheel" "mwheel.el" (0 0 0 0))
21697;;; Generated autoloads from mwheel.el
21698
21699(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mwheel" '("mouse-wheel-" "mwheel-")))
21700
18984;;;*** 21701;;;***
18985 21702
18986;;;### (autoloads nil "net-utils" "net/net-utils.el" (0 0 0 0)) 21703;;;### (autoloads nil "net-utils" "net/net-utils.el" (0 0 0 0))
@@ -19075,6 +21792,8 @@ Open a network connection to HOST on PORT.
19075 21792
19076\(fn HOST PORT)" t nil) 21793\(fn HOST PORT)" t nil)
19077 21794
21795(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "net-utils" '("nslookup-" "ftp-" "smbclient-" "whois-" "dns-lookup-" "traceroute-" "ping-" "ifconfig-" "iwconfig-" "netstat-" "arp-" "route-" "net-" "network-" "dig-program" "ipconfig" "smbclient" "run-network-program" "finger-X.500-host-regexps")))
21796
19078;;;*** 21797;;;***
19079 21798
19080;;;### (autoloads nil "netrc" "net/netrc.el" (0 0 0 0)) 21799;;;### (autoloads nil "netrc" "net/netrc.el" (0 0 0 0))
@@ -19087,6 +21806,8 @@ listed in the PORTS list.
19087 21806
19088\(fn MACHINE &rest PORTS)" nil nil) 21807\(fn MACHINE &rest PORTS)" nil nil)
19089 21808
21809(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "netrc" '("netrc-")))
21810
19090;;;*** 21811;;;***
19091 21812
19092;;;### (autoloads nil "network-stream" "net/network-stream.el" (0 21813;;;### (autoloads nil "network-stream" "net/network-stream.el" (0
@@ -19190,6 +21911,8 @@ gnutls-boot (as returned by `gnutls-boot-parameters').
19190 21911
19191(defalias 'open-protocol-stream 'open-network-stream) 21912(defalias 'open-protocol-stream 'open-network-stream)
19192 21913
21914(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "network-stream" '("network-stream-open-" "network-stream-certificate" "network-stream-command" "network-stream-get-response")))
21915
19193;;;*** 21916;;;***
19194 21917
19195;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (0 0 21918;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (0 0
@@ -19212,6 +21935,8 @@ Run `newsticker-start-hook' if newsticker was not running already.
19212 21935
19213\(fn &optional DO-NOT-COMPLAIN-IF-RUNNING)" t nil) 21936\(fn &optional DO-NOT-COMPLAIN-IF-RUNNING)" t nil)
19214 21937
21938(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "newst-backend" '("newsticker--" "newsticker-")))
21939
19215;;;*** 21940;;;***
19216 21941
19217;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" 21942;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el"
@@ -19223,6 +21948,8 @@ Start newsticker plainview.
19223 21948
19224\(fn)" t nil) 21949\(fn)" t nil)
19225 21950
21951(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "newst-plainview" '("newsticker-" "newsticker--")))
21952
19226;;;*** 21953;;;***
19227 21954
19228;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (0 0 0 21955;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (0 0 0
@@ -19234,6 +21961,8 @@ Start reading news. You may want to bind this to a key.
19234 21961
19235\(fn)" t nil) 21962\(fn)" t nil)
19236 21963
21964(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "newst-reader" '("newsticker-" "newsticker--")))
21965
19237;;;*** 21966;;;***
19238 21967
19239;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (0 0 0 21968;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (0 0 0
@@ -19255,6 +21984,8 @@ running already.
19255 21984
19256\(fn)" t nil) 21985\(fn)" t nil)
19257 21986
21987(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "newst-ticker" '("newsticker--" "newsticker-hide-" "newsticker-stop-ticker" "newsticker-scroll-smoothly" "newsticker-ticker-interval")))
21988
19258;;;*** 21989;;;***
19259 21990
19260;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (0 21991;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (0
@@ -19266,6 +21997,29 @@ Start newsticker treeview.
19266 21997
19267\(fn)" t nil) 21998\(fn)" t nil)
19268 21999
22000(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "newst-treeview" '("newsticker-treeview-" "newsticker--" "newsticker-group-" "newsticker-groups-filename" "newsticker-groups")))
22001
22002;;;***
22003
22004;;;### (autoloads nil "newsticker" "net/newsticker.el" (0 0 0 0))
22005;;; Generated autoloads from net/newsticker.el
22006
22007(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "newsticker" '("newsticker-version")))
22008
22009;;;***
22010
22011;;;### (autoloads nil "nnagent" "gnus/nnagent.el" (0 0 0 0))
22012;;; Generated autoloads from gnus/nnagent.el
22013
22014(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnagent" '("nnagent-")))
22015
22016;;;***
22017
22018;;;### (autoloads nil "nnbabyl" "gnus/nnbabyl.el" (0 0 0 0))
22019;;; Generated autoloads from gnus/nnbabyl.el
22020
22021(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnbabyl" '("nnbabyl-")))
22022
19269;;;*** 22023;;;***
19270 22024
19271;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (0 0 0 0)) 22025;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (0 0 0 0))
@@ -19276,6 +22030,15 @@ Generate NOV databases in all nndiary directories.
19276 22030
19277\(fn &optional SERVER)" t nil) 22031\(fn &optional SERVER)" t nil)
19278 22032
22033(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nndiary" '("nndiary-")))
22034
22035;;;***
22036
22037;;;### (autoloads nil "nndir" "gnus/nndir.el" (0 0 0 0))
22038;;; Generated autoloads from gnus/nndir.el
22039
22040(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nndir" '("nndir-")))
22041
19279;;;*** 22042;;;***
19280 22043
19281;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (0 0 0 0)) 22044;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (0 0 0 0))
@@ -19290,6 +22053,22 @@ symbol in the alist.
19290 22053
19291\(fn DEFINITION &optional POSITION)" nil nil) 22054\(fn DEFINITION &optional POSITION)" nil nil)
19292 22055
22056(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nndoc" '("nndoc-")))
22057
22058;;;***
22059
22060;;;### (autoloads nil "nndraft" "gnus/nndraft.el" (0 0 0 0))
22061;;; Generated autoloads from gnus/nndraft.el
22062
22063(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nndraft" '("nndraft-")))
22064
22065;;;***
22066
22067;;;### (autoloads nil "nneething" "gnus/nneething.el" (0 0 0 0))
22068;;; Generated autoloads from gnus/nneething.el
22069
22070(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nneething" '("nneething-")))
22071
19293;;;*** 22072;;;***
19294 22073
19295;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (0 0 0 0)) 22074;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (0 0 0 0))
@@ -19301,6 +22080,71 @@ This command does not work if you use short group names.
19301 22080
19302\(fn)" t nil) 22081\(fn)" t nil)
19303 22082
22083(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnfolder" '("nnfolder-")))
22084
22085;;;***
22086
22087;;;### (autoloads nil "nngateway" "gnus/nngateway.el" (0 0 0 0))
22088;;; Generated autoloads from gnus/nngateway.el
22089
22090(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nngateway" '("nngateway-")))
22091
22092;;;***
22093
22094;;;### (autoloads nil "nnheader" "gnus/nnheader.el" (0 0 0 0))
22095;;; Generated autoloads from gnus/nnheader.el
22096
22097(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnheader" '("nnheader-" "mail-header-" "gnus-" "make-" "nntp-")))
22098
22099;;;***
22100
22101;;;### (autoloads nil "nnimap" "gnus/nnimap.el" (0 0 0 0))
22102;;; Generated autoloads from gnus/nnimap.el
22103
22104(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnimap" '("nnimap-" "nnimap")))
22105
22106;;;***
22107
22108;;;### (autoloads nil "nnir" "gnus/nnir.el" (0 0 0 0))
22109;;; Generated autoloads from gnus/nnir.el
22110
22111(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnir" '("nnir-" "gnus-nnir-group-p" "gnus-group-make-nnir-group" "gnus-summary-create-nnir-group" "gnus-summary-make-nnir-group")))
22112
22113;;;***
22114
22115;;;### (autoloads nil "nnmail" "gnus/nnmail.el" (0 0 0 0))
22116;;; Generated autoloads from gnus/nnmail.el
22117
22118(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnmail" '("nnmail-")))
22119
22120;;;***
22121
22122;;;### (autoloads nil "nnmaildir" "gnus/nnmaildir.el" (0 0 0 0))
22123;;; Generated autoloads from gnus/nnmaildir.el
22124
22125(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnmaildir" '("nnmaildir--" "nnmaildir-")))
22126
22127;;;***
22128
22129;;;### (autoloads nil "nnmairix" "gnus/nnmairix.el" (0 0 0 0))
22130;;; Generated autoloads from gnus/nnmairix.el
22131
22132(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnmairix" '("nnmairix-")))
22133
22134;;;***
22135
22136;;;### (autoloads nil "nnmbox" "gnus/nnmbox.el" (0 0 0 0))
22137;;; Generated autoloads from gnus/nnmbox.el
22138
22139(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnmbox" '("nnmbox-")))
22140
22141;;;***
22142
22143;;;### (autoloads nil "nnmh" "gnus/nnmh.el" (0 0 0 0))
22144;;; Generated autoloads from gnus/nnmh.el
22145
22146(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnmh" '("nnmh-")))
22147
19304;;;*** 22148;;;***
19305 22149
19306;;;### (autoloads nil "nnml" "gnus/nnml.el" (0 0 0 0)) 22150;;;### (autoloads nil "nnml" "gnus/nnml.el" (0 0 0 0))
@@ -19311,6 +22155,71 @@ Generate NOV databases in all nnml directories.
19311 22155
19312\(fn &optional SERVER)" t nil) 22156\(fn &optional SERVER)" t nil)
19313 22157
22158(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnml" '("nnml-")))
22159
22160;;;***
22161
22162;;;### (autoloads nil "nnnil" "gnus/nnnil.el" (0 0 0 0))
22163;;; Generated autoloads from gnus/nnnil.el
22164
22165(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnnil" '("nnnil-")))
22166
22167;;;***
22168
22169;;;### (autoloads nil "nnoo" "gnus/nnoo.el" (0 0 0 0))
22170;;; Generated autoloads from gnus/nnoo.el
22171
22172(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnoo" '("nnoo-" "deffoo" "defvoo")))
22173
22174;;;***
22175
22176;;;### (autoloads nil "nnregistry" "gnus/nnregistry.el" (0 0 0 0))
22177;;; Generated autoloads from gnus/nnregistry.el
22178
22179(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnregistry" '("nnregistry-")))
22180
22181;;;***
22182
22183;;;### (autoloads nil "nnrss" "gnus/nnrss.el" (0 0 0 0))
22184;;; Generated autoloads from gnus/nnrss.el
22185
22186(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnrss" '("nnrss-")))
22187
22188;;;***
22189
22190;;;### (autoloads nil "nnspool" "gnus/nnspool.el" (0 0 0 0))
22191;;; Generated autoloads from gnus/nnspool.el
22192
22193(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnspool" '("nnspool-" "news-inews-program")))
22194
22195;;;***
22196
22197;;;### (autoloads nil "nntp" "gnus/nntp.el" (0 0 0 0))
22198;;; Generated autoloads from gnus/nntp.el
22199
22200(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nntp" '("nntp-" "nntp--report-1")))
22201
22202;;;***
22203
22204;;;### (autoloads nil "nnvirtual" "gnus/nnvirtual.el" (0 0 0 0))
22205;;; Generated autoloads from gnus/nnvirtual.el
22206
22207(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnvirtual" '("nnvirtual-")))
22208
22209;;;***
22210
22211;;;### (autoloads nil "nnweb" "gnus/nnweb.el" (0 0 0 0))
22212;;; Generated autoloads from gnus/nnweb.el
22213
22214(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nnweb" '("nnweb-")))
22215
22216;;;***
22217
22218;;;### (autoloads nil "notifications" "notifications.el" (0 0 0 0))
22219;;; Generated autoloads from notifications.el
22220
22221(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "notifications" '("notifications-")))
22222
19314;;;*** 22223;;;***
19315 22224
19316;;;### (autoloads nil "novice" "novice.el" (0 0 0 0)) 22225;;;### (autoloads nil "novice" "novice.el" (0 0 0 0))
@@ -19343,6 +22252,8 @@ future sessions.
19343 22252
19344\(fn COMMAND)" t nil) 22253\(fn COMMAND)" t nil)
19345 22254
22255(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "novice" '("en/disable-command")))
22256
19346;;;*** 22257;;;***
19347 22258
19348;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (0 0 22259;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (0 0
@@ -19358,12 +22269,37 @@ closing requests for requests that are used in matched pairs.
19358 22269
19359\(fn)" t nil) 22270\(fn)" t nil)
19360 22271
22272(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nroff-mode" '("nroff-")))
22273
22274;;;***
22275
22276;;;### (autoloads nil "nsm" "net/nsm.el" (0 0 0 0))
22277;;; Generated autoloads from net/nsm.el
22278
22279(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nsm" '("nsm-" "network-security-level")))
22280
19361;;;*** 22281;;;***
19362 22282
19363;;;### (autoloads nil "ntlm" "net/ntlm.el" (0 0 0 0)) 22283;;;### (autoloads nil "ntlm" "net/ntlm.el" (0 0 0 0))
19364;;; Generated autoloads from net/ntlm.el 22284;;; Generated autoloads from net/ntlm.el
19365(push (purecopy '(ntlm 2 0 0)) package--builtin-versions) 22285(push (purecopy '(ntlm 2 0 0)) package--builtin-versions)
19366 22286
22287(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ntlm" '("ntlm-")))
22288
22289;;;***
22290
22291;;;### (autoloads nil "nxml-enc" "nxml/nxml-enc.el" (0 0 0 0))
22292;;; Generated autoloads from nxml/nxml-enc.el
22293
22294(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nxml-enc" '("nxml-")))
22295
22296;;;***
22297
22298;;;### (autoloads nil "nxml-maint" "nxml/nxml-maint.el" (0 0 0 0))
22299;;; Generated autoloads from nxml/nxml-maint.el
22300
22301(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nxml-maint" '("nxml-insert-target-repertoire-glyph-set")))
22302
19367;;;*** 22303;;;***
19368 22304
19369;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (0 0 0 0)) 22305;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (0 0 0 0))
@@ -19424,6 +22360,385 @@ Many aspects this mode can be customized using
19424\(fn)" t nil) 22360\(fn)" t nil)
19425(defalias 'xml-mode 'nxml-mode) 22361(defalias 'xml-mode 'nxml-mode)
19426 22362
22363(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nxml-mode" '("nxml-")))
22364
22365;;;***
22366
22367;;;### (autoloads nil "nxml-ns" "nxml/nxml-ns.el" (0 0 0 0))
22368;;; Generated autoloads from nxml/nxml-ns.el
22369
22370(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nxml-ns" '("nxml-ns-")))
22371
22372;;;***
22373
22374;;;### (autoloads nil "nxml-outln" "nxml/nxml-outln.el" (0 0 0 0))
22375;;; Generated autoloads from nxml/nxml-outln.el
22376
22377(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nxml-outln" '("nxml-")))
22378
22379;;;***
22380
22381;;;### (autoloads nil "nxml-parse" "nxml/nxml-parse.el" (0 0 0 0))
22382;;; Generated autoloads from nxml/nxml-parse.el
22383
22384(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nxml-parse" '("nxml-parse-" "nxml-validate-" "nxml-make-name" "nxml-current-text-string" "nxml-check-xmltok-errors")))
22385
22386;;;***
22387
22388;;;### (autoloads nil "nxml-rap" "nxml/nxml-rap.el" (0 0 0 0))
22389;;; Generated autoloads from nxml/nxml-rap.el
22390
22391(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nxml-rap" '("nxml-")))
22392
22393;;;***
22394
22395;;;### (autoloads nil "nxml-util" "nxml/nxml-util.el" (0 0 0 0))
22396;;; Generated autoloads from nxml/nxml-util.el
22397
22398(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nxml-util" '("nxml-")))
22399
22400;;;***
22401
22402;;;### (autoloads nil "ob-C" "org/ob-C.el" (0 0 0 0))
22403;;; Generated autoloads from org/ob-C.el
22404
22405(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-C" '("org-babel-")))
22406
22407;;;***
22408
22409;;;### (autoloads nil "ob-R" "org/ob-R.el" (0 0 0 0))
22410;;; Generated autoloads from org/ob-R.el
22411
22412(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-R" '("org-babel-")))
22413
22414;;;***
22415
22416;;;### (autoloads nil "ob-asymptote" "org/ob-asymptote.el" (0 0 0
22417;;;;;; 0))
22418;;; Generated autoloads from org/ob-asymptote.el
22419
22420(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-asymptote" '("org-babel-asymptote-" "org-babel-default-header-args:asymptote" "org-babel-execute:asymptote" "org-babel-prep-session:asymptote" "org-babel-variable-assignments:asymptote")))
22421
22422;;;***
22423
22424;;;### (autoloads nil "ob-awk" "org/ob-awk.el" (0 0 0 0))
22425;;; Generated autoloads from org/ob-awk.el
22426
22427(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-awk" '("org-babel-expand-body:awk" "org-babel-execute:awk" "org-babel-awk-command" "org-babel-awk-var-to-awk" "org-babel-awk-table-or-string")))
22428
22429;;;***
22430
22431;;;### (autoloads nil "ob-calc" "org/ob-calc.el" (0 0 0 0))
22432;;; Generated autoloads from org/ob-calc.el
22433
22434(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-calc" '("org-babel-default-header-args:calc" "org-babel-expand-body:calc" "org-babel-execute:calc" "org-babel-calc-maybe-resolve-var")))
22435
22436;;;***
22437
22438;;;### (autoloads nil "ob-clojure" "org/ob-clojure.el" (0 0 0 0))
22439;;; Generated autoloads from org/ob-clojure.el
22440
22441(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-clojure" '("org-babel-default-header-args:clojure" "org-babel-header-args:clojure" "org-babel-expand-body:clojure" "org-babel-execute:clojure")))
22442
22443;;;***
22444
22445;;;### (autoloads nil "ob-comint" "org/ob-comint.el" (0 0 0 0))
22446;;; Generated autoloads from org/ob-comint.el
22447
22448(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-comint" '("org-babel-comint-")))
22449
22450;;;***
22451
22452;;;### (autoloads "actual autoloads are elsewhere" "ob-core" "org/ob-core.el"
22453;;;;;; (22328 19625 652549 735000))
22454;;; Generated autoloads from org/ob-core.el
22455
22456(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-core" '("org-babel-" "org-confirm-babel-evaluate")))
22457
22458;;;***
22459
22460;;;### (autoloads nil "ob-css" "org/ob-css.el" (0 0 0 0))
22461;;; Generated autoloads from org/ob-css.el
22462
22463(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-css" '("org-babel-default-header-args:css" "org-babel-execute:css" "org-babel-prep-session:css")))
22464
22465;;;***
22466
22467;;;### (autoloads nil "ob-ditaa" "org/ob-ditaa.el" (0 0 0 0))
22468;;; Generated autoloads from org/ob-ditaa.el
22469
22470(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ditaa" '("org-babel-" "org-ditaa-jar-option" "org-ditaa-jar-path" "org-ditaa-eps-jar-path")))
22471
22472;;;***
22473
22474;;;### (autoloads nil "ob-dot" "org/ob-dot.el" (0 0 0 0))
22475;;; Generated autoloads from org/ob-dot.el
22476
22477(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-dot" '("org-babel-default-header-args:dot" "org-babel-expand-body:dot" "org-babel-execute:dot" "org-babel-prep-session:dot")))
22478
22479;;;***
22480
22481;;;### (autoloads nil "ob-emacs-lisp" "org/ob-emacs-lisp.el" (0 0
22482;;;;;; 0 0))
22483;;; Generated autoloads from org/ob-emacs-lisp.el
22484
22485(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-emacs-lisp" '("org-babel-execute:emacs-lisp" "org-babel-expand-body:emacs-lisp" "org-babel-default-header-args:emacs-lisp")))
22486
22487;;;***
22488
22489;;;### (autoloads nil "ob-eval" "org/ob-eval.el" (0 0 0 0))
22490;;; Generated autoloads from org/ob-eval.el
22491
22492(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-eval" '("org-babel-eval-" "org-babel-error-buffer-name" "org-babel-eval" "org-babel--shell-command-on-region")))
22493
22494;;;***
22495
22496;;;### (autoloads nil "ob-exp" "org/ob-exp.el" (0 0 0 0))
22497;;; Generated autoloads from org/ob-exp.el
22498
22499(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-exp" '("org-babel-exp-" "org-babel-in-example-or-verbatim" "org-export-babel-evaluate")))
22500
22501;;;***
22502
22503;;;### (autoloads nil "ob-fortran" "org/ob-fortran.el" (0 0 0 0))
22504;;; Generated autoloads from org/ob-fortran.el
22505
22506(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-fortran" '("org-babel-")))
22507
22508;;;***
22509
22510;;;### (autoloads nil "ob-gnuplot" "org/ob-gnuplot.el" (0 0 0 0))
22511;;; Generated autoloads from org/ob-gnuplot.el
22512
22513(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-gnuplot" '("org-babel-" "*org-babel-gnuplot-missing*" "*org-babel-gnuplot-terms*")))
22514
22515;;;***
22516
22517;;;### (autoloads nil "ob-haskell" "org/ob-haskell.el" (0 0 0 0))
22518;;; Generated autoloads from org/ob-haskell.el
22519
22520(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-haskell" '("org-babel-")))
22521
22522;;;***
22523
22524;;;### (autoloads nil "ob-io" "org/ob-io.el" (0 0 0 0))
22525;;; Generated autoloads from org/ob-io.el
22526
22527(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-io" '("org-babel-io-" "org-babel-default-header-args:io" "org-babel-execute:io" "org-babel-prep-session:io")))
22528
22529;;;***
22530
22531;;;### (autoloads nil "ob-java" "org/ob-java.el" (0 0 0 0))
22532;;; Generated autoloads from org/ob-java.el
22533
22534(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-java" '("org-babel-execute:java" "org-babel-java-command" "org-babel-java-compiler")))
22535
22536;;;***
22537
22538;;;### (autoloads nil "ob-js" "org/ob-js.el" (0 0 0 0))
22539;;; Generated autoloads from org/ob-js.el
22540
22541(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-js" '("org-babel-js-" "org-babel-default-header-args:js" "org-babel-execute:js" "org-babel-prep-session:js" "org-babel-variable-assignments:js")))
22542
22543;;;***
22544
22545;;;### (autoloads "actual autoloads are elsewhere" "ob-keys" "org/ob-keys.el"
22546;;;;;; (22164 57535 139192 607000))
22547;;; Generated autoloads from org/ob-keys.el
22548
22549(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-keys" '("org-babel-map" "org-babel-key-prefix" "org-babel-key-bindings")))
22550
22551;;;***
22552
22553;;;### (autoloads nil "ob-latex" "org/ob-latex.el" (0 0 0 0))
22554;;; Generated autoloads from org/ob-latex.el
22555
22556(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-latex" '("org-babel-" "convert-pdf")))
22557
22558;;;***
22559
22560;;;### (autoloads nil "ob-ledger" "org/ob-ledger.el" (0 0 0 0))
22561;;; Generated autoloads from org/ob-ledger.el
22562
22563(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ledger" '("org-babel-default-header-args:ledger" "org-babel-execute:ledger" "org-babel-prep-session:ledger")))
22564
22565;;;***
22566
22567;;;### (autoloads nil "ob-lilypond" "org/ob-lilypond.el" (0 0 0 0))
22568;;; Generated autoloads from org/ob-lilypond.el
22569
22570(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-lilypond" '("org-babel-" "lilypond-mode")))
22571
22572;;;***
22573
22574;;;### (autoloads nil "ob-lisp" "org/ob-lisp.el" (0 0 0 0))
22575;;; Generated autoloads from org/ob-lisp.el
22576
22577(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-lisp" '("org-babel-lisp-" "org-babel-default-header-args:lisp" "org-babel-header-args:lisp" "org-babel-expand-body:lisp" "org-babel-execute:lisp")))
22578
22579;;;***
22580
22581;;;### (autoloads "actual autoloads are elsewhere" "ob-lob" "org/ob-lob.el"
22582;;;;;; (22164 57535 143192 607000))
22583;;; Generated autoloads from org/ob-lob.el
22584
22585(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-lob" '("org-babel-lob-" "org-babel-inline-lob-one-liner-regexp" "org-babel-block-lob-one-liner-regexp" "org-babel-default-lob-header-args" "org-babel-library-of-babel")))
22586
22587;;;***
22588
22589;;;### (autoloads nil "ob-makefile" "org/ob-makefile.el" (0 0 0 0))
22590;;; Generated autoloads from org/ob-makefile.el
22591
22592(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-makefile" '("org-babel-default-header-args:makefile" "org-babel-execute:makefile" "org-babel-prep-session:makefile")))
22593
22594;;;***
22595
22596;;;### (autoloads nil "ob-maxima" "org/ob-maxima.el" (0 0 0 0))
22597;;; Generated autoloads from org/ob-maxima.el
22598
22599(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-maxima" '("org-babel-maxima-" "org-babel-default-header-args:maxima" "org-babel-execute:maxima" "org-babel-prep-session:maxima")))
22600
22601;;;***
22602
22603;;;### (autoloads nil "ob-mscgen" "org/ob-mscgen.el" (0 0 0 0))
22604;;; Generated autoloads from org/ob-mscgen.el
22605
22606(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-mscgen" '("org-babel-default-header-args:mscgen" "org-babel-execute:mscgen" "org-babel-prep-session:mscgen")))
22607
22608;;;***
22609
22610;;;### (autoloads nil "ob-ocaml" "org/ob-ocaml.el" (0 0 0 0))
22611;;; Generated autoloads from org/ob-ocaml.el
22612
22613(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ocaml" '("org-babel-ocaml-" "org-babel-default-header-args:ocaml" "org-babel-execute:ocaml" "org-babel-prep-session:ocaml" "org-babel-variable-assignments:ocaml")))
22614
22615;;;***
22616
22617;;;### (autoloads nil "ob-octave" "org/ob-octave.el" (0 0 0 0))
22618;;; Generated autoloads from org/ob-octave.el
22619
22620(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-octave" '("org-babel-")))
22621
22622;;;***
22623
22624;;;### (autoloads nil "ob-org" "org/ob-org.el" (0 0 0 0))
22625;;; Generated autoloads from org/ob-org.el
22626
22627(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-org" '("org-babel-default-header-args:org" "org-babel-org-default-header" "org-babel-expand-body:org" "org-babel-execute:org" "org-babel-prep-session:org")))
22628
22629;;;***
22630
22631;;;### (autoloads nil "ob-perl" "org/ob-perl.el" (0 0 0 0))
22632;;; Generated autoloads from org/ob-perl.el
22633
22634(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-perl" '("org-babel-")))
22635
22636;;;***
22637
22638;;;### (autoloads nil "ob-picolisp" "org/ob-picolisp.el" (0 0 0 0))
22639;;; Generated autoloads from org/ob-picolisp.el
22640
22641(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-picolisp" '("org-babel-picolisp-initiate-session" "org-babel-picolisp-cmd" "org-babel-picolisp-eoe" "org-babel-execute:picolisp" "org-babel-expand-body:picolisp")))
22642
22643;;;***
22644
22645;;;### (autoloads nil "ob-plantuml" "org/ob-plantuml.el" (0 0 0 0))
22646;;; Generated autoloads from org/ob-plantuml.el
22647
22648(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-plantuml" '("org-babel-default-header-args:plantuml" "org-babel-execute:plantuml" "org-babel-prep-session:plantuml" "org-plantuml-jar-path")))
22649
22650;;;***
22651
22652;;;### (autoloads nil "ob-python" "org/ob-python.el" (0 0 0 0))
22653;;; Generated autoloads from org/ob-python.el
22654
22655(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-python" '("org-babel-")))
22656
22657;;;***
22658
22659;;;### (autoloads nil "ob-ref" "org/ob-ref.el" (0 0 0 0))
22660;;; Generated autoloads from org/ob-ref.el
22661
22662(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ref" '("org-babel-ref-" "org-babel-update-intermediate")))
22663
22664;;;***
22665
22666;;;### (autoloads nil "ob-ruby" "org/ob-ruby.el" (0 0 0 0))
22667;;; Generated autoloads from org/ob-ruby.el
22668
22669(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ruby" '("org-babel-")))
22670
22671;;;***
22672
22673;;;### (autoloads nil "ob-sass" "org/ob-sass.el" (0 0 0 0))
22674;;; Generated autoloads from org/ob-sass.el
22675
22676(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sass" '("org-babel-default-header-args:sass" "org-babel-execute:sass" "org-babel-prep-session:sass")))
22677
22678;;;***
22679
22680;;;### (autoloads nil "ob-scala" "org/ob-scala.el" (0 0 0 0))
22681;;; Generated autoloads from org/ob-scala.el
22682
22683(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-scala" '("org-babel-scala-" "org-babel-default-header-args:scala" "org-babel-execute:scala" "org-babel-prep-session:scala")))
22684
22685;;;***
22686
22687;;;### (autoloads nil "ob-scheme" "org/ob-scheme.el" (0 0 0 0))
22688;;; Generated autoloads from org/ob-scheme.el
22689
22690(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-scheme" '("org-babel-scheme-" "org-babel-default-header-args:scheme" "org-babel-expand-body:scheme" "org-babel-execute:scheme")))
22691
22692;;;***
22693
22694;;;### (autoloads nil "ob-screen" "org/ob-screen.el" (0 0 0 0))
22695;;; Generated autoloads from org/ob-screen.el
22696
22697(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-screen" '("org-babel-screen-" "org-babel-default-header-args:screen" "org-babel-execute:screen" "org-babel-prep-session:screen")))
22698
22699;;;***
22700
22701;;;### (autoloads nil "ob-sh" "org/ob-sh.el" (0 0 0 0))
22702;;; Generated autoloads from org/ob-sh.el
22703
22704(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sh" '("org-babel-")))
22705
22706;;;***
22707
22708;;;### (autoloads nil "ob-shen" "org/ob-shen.el" (0 0 0 0))
22709;;; Generated autoloads from org/ob-shen.el
22710
22711(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-shen" '("org-babel-default-header-args:shen" "org-babel-expand-body:shen" "org-babel-shen-var-to-shen" "org-babel-execute:shen")))
22712
22713;;;***
22714
22715;;;### (autoloads nil "ob-sql" "org/ob-sql.el" (0 0 0 0))
22716;;; Generated autoloads from org/ob-sql.el
22717
22718(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sql" '("org-babel-" "dbstring-mysql")))
22719
22720;;;***
22721
22722;;;### (autoloads nil "ob-sqlite" "org/ob-sqlite.el" (0 0 0 0))
22723;;; Generated autoloads from org/ob-sqlite.el
22724
22725(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sqlite" '("org-babel-")))
22726
22727;;;***
22728
22729;;;### (autoloads nil "ob-table" "org/ob-table.el" (0 0 0 0))
22730;;; Generated autoloads from org/ob-table.el
22731
22732(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-table" '("org-babel-table-truncate-at-newline" "org-sbe")))
22733
22734;;;***
22735
22736;;;### (autoloads "actual autoloads are elsewhere" "ob-tangle" "org/ob-tangle.el"
22737;;;;;; (22328 19625 716549 735000))
22738;;; Generated autoloads from org/ob-tangle.el
22739
22740(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-tangle" '("org-babel-")))
22741
19427;;;*** 22742;;;***
19428 22743
19429;;;### (autoloads nil "octave" "progmodes/octave.el" (0 0 0 0)) 22744;;;### (autoloads nil "octave" "progmodes/octave.el" (0 0 0 0))
@@ -19461,6 +22776,15 @@ startup file, `~/.emacs-octave'.
19461 22776
19462(defalias 'run-octave 'inferior-octave) 22777(defalias 'run-octave 'inferior-octave)
19463 22778
22779(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "octave" '("octave-" "inferior-octave-" "octave--indent-new-comment-line" "octave--block-offset-keywords")))
22780
22781;;;***
22782
22783;;;### (autoloads nil "ogonek" "international/ogonek.el" (0 0 0 0))
22784;;; Generated autoloads from international/ogonek.el
22785
22786(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ogonek" '("ogonek-")))
22787
19464;;;*** 22788;;;***
19465 22789
19466;;;### (autoloads nil "opascal" "progmodes/opascal.el" (0 0 0 0)) 22790;;;### (autoloads nil "opascal" "progmodes/opascal.el" (0 0 0 0))
@@ -19496,6 +22820,8 @@ Coloring:
19496 22820
19497\(fn)" t nil) 22821\(fn)" t nil)
19498 22822
22823(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "opascal" '("opascal-" "opascal--literal-start-re" "opascal--syntax-propertize")))
22824
19499;;;*** 22825;;;***
19500 22826
19501;;;### (autoloads nil "org" "org/org.el" (0 0 0 0)) 22827;;;### (autoloads nil "org" "org/org.el" (0 0 0 0))
@@ -19717,6 +23043,8 @@ Call the customize function with org as argument.
19717 23043
19718\(fn)" t nil) 23044\(fn)" t nil)
19719 23045
23046(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org" '("org-" "orgstruct-" "orgstruct++-mode" "org<>" "turn-on-org-cdlatex")))
23047
19720;;;*** 23048;;;***
19721 23049
19722;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (0 0 0 0)) 23050;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (0 0 0 0))
@@ -19990,6 +23318,39 @@ to override `appt-message-warning-time'.
19990 23318
19991\(fn &optional REFRESH FILTER &rest ARGS)" t nil) 23319\(fn &optional REFRESH FILTER &rest ARGS)" t nil)
19992 23320
23321(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-agenda" '("org-")))
23322
23323;;;***
23324
23325;;;### (autoloads "actual autoloads are elsewhere" "org-archive"
23326;;;;;; "org/org-archive.el" (22164 57535 151192 607000))
23327;;; Generated autoloads from org/org-archive.el
23328
23329(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-archive" '("org-archive-" "org-extract-archive-heading" "org-extract-archive-file" "org-all-archive-files" "org-get-local-archive-location")))
23330
23331;;;***
23332
23333;;;### (autoloads "actual autoloads are elsewhere" "org-attach" "org/org-attach.el"
23334;;;;;; (22164 57535 151192 607000))
23335;;; Generated autoloads from org/org-attach.el
23336
23337(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-attach" '("org-attach-")))
23338
23339;;;***
23340
23341;;;### (autoloads "actual autoloads are elsewhere" "org-bbdb" "org/org-bbdb.el"
23342;;;;;; (22164 57535 151192 607000))
23343;;; Generated autoloads from org/org-bbdb.el
23344
23345(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-bbdb" '("org-bbdb-")))
23346
23347;;;***
23348
23349;;;### (autoloads nil "org-bibtex" "org/org-bibtex.el" (0 0 0 0))
23350;;; Generated autoloads from org/org-bibtex.el
23351
23352(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-bibtex" '("org-bibtex-" "org-create-file-search-in-bibtex" "org-execute-file-search-in-bibtex" "org-bibtex")))
23353
19993;;;*** 23354;;;***
19994 23355
19995;;;### (autoloads nil "org-capture" "org/org-capture.el" (0 0 0 0)) 23356;;;### (autoloads nil "org-capture" "org/org-capture.el" (0 0 0 0))
@@ -20032,6 +23393,16 @@ Set `org-capture-templates' to be similar to `org-remember-templates'.
20032 23393
20033\(fn)" t nil) 23394\(fn)" t nil)
20034 23395
23396(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-capture" '("org-capture-" "org-capture--expand-keyword-in-embedded-elisp" "org-mks")))
23397
23398;;;***
23399
23400;;;### (autoloads "actual autoloads are elsewhere" "org-clock" "org/org-clock.el"
23401;;;;;; (22328 19625 764549 735000))
23402;;; Generated autoloads from org/org-clock.el
23403
23404(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-clock" '("org-")))
23405
20035;;;*** 23406;;;***
20036 23407
20037;;;### (autoloads nil "org-colview" "org/org-colview.el" (0 0 0 0)) 23408;;;### (autoloads nil "org-colview" "org/org-colview.el" (0 0 0 0))
@@ -20095,6 +23466,8 @@ Turn on or update column view in the agenda.
20095 23466
20096\(fn)" t nil) 23467\(fn)" t nil)
20097 23468
23469(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-colview" '("org-")))
23470
20098;;;*** 23471;;;***
20099 23472
20100;;;### (autoloads nil "org-compat" "org/org-compat.el" (0 0 0 0)) 23473;;;### (autoloads nil "org-compat" "org/org-compat.el" (0 0 0 0))
@@ -20105,6 +23478,150 @@ Try very hard to provide sensible version strings.
20105 23478
20106\(fn)" nil t) 23479\(fn)" nil t)
20107 23480
23481(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-compat" '("org-")))
23482
23483;;;***
23484
23485;;;### (autoloads nil "org-crypt" "org/org-crypt.el" (0 0 0 0))
23486;;; Generated autoloads from org/org-crypt.el
23487
23488(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-crypt" '("org-crypt-" "org-encrypt-" "org-at-encrypted-entry-p" "org-decrypt-entries" "org-decrypt-entry")))
23489
23490;;;***
23491
23492;;;### (autoloads nil "org-ctags" "org/org-ctags.el" (0 0 0 0))
23493;;; Generated autoloads from org/org-ctags.el
23494
23495(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-ctags" '("org-ctags-" "y-or-n-minibuffer")))
23496
23497;;;***
23498
23499;;;### (autoloads "actual autoloads are elsewhere" "org-datetree"
23500;;;;;; "org/org-datetree.el" (22164 57535 155192 607000))
23501;;; Generated autoloads from org/org-datetree.el
23502
23503(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-datetree" '("org-datetree-")))
23504
23505;;;***
23506
23507;;;### (autoloads nil "org-docview" "org/org-docview.el" (0 0 0 0))
23508;;; Generated autoloads from org/org-docview.el
23509
23510(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-docview" '("org-docview-export" "org-docview-open" "org-docview-store-link" "org-docview-complete-link")))
23511
23512;;;***
23513
23514;;;### (autoloads "actual autoloads are elsewhere" "org-element"
23515;;;;;; "org/org-element.el" (22189 60738 609741 19000))
23516;;; Generated autoloads from org/org-element.el
23517
23518(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-element" '("org-element-" "org-element--")))
23519
23520;;;***
23521
23522;;;### (autoloads nil "org-entities" "org/org-entities.el" (0 0 0
23523;;;;;; 0))
23524;;; Generated autoloads from org/org-entities.el
23525
23526(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-entities" '("org-entities-" "org-entity-" "replace-amp" "org-entities")))
23527
23528;;;***
23529
23530;;;### (autoloads nil "org-eshell" "org/org-eshell.el" (0 0 0 0))
23531;;; Generated autoloads from org/org-eshell.el
23532
23533(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-eshell" '("org-eshell-open" "org-eshell-store-link")))
23534
23535;;;***
23536
23537;;;### (autoloads nil "org-faces" "org/org-faces.el" (0 0 0 0))
23538;;; Generated autoloads from org/org-faces.el
23539
23540(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-faces" '("org-")))
23541
23542;;;***
23543
23544;;;### (autoloads "actual autoloads are elsewhere" "org-feed" "org/org-feed.el"
23545;;;;;; (22328 19625 780549 735000))
23546;;; Generated autoloads from org/org-feed.el
23547
23548(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-feed" '("org-feed-")))
23549
23550;;;***
23551
23552;;;### (autoloads "actual autoloads are elsewhere" "org-footnote"
23553;;;;;; "org/org-footnote.el" (22164 57535 159192 607000))
23554;;; Generated autoloads from org/org-footnote.el
23555
23556(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-footnote" '("org-footnote-")))
23557
23558;;;***
23559
23560;;;### (autoloads nil "org-gnus" "org/org-gnus.el" (0 0 0 0))
23561;;; Generated autoloads from org/org-gnus.el
23562
23563(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-gnus" '("org-gnus-")))
23564
23565;;;***
23566
23567;;;### (autoloads nil "org-habit" "org/org-habit.el" (0 0 0 0))
23568;;; Generated autoloads from org/org-habit.el
23569
23570(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-habit" '("org-habit-" "org-is-habit-p")))
23571
23572;;;***
23573
23574;;;### (autoloads "actual autoloads are elsewhere" "org-id" "org/org-id.el"
23575;;;;;; (22164 57535 159192 607000))
23576;;; Generated autoloads from org/org-id.el
23577
23578(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-id" '("org-id-")))
23579
23580;;;***
23581
23582;;;### (autoloads "actual autoloads are elsewhere" "org-indent" "org/org-indent.el"
23583;;;;;; (22164 57535 159192 607000))
23584;;; Generated autoloads from org/org-indent.el
23585
23586(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-indent" '("org-indent-" "org-hide-leading-stars-before-indent-mode")))
23587
23588;;;***
23589
23590;;;### (autoloads nil "org-info" "org/org-info.el" (0 0 0 0))
23591;;; Generated autoloads from org/org-info.el
23592
23593(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-info" '("org-info-store-link" "org-info-open" "org-info-follow-link")))
23594
23595;;;***
23596
23597;;;### (autoloads nil "org-inlinetask" "org/org-inlinetask.el" (0
23598;;;;;; 0 0 0))
23599;;; Generated autoloads from org/org-inlinetask.el
23600
23601(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-inlinetask" '("org-inlinetask-")))
23602
23603;;;***
23604
23605;;;### (autoloads "actual autoloads are elsewhere" "org-irc" "org/org-irc.el"
23606;;;;;; (22164 57535 163192 607000))
23607;;; Generated autoloads from org/org-irc.el
23608
23609(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-irc" '("org-irc-")))
23610
23611;;;***
23612
23613;;;### (autoloads nil "org-list" "org/org-list.el" (0 0 0 0))
23614;;; Generated autoloads from org/org-list.el
23615
23616(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-list" '("org-")))
23617
23618;;;***
23619
23620;;;### (autoloads nil "org-macro" "org/org-macro.el" (0 0 0 0))
23621;;; Generated autoloads from org/org-macro.el
23622
23623(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-macro" '("org-macro-templates" "org-macro-initialize-templates" "org-macro-expand" "org-macro-replace-all" "org-macro--collect-macros")))
23624
20108;;;*** 23625;;;***
20109 23626
20110;;;### (autoloads nil "org-macs" "org/org-macs.el" (0 0 0 0)) 23627;;;### (autoloads nil "org-macs" "org/org-macs.el" (0 0 0 0))
@@ -20115,6 +23632,84 @@ Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX a
20115 23632
20116\(fn FILE)" nil t) 23633\(fn FILE)" nil t)
20117 23634
23635(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-macs" '("org-")))
23636
23637;;;***
23638
23639;;;### (autoloads nil "org-mhe" "org/org-mhe.el" (0 0 0 0))
23640;;; Generated autoloads from org/org-mhe.el
23641
23642(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-mhe" '("org-mhe-get-" "org-mhe-follow-link" "org-mhe-open" "org-mhe-store-link" "org-mhe-search-all-folders")))
23643
23644;;;***
23645
23646;;;### (autoloads "actual autoloads are elsewhere" "org-mobile" "org/org-mobile.el"
23647;;;;;; (22189 60738 629741 19000))
23648;;; Generated autoloads from org/org-mobile.el
23649
23650(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-mobile" '("org-mobile-")))
23651
23652;;;***
23653
23654;;;### (autoloads nil "org-mouse" "org/org-mouse.el" (0 0 0 0))
23655;;; Generated autoloads from org/org-mouse.el
23656
23657(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-mouse" '("org-mouse-")))
23658
23659;;;***
23660
23661;;;### (autoloads nil "org-pcomplete" "org/org-pcomplete.el" (0 0
23662;;;;;; 0 0))
23663;;; Generated autoloads from org/org-pcomplete.el
23664
23665(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-pcomplete" '("pcomplete/org-mode/" "org-pcomplete-" "org-thing-at-point" "org-command-at-point" "org-parse-arguments")))
23666
23667;;;***
23668
23669;;;### (autoloads "actual autoloads are elsewhere" "org-plot" "org/org-plot.el"
23670;;;;;; (22164 57535 163192 607000))
23671;;; Generated autoloads from org/org-plot.el
23672
23673(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-plot" '("org-plot/" "org-plot-quote-tsv-field" "org-plot-quote-timestamp-field" "org-plot-timestamp-fmt")))
23674
23675;;;***
23676
23677;;;### (autoloads nil "org-protocol" "org/org-protocol.el" (0 0 0
23678;;;;;; 0))
23679;;; Generated autoloads from org/org-protocol.el
23680
23681(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-protocol" '("org-protocol-")))
23682
23683;;;***
23684
23685;;;### (autoloads nil "org-rmail" "org/org-rmail.el" (0 0 0 0))
23686;;; Generated autoloads from org/org-rmail.el
23687
23688(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-rmail" '("org-rmail-store-link" "org-rmail-open" "org-rmail-follow-link")))
23689
23690;;;***
23691
23692;;;### (autoloads nil "org-src" "org/org-src.el" (0 0 0 0))
23693;;; Generated autoloads from org/org-src.el
23694
23695(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-src" '("org-src-" "org-escape-code-in-" "org-unescape-code-in-" "org-edit-" "org-coderef-label-format")))
23696
23697;;;***
23698
23699;;;### (autoloads "actual autoloads are elsewhere" "org-table" "org/org-table.el"
23700;;;;;; (22164 57535 167192 607000))
23701;;; Generated autoloads from org/org-table.el
23702
23703(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-table" '("orgtbl-" "org-" "*orgtbl-")))
23704
23705;;;***
23706
23707;;;### (autoloads "actual autoloads are elsewhere" "org-timer" "org/org-timer.el"
23708;;;;;; (22320 25516 956613 268000))
23709;;; Generated autoloads from org/org-timer.el
23710
23711(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-timer" '("org-timer-")))
23712
20118;;;*** 23713;;;***
20119 23714
20120;;;### (autoloads nil "org-version" "org/org-version.el" (0 0 0 0)) 23715;;;### (autoloads nil "org-version" "org/org-version.el" (0 0 0 0))
@@ -20134,6 +23729,13 @@ The Git version of org-mode.
20134 23729
20135;;;*** 23730;;;***
20136 23731
23732;;;### (autoloads nil "org-w3m" "org/org-w3m.el" (0 0 0 0))
23733;;; Generated autoloads from org/org-w3m.el
23734
23735(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-w3m" '("org-w3m-get-" "org-w3m-store-link" "org-w3m-copy-for-org-mode" "org-w3m-no-next-link-p" "org-w3m-no-prev-link-p")))
23736
23737;;;***
23738
20137;;;### (autoloads nil "outline" "outline.el" (0 0 0 0)) 23739;;;### (autoloads nil "outline" "outline.el" (0 0 0 0))
20138;;; Generated autoloads from outline.el 23740;;; Generated autoloads from outline.el
20139(put 'outline-regexp 'safe-local-variable 'stringp) 23741(put 'outline-regexp 'safe-local-variable 'stringp)
@@ -20175,6 +23777,104 @@ See the command `outline-mode' for more information on this mode.
20175\(fn &optional ARG)" t nil) 23777\(fn &optional ARG)" t nil)
20176(put 'outline-level 'risky-local-variable t) 23778(put 'outline-level 'risky-local-variable t)
20177 23779
23780(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "outline" '("outline-")))
23781
23782;;;***
23783
23784;;;### (autoloads "actual autoloads are elsewhere" "ox" "org/ox.el"
23785;;;;;; (22189 60739 13741 19000))
23786;;; Generated autoloads from org/ox.el
23787
23788(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox" '("org-export-" "org-export--")))
23789
23790;;;***
23791
23792;;;### (autoloads "actual autoloads are elsewhere" "ox-ascii" "org/ox-ascii.el"
23793;;;;;; (22189 60738 961741 19000))
23794;;; Generated autoloads from org/ox-ascii.el
23795
23796(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-ascii" '("org-ascii-" "org-ascii--")))
23797
23798;;;***
23799
23800;;;### (autoloads "actual autoloads are elsewhere" "ox-beamer" "org/ox-beamer.el"
23801;;;;;; (22164 57535 195192 607000))
23802;;; Generated autoloads from org/ox-beamer.el
23803
23804(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-beamer" '("org-beamer-" "org-beamer--")))
23805
23806;;;***
23807
23808;;;### (autoloads "actual autoloads are elsewhere" "ox-html" "org/ox-html.el"
23809;;;;;; (22164 57535 195192 607000))
23810;;; Generated autoloads from org/ox-html.el
23811
23812(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-html" '("org-html-" "org-html--")))
23813
23814;;;***
23815
23816;;;### (autoloads "actual autoloads are elsewhere" "ox-icalendar"
23817;;;;;; "org/ox-icalendar.el" (22274 16187 224759 99000))
23818;;; Generated autoloads from org/ox-icalendar.el
23819
23820(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-icalendar" '("org-icalendar-" "org-icalendar--")))
23821
23822;;;***
23823
23824;;;### (autoloads "actual autoloads are elsewhere" "ox-latex" "org/ox-latex.el"
23825;;;;;; (22164 57535 199192 607000))
23826;;; Generated autoloads from org/ox-latex.el
23827
23828(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-latex" '("org-latex-" "org-latex--")))
23829
23830;;;***
23831
23832;;;### (autoloads "actual autoloads are elsewhere" "ox-man" "org/ox-man.el"
23833;;;;;; (22164 57535 199192 607000))
23834;;; Generated autoloads from org/ox-man.el
23835
23836(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-man" '("org-man-" "org-man--wrap-label" "org-man--caption/label-string")))
23837
23838;;;***
23839
23840;;;### (autoloads "actual autoloads are elsewhere" "ox-md" "org/ox-md.el"
23841;;;;;; (22164 57535 199192 607000))
23842;;; Generated autoloads from org/ox-md.el
23843
23844(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-md" '("org-md-")))
23845
23846;;;***
23847
23848;;;### (autoloads "actual autoloads are elsewhere" "ox-odt" "org/ox-odt.el"
23849;;;;;; (22164 57535 203192 607000))
23850;;; Generated autoloads from org/ox-odt.el
23851
23852(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-odt" '("org-odt-" "org-odt--")))
23853
23854;;;***
23855
23856;;;### (autoloads "actual autoloads are elsewhere" "ox-org" "org/ox-org.el"
23857;;;;;; (22328 19625 860549 735000))
23858;;; Generated autoloads from org/ox-org.el
23859
23860(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-org" '("org-org-section" "org-org-keyword" "org-org-headline" "org-org-identity" "org-org-htmlized-css-url")))
23861
23862;;;***
23863
23864;;;### (autoloads "actual autoloads are elsewhere" "ox-publish" "org/ox-publish.el"
23865;;;;;; (22189 60738 997741 19000))
23866;;; Generated autoloads from org/ox-publish.el
23867
23868(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-publish" '("org-publish-")))
23869
23870;;;***
23871
23872;;;### (autoloads "actual autoloads are elsewhere" "ox-texinfo" "org/ox-texinfo.el"
23873;;;;;; (22164 57535 203192 607000))
23874;;; Generated autoloads from org/ox-texinfo.el
23875
23876(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-texinfo" '("org-texinfo-" "org-texinfo--")))
23877
20178;;;*** 23878;;;***
20179 23879
20180;;;### (autoloads nil "package" "emacs-lisp/package.el" (0 0 0 0)) 23880;;;### (autoloads nil "package" "emacs-lisp/package.el" (0 0 0 0))
@@ -20293,6 +23993,23 @@ The list is displayed in a buffer named `*Packages*'.
20293 23993
20294(defalias 'package-list-packages 'list-packages) 23994(defalias 'package-list-packages 'list-packages)
20295 23995
23996(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "package" '("package--" "package-" "describe-package-1" "bad-signature" "define-package")))
23997
23998;;;***
23999
24000;;;### (autoloads nil "package-x" "emacs-lisp/package-x.el" (0 0
24001;;;;;; 0 0))
24002;;; Generated autoloads from emacs-lisp/package-x.el
24003
24004(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "package-x" '("package-" "package--archive-contents-from-" "package--make-" "package--update-" "package--encode")))
24005
24006;;;***
24007
24008;;;### (autoloads nil "page-ext" "textmodes/page-ext.el" (0 0 0 0))
24009;;; Generated autoloads from textmodes/page-ext.el
24010
24011(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "page-ext" '("pages-" "sort-pages-" "set-page-delimiter" "original-page-delimiter" "search-pages" "add-new-page" "previous-page" "next-page" "ctl-x-ctl-p-map")))
24012
20296;;;*** 24013;;;***
20297 24014
20298;;;### (autoloads nil "paren" "paren.el" (0 0 0 0)) 24015;;;### (autoloads nil "paren" "paren.el" (0 0 0 0))
@@ -20320,6 +24037,8 @@ matching parenthesis is highlighted in `show-paren-style' after
20320 24037
20321\(fn &optional ARG)" t nil) 24038\(fn &optional ARG)" t nil)
20322 24039
24040(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "paren" '("show-paren-" "show-paren--")))
24041
20323;;;*** 24042;;;***
20324 24043
20325;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (0 0 24044;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (0 0
@@ -20338,6 +24057,8 @@ any values that are unknown are returned as nil.
20338 24057
20339\(fn STRING)" nil nil) 24058\(fn STRING)" nil nil)
20340 24059
24060(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "parse-time" '("parse-time-" "parse-iso8601-time-string")))
24061
20341;;;*** 24062;;;***
20342 24063
20343;;;### (autoloads nil "pascal" "progmodes/pascal.el" (0 0 0 0)) 24064;;;### (autoloads nil "pascal" "progmodes/pascal.el" (0 0 0 0))
@@ -20387,6 +24108,8 @@ See also the user variables `pascal-type-keywords', `pascal-start-keywords' and
20387 24108
20388\(fn)" t nil) 24109\(fn)" t nil)
20389 24110
24111(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pascal" '("pascal-" "electric-pascal-" "pascal--extra-indent" "pascal--syntax-propertize")))
24112
20390;;;*** 24113;;;***
20391 24114
20392;;;### (autoloads nil "password-cache" "password-cache.el" (0 0 0 24115;;;### (autoloads nil "password-cache" "password-cache.el" (0 0 0
@@ -20409,6 +24132,8 @@ Check if KEY is in the cache.
20409 24132
20410\(fn KEY)" nil nil) 24133\(fn KEY)" nil nil)
20411 24134
24135(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "password-cache" '("password-read-" "password-cache-" "password-data" "password-read" "password-reset")))
24136
20412;;;*** 24137;;;***
20413 24138
20414;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (0 0 0 0)) 24139;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (0 0 0 0))
@@ -20529,6 +24254,8 @@ to this macro.
20529 24254
20530(function-put 'pcase-defmacro 'doc-string-elt '3) 24255(function-put 'pcase-defmacro 'doc-string-elt '3)
20531 24256
24257(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcase" '("pcase-MACRO" "pcase-codegen" "pcase-mutually-exclusive-predicates" "pcase--")))
24258
20532;;;*** 24259;;;***
20533 24260
20534;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (0 0 0 0)) 24261;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (0 0 0 0))
@@ -20539,6 +24266,8 @@ Completion rules for the `cvs' command.
20539 24266
20540\(fn)" nil nil) 24267\(fn)" nil nil)
20541 24268
24269(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcmpl-cvs" '("pcmpl-cvs-entries" "pcmpl-cvs-tags" "pcmpl-cvs-modules" "pcmpl-cvs-commands" "pcmpl-cvs-binary")))
24270
20542;;;*** 24271;;;***
20543 24272
20544;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (0 0 0 0)) 24273;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (0 0 0 0))
@@ -20571,6 +24300,8 @@ Completion for the GNU find utility.
20571 24300
20572(defalias 'pcomplete/gdb 'pcomplete/xargs) 24301(defalias 'pcomplete/gdb 'pcomplete/xargs)
20573 24302
24303(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcmpl-gnu" '("pcmpl-gnu-")))
24304
20574;;;*** 24305;;;***
20575 24306
20576;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (0 0 0 0)) 24307;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (0 0 0 0))
@@ -20591,6 +24322,8 @@ Completion for GNU/Linux `mount'.
20591 24322
20592\(fn)" nil nil) 24323\(fn)" nil nil)
20593 24324
24325(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcmpl-linux" '("pcmpl-linux-fs-types" "pcmpl-linux-mounted-directories" "pcmpl-linux-mountable-directories" "pcomplete-pare-list")))
24326
20594;;;*** 24327;;;***
20595 24328
20596;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (0 0 0 0)) 24329;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (0 0 0 0))
@@ -20601,6 +24334,8 @@ Completion for the `rpm' command.
20601 24334
20602\(fn)" nil nil) 24335\(fn)" nil nil)
20603 24336
24337(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcmpl-rpm" '("pcmpl-rpm-")))
24338
20604;;;*** 24339;;;***
20605 24340
20606;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (0 0 0 0)) 24341;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (0 0 0 0))
@@ -20656,6 +24391,8 @@ Includes files as well as host names followed by a colon.
20656 24391
20657\(fn)" nil nil) 24392\(fn)" nil nil)
20658 24393
24394(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcmpl-unix" '("pcmpl-unix-" "pcmpl-ssh-config-" "pcmpl-ssh-known-hosts" "pcmpl-ssh-known-hosts-file" "pcmpl-ssh-hosts")))
24395
20659;;;*** 24396;;;***
20660 24397
20661;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (0 0 0 0)) 24398;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (0 0 0 0))
@@ -20680,6 +24417,8 @@ Completion for the `ag' command.
20680 24417
20681\(fn)" nil nil) 24418\(fn)" nil nil)
20682 24419
24420(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcmpl-x" '("pcmpl-x-ack-" "pcmpl-x-tlmgr-" "pcmpl-x-ag-options")))
24421
20683;;;*** 24422;;;***
20684 24423
20685;;;### (autoloads nil "pcomplete" "pcomplete.el" (0 0 0 0)) 24424;;;### (autoloads nil "pcomplete" "pcomplete.el" (0 0 0 0))
@@ -20737,6 +24476,8 @@ Setup `shell-mode' to use pcomplete.
20737 24476
20738\(fn)" nil nil) 24477\(fn)" nil nil)
20739 24478
24479(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcomplete" '("pcomplete-" "pcomplete--")))
24480
20740;;;*** 24481;;;***
20741 24482
20742;;;### (autoloads nil "pcvs" "vc/pcvs.el" (0 0 0 0)) 24483;;;### (autoloads nil "pcvs" "vc/pcvs.el" (0 0 0 0))
@@ -20812,6 +24553,8 @@ Anything else means to do it only if the prefix arg is equal to this value.")
20812Run `cvs-examine' if DIR is a CVS administrative directory. 24553Run `cvs-examine' if DIR is a CVS administrative directory.
20813The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp dir) (setq dir (directory-file-name dir)) (when (and (string= "CVS" (file-name-nondirectory dir)) (file-readable-p (expand-file-name "Entries" dir)) cvs-dired-use-hook (if (eq cvs-dired-use-hook (quote always)) (not current-prefix-arg) (equal current-prefix-arg cvs-dired-use-hook))) (save-excursion (funcall cvs-dired-action (file-name-directory dir) t t))))) 24554The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp dir) (setq dir (directory-file-name dir)) (when (and (string= "CVS" (file-name-nondirectory dir)) (file-readable-p (expand-file-name "Entries" dir)) cvs-dired-use-hook (if (eq cvs-dired-use-hook (quote always)) (not current-prefix-arg) (equal current-prefix-arg cvs-dired-use-hook))) (save-excursion (funcall cvs-dired-action (file-name-directory dir) t t)))))
20814 24555
24556(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcvs" '("cvs-" "defun-cvs-mode")))
24557
20815;;;*** 24558;;;***
20816 24559
20817;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (0 0 0 0)) 24560;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (0 0 0 0))
@@ -20820,6 +24563,29 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d
20820(defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] `(menu-item ,(purecopy "Directory Status") cvs-status :help ,(purecopy "A more verbose status of a workarea"))) (define-key m [checkout] `(menu-item ,(purecopy "Checkout Module") cvs-checkout :help ,(purecopy "Check out a module from the repository"))) (define-key m [update] `(menu-item ,(purecopy "Update Directory") cvs-update :help ,(purecopy "Fetch updates from the repository"))) (define-key m [examine] `(menu-item ,(purecopy "Examine Directory") cvs-examine :help ,(purecopy "Examine the current state of a workarea"))) (fset 'cvs-global-menu m)) "\ 24563(defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] `(menu-item ,(purecopy "Directory Status") cvs-status :help ,(purecopy "A more verbose status of a workarea"))) (define-key m [checkout] `(menu-item ,(purecopy "Checkout Module") cvs-checkout :help ,(purecopy "Check out a module from the repository"))) (define-key m [update] `(menu-item ,(purecopy "Update Directory") cvs-update :help ,(purecopy "Fetch updates from the repository"))) (define-key m [examine] `(menu-item ,(purecopy "Examine Directory") cvs-examine :help ,(purecopy "Examine the current state of a workarea"))) (fset 'cvs-global-menu m)) "\
20821Global menu used by PCL-CVS.") 24564Global menu used by PCL-CVS.")
20822 24565
24566(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcvs-defs" '("cvs-")))
24567
24568;;;***
24569
24570;;;### (autoloads nil "pcvs-info" "vc/pcvs-info.el" (0 0 0 0))
24571;;; Generated autoloads from vc/pcvs-info.el
24572
24573(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcvs-info" '("cvs-")))
24574
24575;;;***
24576
24577;;;### (autoloads nil "pcvs-parse" "vc/pcvs-parse.el" (0 0 0 0))
24578;;; Generated autoloads from vc/pcvs-parse.el
24579
24580(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcvs-parse" '("cvs-")))
24581
24582;;;***
24583
24584;;;### (autoloads nil "pcvs-util" "vc/pcvs-util.el" (0 0 0 0))
24585;;; Generated autoloads from vc/pcvs-util.el
24586
24587(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pcvs-util" '("cvs-")))
24588
20823;;;*** 24589;;;***
20824 24590
20825;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (0 0 0 24591;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (0 0 0
@@ -20882,6 +24648,8 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'.
20882 24648
20883\(fn)" t nil) 24649\(fn)" t nil)
20884 24650
24651(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "perl-mode" '("perl-" "perl--prettify-symbols-alist" "indent-perl-exp" "mark-perl-function")))
24652
20885;;;*** 24653;;;***
20886 24654
20887;;;### (autoloads nil "picture" "textmodes/picture.el" (0 0 0 0)) 24655;;;### (autoloads nil "picture" "textmodes/picture.el" (0 0 0 0))
@@ -20962,6 +24730,8 @@ they are not by default assigned to keys.
20962 24730
20963(defalias 'edit-picture 'picture-mode) 24731(defalias 'edit-picture 'picture-mode)
20964 24732
24733(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "picture" '("picture-")))
24734
20965;;;*** 24735;;;***
20966 24736
20967;;;### (autoloads nil "pinentry" "net/pinentry.el" (0 0 0 0)) 24737;;;### (autoloads nil "pinentry" "net/pinentry.el" (0 0 0 0))
@@ -20979,6 +24749,8 @@ will not be shown.
20979 24749
20980\(fn &optional QUIET)" t nil) 24750\(fn &optional QUIET)" t nil)
20981 24751
24752(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pinentry" '("pinentry--" "pinentry-")))
24753
20982;;;*** 24754;;;***
20983 24755
20984;;;### (autoloads nil "plstore" "plstore.el" (0 0 0 0)) 24756;;;### (autoloads nil "plstore" "plstore.el" (0 0 0 0))
@@ -20994,6 +24766,8 @@ Major mode for editing PLSTORE files.
20994 24766
20995\(fn)" t nil) 24767\(fn)" t nil)
20996 24768
24769(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "plstore" '("plstore-" "plstore--")))
24770
20997;;;*** 24771;;;***
20998 24772
20999;;;### (autoloads nil "po" "textmodes/po.el" (0 0 0 0)) 24773;;;### (autoloads nil "po" "textmodes/po.el" (0 0 0 0))
@@ -21005,6 +24779,8 @@ Called through `file-coding-system-alist', before the file is visited for real.
21005 24779
21006\(fn ARG-LIST)" nil nil) 24780\(fn ARG-LIST)" nil nil)
21007 24781
24782(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "po" '("po-find-charset" "po-find-file-coding-system-guts" "po-content-type-charset-alist")))
24783
21008;;;*** 24784;;;***
21009 24785
21010;;;### (autoloads nil "pong" "play/pong.el" (0 0 0 0)) 24786;;;### (autoloads nil "pong" "play/pong.el" (0 0 0 0))
@@ -21021,6 +24797,8 @@ pong-mode keybindings:\\<pong-mode-map>
21021 24797
21022\(fn)" t nil) 24798\(fn)" t nil)
21023 24799
24800(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pong" '("pong-")))
24801
21024;;;*** 24802;;;***
21025 24803
21026;;;### (autoloads nil "pop3" "net/pop3.el" (0 0 0 0)) 24804;;;### (autoloads nil "pop3" "net/pop3.el" (0 0 0 0))
@@ -21032,6 +24810,8 @@ Use streaming commands.
21032 24810
21033\(fn FILE)" nil nil) 24811\(fn FILE)" nil nil)
21034 24812
24813(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pop3" '("pop3-")))
24814
21035;;;*** 24815;;;***
21036 24816
21037;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (0 0 0 0)) 24817;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (0 0 0 0))
@@ -21082,6 +24862,8 @@ Ignores leading comment characters.
21082 24862
21083\(fn ARG)" t nil) 24863\(fn ARG)" t nil)
21084 24864
24865(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pp" '("pp-last-sexp" "pp-display-expression" "pp-escape-newlines")))
24866
21085;;;*** 24867;;;***
21086 24868
21087;;;### (autoloads nil "printing" "printing.el" (0 0 0 0)) 24869;;;### (autoloads nil "printing" "printing.el" (0 0 0 0))
@@ -21670,6 +25452,8 @@ are both set to t.
21670 25452
21671\(fn &optional SELECT-PRINTER)" t nil) 25453\(fn &optional SELECT-PRINTER)" t nil)
21672 25454
25455(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "printing" '("pr-" "lpr-setup")))
25456
21673;;;*** 25457;;;***
21674 25458
21675;;;### (autoloads nil "proced" "proced.el" (0 0 0 0)) 25459;;;### (autoloads nil "proced" "proced.el" (0 0 0 0))
@@ -21688,6 +25472,8 @@ Proced buffers.
21688 25472
21689\(fn &optional ARG)" t nil) 25473\(fn &optional ARG)" t nil)
21690 25474
25475(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "proced" '("proced-")))
25476
21691;;;*** 25477;;;***
21692 25478
21693;;;### (autoloads nil "profiler" "profiler.el" (0 0 0 0)) 25479;;;### (autoloads nil "profiler" "profiler.el" (0 0 0 0))
@@ -21716,6 +25502,8 @@ Open profile FILENAME.
21716 25502
21717\(fn FILENAME)" t nil) 25503\(fn FILENAME)" t nil)
21718 25504
25505(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "profiler" '("profiler-")))
25506
21719;;;*** 25507;;;***
21720 25508
21721;;;### (autoloads nil "project" "progmodes/project.el" (0 0 0 0)) 25509;;;### (autoloads nil "project" "progmodes/project.el" (0 0 0 0))
@@ -21758,6 +25546,8 @@ recognized.
21758 25546
21759\(fn)" t nil) 25547\(fn)" t nil)
21760 25548
25549(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "project" '("project-" "project--find-" "project--value-in-dir" "project--read-regexp" "project--completing-read-strict")))
25550
21761;;;*** 25551;;;***
21762 25552
21763;;;### (autoloads nil "prolog" "progmodes/prolog.el" (0 0 0 0)) 25553;;;### (autoloads nil "prolog" "progmodes/prolog.el" (0 0 0 0))
@@ -21791,6 +25581,8 @@ With prefix argument ARG, restart the Prolog process if running before.
21791 25581
21792\(fn ARG)" t nil) 25582\(fn ARG)" t nil)
21793 25583
25584(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "prolog" '("prolog-" "mercury-mode-map")))
25585
21794;;;*** 25586;;;***
21795 25587
21796;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (0 0 0 0)) 25588;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (0 0 0 0))
@@ -21802,6 +25594,8 @@ The default value is (\"/usr/local/share/emacs/fonts/bdf\").")
21802 25594
21803(custom-autoload 'bdf-directory-list "ps-bdf" t) 25595(custom-autoload 'bdf-directory-list "ps-bdf" t)
21804 25596
25597(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ps-bdf" '("bdf-")))
25598
21805;;;*** 25599;;;***
21806 25600
21807;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (0 0 0 0)) 25601;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (0 0 0 0))
@@ -21848,6 +25642,16 @@ Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number
21848 25642
21849\(fn)" t nil) 25643\(fn)" t nil)
21850 25644
25645(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ps-mode" '("ps-mode-" "ps-run-" "ps-mode--syntax-propertize-special" "ps-mode--string-syntax-table")))
25646
25647;;;***
25648
25649;;;### (autoloads "actual autoloads are elsewhere" "ps-mule" "ps-mule.el"
25650;;;;;; (22164 57535 655192 607000))
25651;;; Generated autoloads from ps-mule.el
25652
25653(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ps-mule" '("ps-mule-")))
25654
21851;;;*** 25655;;;***
21852 25656
21853;;;### (autoloads nil "ps-print" "ps-print.el" (0 0 0 0)) 25657;;;### (autoloads nil "ps-print" "ps-print.el" (0 0 0 0))
@@ -22045,6 +25849,15 @@ If EXTENSION is any other symbol, it is ignored.
22045 25849
22046\(fn FACE-EXTENSION &optional MERGE-P ALIST-SYM)" nil nil) 25850\(fn FACE-EXTENSION &optional MERGE-P ALIST-SYM)" nil nil)
22047 25851
25852(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ps-print" '("ps-")))
25853
25854;;;***
25855
25856;;;### (autoloads nil "ps-samp" "ps-samp.el" (0 0 0 0))
25857;;; Generated autoloads from ps-samp.el
25858
25859(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ps-samp" '("ps-")))
25860
22048;;;*** 25861;;;***
22049 25862
22050;;;### (autoloads nil "pulse" "cedet/pulse.el" (0 0 0 0)) 25863;;;### (autoloads nil "pulse" "cedet/pulse.el" (0 0 0 0))
@@ -22063,6 +25876,15 @@ Optional argument FACE specifies the face to do the highlighting.
22063 25876
22064\(fn START END &optional FACE)" nil nil) 25877\(fn START END &optional FACE)" nil nil)
22065 25878
25879(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pulse" '("pulse-")))
25880
25881;;;***
25882
25883;;;### (autoloads nil "puny" "net/puny.el" (0 0 0 0))
25884;;; Generated autoloads from net/puny.el
25885
25886(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "puny" '("puny-")))
25887
22066;;;*** 25888;;;***
22067 25889
22068;;;### (autoloads nil "python" "progmodes/python.el" (0 0 0 0)) 25890;;;### (autoloads nil "python" "progmodes/python.el" (0 0 0 0))
@@ -22100,6 +25922,8 @@ Major mode for editing Python files.
22100 25922
22101\(fn)" t nil) 25923\(fn)" t nil)
22102 25924
25925(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "python" '("python-" "python--prettify-symbols-alist" "inferior-python-mode" "run-python-internal")))
25926
22103;;;*** 25927;;;***
22104 25928
22105;;;### (autoloads nil "qp" "mail/qp.el" (0 0 0 0)) 25929;;;### (autoloads nil "qp" "mail/qp.el" (0 0 0 0))
@@ -22119,6 +25943,8 @@ them into characters should be done separately.
22119 25943
22120\(fn FROM TO &optional CODING-SYSTEM)" t nil) 25944\(fn FROM TO &optional CODING-SYSTEM)" t nil)
22121 25945
25946(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "qp" '("quoted-printable-decode-string" "quoted-printable-encode-region" "quoted-printable-encode-string")))
25947
22122;;;*** 25948;;;***
22123 25949
22124;;;### (autoloads nil "quail" "international/quail.el" (0 0 0 0)) 25950;;;### (autoloads nil "quail" "international/quail.el" (0 0 0 0))
@@ -22349,6 +26175,16 @@ of each directory.
22349 26175
22350\(fn DIRNAME &rest DIRNAMES)" t nil) 26176\(fn DIRNAME &rest DIRNAMES)" t nil)
22351 26177
26178(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail" '("quail-")))
26179
26180;;;***
26181
26182;;;### (autoloads nil "quail/ethiopic" "leim/quail/ethiopic.el" (0
26183;;;;;; 0 0 0))
26184;;; Generated autoloads from leim/quail/ethiopic.el
26185
26186(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/ethiopic" '("ethio-select-a-translation")))
26187
22352;;;*** 26188;;;***
22353 26189
22354;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (0 0 26190;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (0 0
@@ -22362,6 +26198,68 @@ HELP-TEXT is a text set in `hangul-input-method-help-text'.
22362 26198
22363\(fn INPUT-METHOD FUNC HELP-TEXT &rest ARGS)" nil nil) 26199\(fn INPUT-METHOD FUNC HELP-TEXT &rest ARGS)" nil nil)
22364 26200
26201(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/hangul" '("hangul-" "hangul390-" "hangul3-" "hangul2-" "alphabetp" "notzerop")))
26202
26203;;;***
26204
26205;;;### (autoloads nil "quail/indian" "leim/quail/indian.el" (0 0
26206;;;;;; 0 0))
26207;;; Generated autoloads from leim/quail/indian.el
26208
26209(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/indian" '("quail-tamil-itrans-" "quail-define-" "inscript-tml-keytable" "inscript-mlm-keytable" "inscript-dev-keytable")))
26210
26211;;;***
26212
26213;;;### (autoloads nil "quail/ipa" "leim/quail/ipa.el" (0 0 0 0))
26214;;; Generated autoloads from leim/quail/ipa.el
26215
26216(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/ipa" '("ipa-x-sampa-underscore-implosive" "ipa-x-sampa-prepend-to-keymap-entry" "ipa-x-sampa-implosive-submap")))
26217
26218;;;***
26219
26220;;;### (autoloads nil "quail/japanese" "leim/quail/japanese.el" (0
26221;;;;;; 0 0 0))
26222;;; Generated autoloads from leim/quail/japanese.el
26223
26224(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/japanese" '("quail-japanese-")))
26225
26226;;;***
26227
26228;;;### (autoloads nil "quail/lao" "leim/quail/lao.el" (0 0 0 0))
26229;;; Generated autoloads from leim/quail/lao.el
26230
26231(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/lao" '("lao-" "quail-lao-update-translation")))
26232
26233;;;***
26234
26235;;;### (autoloads nil "quail/lrt" "leim/quail/lrt.el" (0 0 0 0))
26236;;; Generated autoloads from leim/quail/lrt.el
26237
26238(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/lrt" '("quail-lrt-update-translation")))
26239
26240;;;***
26241
26242;;;### (autoloads nil "quail/sisheng" "leim/quail/sisheng.el" (0
26243;;;;;; 0 0 0))
26244;;; Generated autoloads from leim/quail/sisheng.el
26245
26246(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/sisheng" '("quail-make-sisheng-rules" "sisheng-regexp" "sisheng-vowel-table" "sisheng-syllable-table")))
26247
26248;;;***
26249
26250;;;### (autoloads nil "quail/thai" "leim/quail/thai.el" (0 0 0 0))
26251;;; Generated autoloads from leim/quail/thai.el
26252
26253(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/thai" '("thai-generate-quail-map")))
26254
26255;;;***
26256
26257;;;### (autoloads nil "quail/tibetan" "leim/quail/tibetan.el" (0
26258;;;;;; 0 0 0))
26259;;; Generated autoloads from leim/quail/tibetan.el
26260
26261(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/tibetan" '("tibetan-" "quail-tibkey-to-transcription" "quail-tibkey-characters" "quail-tibkey-update-translation" "quail-tibetan-update-translation")))
26262
22365;;;*** 26263;;;***
22366 26264
22367;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el" 26265;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el"
@@ -22377,6 +26275,15 @@ While this input method is active, the variable
22377 26275
22378\(fn &optional ARG)" nil nil) 26276\(fn &optional ARG)" nil nil)
22379 26277
26278(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/uni-input" '("ucs-input-insert-char" "ucs-input-method" "ucs-input-deactivate" "ucs-input-help")))
26279
26280;;;***
26281
26282;;;### (autoloads nil "quail/viqr" "leim/quail/viqr.el" (0 0 0 0))
26283;;; Generated autoloads from leim/quail/viqr.el
26284
26285(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/viqr" '("viet-quail-define-rules")))
26286
22380;;;*** 26287;;;***
22381 26288
22382;;;### (autoloads nil "quickurl" "net/quickurl.el" (0 0 0 0)) 26289;;;### (autoloads nil "quickurl" "net/quickurl.el" (0 0 0 0))
@@ -22448,6 +26355,16 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'.
22448 26355
22449\(fn)" t nil) 26356\(fn)" t nil)
22450 26357
26358(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quickurl" '("quickurl-")))
26359
26360;;;***
26361
26362;;;### (autoloads nil "radix-tree" "emacs-lisp/radix-tree.el" (0
26363;;;;;; 0 0 0))
26364;;; Generated autoloads from emacs-lisp/radix-tree.el
26365
26366(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "radix-tree" '("radix-tree-")))
26367
22451;;;*** 26368;;;***
22452 26369
22453;;;### (autoloads nil "rcirc" "net/rcirc.el" (0 0 0 0)) 26370;;;### (autoloads nil "rcirc" "net/rcirc.el" (0 0 0 0))
@@ -22487,6 +26404,8 @@ if ARG is omitted or nil.
22487 26404
22488\(fn &optional ARG)" t nil) 26405\(fn &optional ARG)" t nil)
22489 26406
26407(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rcirc" '("rcirc-" "with-rcirc-" "set-rcirc-" "rcirc--connection-open-p" "defun-rcirc-command")))
26408
22490;;;*** 26409;;;***
22491 26410
22492;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (0 26411;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (0
@@ -22506,6 +26425,8 @@ matching parts of the target buffer will be highlighted.
22506 26425
22507\(fn)" t nil) 26426\(fn)" t nil)
22508 26427
26428(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "re-builder" '("reb-" "re-builder-unload-function")))
26429
22509;;;*** 26430;;;***
22510 26431
22511;;;### (autoloads nil "recentf" "recentf.el" (0 0 0 0)) 26432;;;### (autoloads nil "recentf" "recentf.el" (0 0 0 0))
@@ -22533,6 +26454,8 @@ were operated on recently.
22533 26454
22534\(fn &optional ARG)" t nil) 26455\(fn &optional ARG)" t nil)
22535 26456
26457(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "recentf" '("recentf-")))
26458
22536;;;*** 26459;;;***
22537 26460
22538;;;### (autoloads nil "rect" "rect.el" (0 0 0 0)) 26461;;;### (autoloads nil "rect" "rect.el" (0 0 0 0))
@@ -22673,6 +26596,22 @@ Activates the region if needed. Only lasts until the region is deactivated.
22673 26596
22674\(fn &optional ARG)" t nil) 26597\(fn &optional ARG)" t nil)
22675 26598
26599(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rect" '("rectangle--" "rectangle-" "delete-" "spaces-" "string-rectangle-" "extract-rectangle-" "clear-rectangle-line" "open-rectangle-line" "killed-rectangle" "apply-on-rectangle" "operate-on-rectangle")))
26600
26601;;;***
26602
26603;;;### (autoloads nil "refbib" "textmodes/refbib.el" (0 0 0 0))
26604;;; Generated autoloads from textmodes/refbib.el
26605
26606(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "refbib" '("r2b-")))
26607
26608;;;***
26609
26610;;;### (autoloads nil "refer" "textmodes/refer.el" (0 0 0 0))
26611;;; Generated autoloads from textmodes/refer.el
26612
26613(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "refer" '("refer-")))
26614
22676;;;*** 26615;;;***
22677 26616
22678;;;### (autoloads nil "refill" "textmodes/refill.el" (0 0 0 0)) 26617;;;### (autoloads nil "refill" "textmodes/refill.el" (0 0 0 0))
@@ -22693,6 +26632,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead.
22693 26632
22694\(fn &optional ARG)" t nil) 26633\(fn &optional ARG)" t nil)
22695 26634
26635(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "refill" '("refill-")))
26636
22696;;;*** 26637;;;***
22697 26638
22698;;;### (autoloads nil "reftex" "textmodes/reftex.el" (0 0 0 0)) 26639;;;### (autoloads nil "reftex" "textmodes/reftex.el" (0 0 0 0))
@@ -22746,6 +26687,80 @@ This enforces rescanning the buffer on next use.
22746 26687
22747\(fn)" nil nil) 26688\(fn)" nil nil)
22748 26689
26690(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex" '("reftex-" "reftex--prepare-syntax-tables")))
26691
26692;;;***
26693
26694;;;### (autoloads "actual autoloads are elsewhere" "reftex-auc" "textmodes/reftex-auc.el"
26695;;;;;; (22164 57535 811192 607000))
26696;;; Generated autoloads from textmodes/reftex-auc.el
26697
26698(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex-auc" '("reftex-plug-flag" "reftex-what-index-tag")))
26699
26700;;;***
26701
26702;;;### (autoloads "actual autoloads are elsewhere" "reftex-cite"
26703;;;;;; "textmodes/reftex-cite.el" (22164 57535 811192 607000))
26704;;; Generated autoloads from textmodes/reftex-cite.el
26705
26706(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex-cite" '("reftex-" "reftex--query-search-regexps")))
26707
26708;;;***
26709
26710;;;### (autoloads "actual autoloads are elsewhere" "reftex-dcr" "textmodes/reftex-dcr.el"
26711;;;;;; (22164 57535 811192 607000))
26712;;; Generated autoloads from textmodes/reftex-dcr.el
26713
26714(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex-dcr" '("reftex-")))
26715
26716;;;***
26717
26718;;;### (autoloads "actual autoloads are elsewhere" "reftex-global"
26719;;;;;; "textmodes/reftex-global.el" (22164 57535 811192 607000))
26720;;; Generated autoloads from textmodes/reftex-global.el
26721
26722(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex-global" '("reftex-isearch-" "reftex-grep-history" "reftex-grep-command" "reftex-translate" "reftex-ensure-write-access")))
26723
26724;;;***
26725
26726;;;### (autoloads "actual autoloads are elsewhere" "reftex-index"
26727;;;;;; "textmodes/reftex-index.el" (22164 57535 811192 607000))
26728;;; Generated autoloads from textmodes/reftex-index.el
26729
26730(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex-index" '("reftex-")))
26731
26732;;;***
26733
26734;;;### (autoloads "actual autoloads are elsewhere" "reftex-parse"
26735;;;;;; "textmodes/reftex-parse.el" (22164 57535 811192 607000))
26736;;; Generated autoloads from textmodes/reftex-parse.el
26737
26738(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex-parse" '("reftex-")))
26739
26740;;;***
26741
26742;;;### (autoloads "actual autoloads are elsewhere" "reftex-ref" "textmodes/reftex-ref.el"
26743;;;;;; (22189 60739 277741 19000))
26744;;; Generated autoloads from textmodes/reftex-ref.el
26745
26746(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex-ref" '("reftex-")))
26747
26748;;;***
26749
26750;;;### (autoloads "actual autoloads are elsewhere" "reftex-sel" "textmodes/reftex-sel.el"
26751;;;;;; (22164 57535 815192 607000))
26752;;; Generated autoloads from textmodes/reftex-sel.el
26753
26754(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex-sel" '("reftex-select-" "reftex-last-line" "reftex-last-data")))
26755
26756;;;***
26757
26758;;;### (autoloads "actual autoloads are elsewhere" "reftex-toc" "textmodes/reftex-toc.el"
26759;;;;;; (22164 57535 815192 607000))
26760;;; Generated autoloads from textmodes/reftex-toc.el
26761
26762(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex-toc" '("reftex-" "reftex--rebuilding-toc")))
26763
22749;;;*** 26764;;;***
22750 26765
22751;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (0 26766;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (0
@@ -22756,6 +26771,8 @@ This enforces rescanning the buffer on next use.
22756(put 'reftex-level-indent 'safe-local-variable 'integerp) 26771(put 'reftex-level-indent 'safe-local-variable 'integerp)
22757(put 'reftex-guess-label-type 'safe-local-variable (lambda (x) (memq x '(nil t)))) 26772(put 'reftex-guess-label-type 'safe-local-variable (lambda (x) (memq x '(nil t))))
22758 26773
26774(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reftex-vars" '("reftex-")))
26775
22759;;;*** 26776;;;***
22760 26777
22761;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (0 26778;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (0
@@ -22786,12 +26803,23 @@ This means the number of non-shy regexp grouping constructs
22786 26803
22787\(fn REGEXP)" nil nil) 26804\(fn REGEXP)" nil nil)
22788 26805
26806(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "regexp-opt" '("regexp-opt-charset" "regexp-opt-group")))
26807
22789;;;*** 26808;;;***
22790 26809
22791;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (0 0 0 0)) 26810;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (0 0 0 0))
22792;;; Generated autoloads from emacs-lisp/regi.el 26811;;; Generated autoloads from emacs-lisp/regi.el
22793(push (purecopy '(regi 1 8)) package--builtin-versions) 26812(push (purecopy '(regi 1 8)) package--builtin-versions)
22794 26813
26814(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "regi" '("regi-pos" "regi-mapcar" "regi-interpret")))
26815
26816;;;***
26817
26818;;;### (autoloads nil "registry" "registry.el" (0 0 0 0))
26819;;; Generated autoloads from registry.el
26820
26821(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "registry" '("registry-db" "registry-db-version" "registry--match")))
26822
22795;;;*** 26823;;;***
22796 26824
22797;;;### (autoloads nil "remember" "textmodes/remember.el" (0 0 0 0)) 26825;;;### (autoloads nil "remember" "textmodes/remember.el" (0 0 0 0))
@@ -22846,6 +26874,8 @@ to turn the *scratch* buffer into your notes buffer.
22846 26874
22847\(fn &optional SWITCH-TO)" t nil) 26875\(fn &optional SWITCH-TO)" t nil)
22848 26876
26877(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "remember" '("remember-")))
26878
22849;;;*** 26879;;;***
22850 26880
22851;;;### (autoloads nil "repeat" "repeat.el" (0 0 0 0)) 26881;;;### (autoloads nil "repeat" "repeat.el" (0 0 0 0))
@@ -22869,6 +26899,8 @@ recently executed command not bound to an input event\".
22869 26899
22870\(fn REPEAT-ARG)" t nil) 26900\(fn REPEAT-ARG)" t nil)
22871 26901
26902(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "repeat" '("repeat-")))
26903
22872;;;*** 26904;;;***
22873 26905
22874;;;### (autoloads nil "reporter" "mail/reporter.el" (0 0 0 0)) 26906;;;### (autoloads nil "reporter" "mail/reporter.el" (0 0 0 0))
@@ -22900,6 +26932,8 @@ mail-sending package is used for editing and sending the message.
22900 26932
22901\(fn ADDRESS PKGNAME VARLIST &optional PRE-HOOKS POST-HOOKS SALUTATION)" nil nil) 26933\(fn ADDRESS PKGNAME VARLIST &optional PRE-HOOKS POST-HOOKS SALUTATION)" nil nil)
22902 26934
26935(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reporter" '("reporter-")))
26936
22903;;;*** 26937;;;***
22904 26938
22905;;;### (autoloads nil "reposition" "reposition.el" (0 0 0 0)) 26939;;;### (autoloads nil "reposition" "reposition.el" (0 0 0 0))
@@ -22926,6 +26960,8 @@ first comment line visible (if point is in a comment).
22926 26960
22927\(fn &optional ARG)" t nil) 26961\(fn &optional ARG)" t nil)
22928 26962
26963(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reposition" '("repos-count-screen-lines-signed" "repos-count-screen-lines")))
26964
22929;;;*** 26965;;;***
22930 26966
22931;;;### (autoloads nil "reveal" "reveal.el" (0 0 0 0)) 26967;;;### (autoloads nil "reveal" "reveal.el" (0 0 0 0))
@@ -22962,6 +26998,58 @@ the mode if ARG is omitted or nil.
22962 26998
22963\(fn &optional ARG)" t nil) 26999\(fn &optional ARG)" t nil)
22964 27000
27001(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "reveal" '("reveal-")))
27002
27003;;;***
27004
27005;;;### (autoloads nil "rfc1843" "international/rfc1843.el" (0 0 0
27006;;;;;; 0))
27007;;; Generated autoloads from international/rfc1843.el
27008
27009(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rfc1843" '("rfc1843-decode-" "rfc1843-hzp-word-" "rfc1843-word-" "rfc1843-decode" "rfc1843-newsgroups-regexp")))
27010
27011;;;***
27012
27013;;;### (autoloads nil "rfc2045" "mail/rfc2045.el" (0 0 0 0))
27014;;; Generated autoloads from mail/rfc2045.el
27015
27016(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rfc2045" '("rfc2045-encode-string")))
27017
27018;;;***
27019
27020;;;### (autoloads nil "rfc2047" "mail/rfc2047.el" (0 0 0 0))
27021;;; Generated autoloads from mail/rfc2047.el
27022
27023(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rfc2047" '("rfc2047-")))
27024
27025;;;***
27026
27027;;;### (autoloads nil "rfc2104" "net/rfc2104.el" (0 0 0 0))
27028;;; Generated autoloads from net/rfc2104.el
27029
27030(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rfc2104" '("rfc2104-ipad" "rfc2104-opad" "rfc2104-nybbles" "rfc2104-hash")))
27031
27032;;;***
27033
27034;;;### (autoloads nil "rfc2231" "mail/rfc2231.el" (0 0 0 0))
27035;;; Generated autoloads from mail/rfc2231.el
27036
27037(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rfc2231" '("rfc2231-parse-qp-string" "rfc2231-parse-string" "rfc2231-get-value" "rfc2231-decode-encoded-string" "rfc2231-encode-string")))
27038
27039;;;***
27040
27041;;;### (autoloads nil "rfc2368" "mail/rfc2368.el" (0 0 0 0))
27042;;; Generated autoloads from mail/rfc2368.el
27043
27044(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rfc2368" '("rfc2368-mailto-" "rfc2368-unhexify-string" "rfc2368-parse-mailto-url")))
27045
27046;;;***
27047
27048;;;### (autoloads nil "rfc822" "mail/rfc822.el" (0 0 0 0))
27049;;; Generated autoloads from mail/rfc822.el
27050
27051(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rfc822" '("rfc822-")))
27052
22965;;;*** 27053;;;***
22966 27054
22967;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (0 0 0 0)) 27055;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (0 0 0 0))
@@ -22977,6 +27065,8 @@ Make a ring that can contain SIZE elements.
22977 27065
22978\(fn SIZE)" nil nil) 27066\(fn SIZE)" nil nil)
22979 27067
27068(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ring" '("ring-")))
27069
22980;;;*** 27070;;;***
22981 27071
22982;;;### (autoloads nil "rlogin" "net/rlogin.el" (0 0 0 0)) 27072;;;### (autoloads nil "rlogin" "net/rlogin.el" (0 0 0 0))
@@ -23021,6 +27111,8 @@ variable.
23021 27111
23022\(fn INPUT-ARGS &optional BUFFER)" t nil) 27112\(fn INPUT-ARGS &optional BUFFER)" t nil)
23023 27113
27114(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rlogin" '("rlogin-")))
27115
23024;;;*** 27116;;;***
23025 27117
23026;;;### (autoloads nil "rmail" "mail/rmail.el" (0 0 0 0)) 27118;;;### (autoloads nil "rmail" "mail/rmail.el" (0 0 0 0))
@@ -23218,6 +27310,40 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server.
23218 27310
23219\(fn PASSWORD)" t nil) 27311\(fn PASSWORD)" t nil)
23220 27312
27313(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rmail" '("rmail-" "mail-unsent-separator" "mail-mime-unsent-header")))
27314
27315;;;***
27316
27317;;;### (autoloads nil "rmail-spam-filter" "mail/rmail-spam-filter.el"
27318;;;;;; (0 0 0 0))
27319;;; Generated autoloads from mail/rmail-spam-filter.el
27320
27321(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rmail-spam-filter" '("rsf-" "rmail-use-spam-filter" "rmail-spam-filter" "rmail-get-new-mail-filter-spam")))
27322
27323;;;***
27324
27325;;;### (autoloads "actual autoloads are elsewhere" "rmailedit" "mail/rmailedit.el"
27326;;;;;; (22164 57534 831192 607000))
27327;;; Generated autoloads from mail/rmailedit.el
27328
27329(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rmailedit" '("rmail-edit-" "rmail-abort-edit" "rmail-cease-edit" "rmail-old-headers" "rmail-old-pruned")))
27330
27331;;;***
27332
27333;;;### (autoloads "actual autoloads are elsewhere" "rmailkwd" "mail/rmailkwd.el"
27334;;;;;; (22164 57534 831192 607000))
27335;;; Generated autoloads from mail/rmailkwd.el
27336
27337(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rmailkwd" '("rmail-set-label" "rmail-make-label" "rmail-label-obarray")))
27338
27339;;;***
27340
27341;;;### (autoloads "actual autoloads are elsewhere" "rmailmm" "mail/rmailmm.el"
27342;;;;;; (22164 57534 831192 607000))
27343;;; Generated autoloads from mail/rmailmm.el
27344
27345(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rmailmm" '("rmail-mime-" "rmail-insert-mime-" "rmail-mm-get-boundary-error-message" "rmail-show-mime" "rmail-search-mime-message")))
27346
23221;;;*** 27347;;;***
23222 27348
23223;;;### (autoloads nil "rmailout" "mail/rmailout.el" (0 0 0 0)) 27349;;;### (autoloads nil "rmailout" "mail/rmailout.el" (0 0 0 0))
@@ -23282,6 +27408,24 @@ than appending to it. Deletes the message after writing if
23282 27408
23283\(fn FILE-NAME)" t nil) 27409\(fn FILE-NAME)" t nil)
23284 27410
27411(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rmailout" '("rmail-output-" "rmail-nuke-pinhead-header" "rmail-convert-to-babyl-format" "rmail-delete-unwanted-fields" "rmail-fields-not-to-output")))
27412
27413;;;***
27414
27415;;;### (autoloads "actual autoloads are elsewhere" "rmailsort" "mail/rmailsort.el"
27416;;;;;; (22164 57534 831192 607000))
27417;;; Generated autoloads from mail/rmailsort.el
27418
27419(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rmailsort" '("rmail-select-correspondent" "rmail-sort-messages" "rmail-make-date-sortable")))
27420
27421;;;***
27422
27423;;;### (autoloads "actual autoloads are elsewhere" "rmailsum" "mail/rmailsum.el"
27424;;;;;; (22164 57534 835192 607000))
27425;;; Generated autoloads from mail/rmailsum.el
27426
27427(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rmailsum" '("rmail-" "rmail--decode-and-apply")))
27428
23285;;;*** 27429;;;***
23286 27430
23287;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (0 0 0 0)) 27431;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (0 0 0 0))
@@ -23293,6 +27437,36 @@ Return a pattern.
23293 27437
23294\(fn FILENAME)" nil nil) 27438\(fn FILENAME)" nil nil)
23295 27439
27440(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-cmpct" '("rng-c-" "rng-token-datatype" "rng-string-datatype")))
27441
27442;;;***
27443
27444;;;### (autoloads nil "rng-dt" "nxml/rng-dt.el" (0 0 0 0))
27445;;; Generated autoloads from nxml/rng-dt.el
27446
27447(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-dt" '("rng-dt-builtin-compile" "rng-dt-make-value" "rng-dt-namespace-context-getter" "rng-dt-error" "rng-dt-error-reporter")))
27448
27449;;;***
27450
27451;;;### (autoloads nil "rng-loc" "nxml/rng-loc.el" (0 0 0 0))
27452;;; Generated autoloads from nxml/rng-loc.el
27453
27454(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-loc" '("rng-")))
27455
27456;;;***
27457
27458;;;### (autoloads nil "rng-maint" "nxml/rng-maint.el" (0 0 0 0))
27459;;; Generated autoloads from nxml/rng-maint.el
27460
27461(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-maint" '("rng-")))
27462
27463;;;***
27464
27465;;;### (autoloads nil "rng-match" "nxml/rng-match.el" (0 0 0 0))
27466;;; Generated autoloads from nxml/rng-match.el
27467
27468(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-match" '("rng-" "rng--ipattern-datatype" "rng--ipattern-after" "rng--ipattern-value-object")))
27469
23296;;;*** 27470;;;***
23297 27471
23298;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (0 0 0 0)) 27472;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (0 0 0 0))
@@ -23305,6 +27479,36 @@ Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil.
23305 27479
23306\(fn)" t nil) 27480\(fn)" t nil)
23307 27481
27482(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-nxml" '("rng-")))
27483
27484;;;***
27485
27486;;;### (autoloads nil "rng-parse" "nxml/rng-parse.el" (0 0 0 0))
27487;;; Generated autoloads from nxml/rng-parse.el
27488
27489(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-parse" '("rng-parse-prev-was-start-tag" "rng-parse-validate-file" "rng-parse-do-validate" "rng-parse-to-match-name")))
27490
27491;;;***
27492
27493;;;### (autoloads nil "rng-pttrn" "nxml/rng-pttrn.el" (0 0 0 0))
27494;;; Generated autoloads from nxml/rng-pttrn.el
27495
27496(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-pttrn" '("rng-make-" "rng-ref-" "rng-any-" "rng-schema-change-hook" "rng-current-schema")))
27497
27498;;;***
27499
27500;;;### (autoloads nil "rng-uri" "nxml/rng-uri.el" (0 0 0 0))
27501;;; Generated autoloads from nxml/rng-uri.el
27502
27503(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-uri" '("rng-")))
27504
27505;;;***
27506
27507;;;### (autoloads nil "rng-util" "nxml/rng-util.el" (0 0 0 0))
27508;;; Generated autoloads from nxml/rng-util.el
27509
27510(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-util" '("rng-")))
27511
23308;;;*** 27512;;;***
23309 27513
23310;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (0 0 0 0)) 27514;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (0 0 0 0))
@@ -23335,6 +27539,8 @@ to use for finding the schema.
23335 27539
23336\(fn &optional ARG NO-CHANGE-SCHEMA)" t nil) 27540\(fn &optional ARG NO-CHANGE-SCHEMA)" t nil)
23337 27541
27542(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-valid" '("rng-")))
27543
23338;;;*** 27544;;;***
23339 27545
23340;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (0 0 0 0)) 27546;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (0 0 0 0))
@@ -23362,6 +27568,8 @@ must be equal.
23362 27568
23363\(fn NAME PARAMS)" nil nil) 27569\(fn NAME PARAMS)" nil nil)
23364 27570
27571(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rng-xsd" '("rng-xsd-" "xsd-duration-reference-dates")))
27572
23365;;;*** 27573;;;***
23366 27574
23367;;;### (autoloads nil "robin" "international/robin.el" (0 0 0 0)) 27575;;;### (autoloads nil "robin" "international/robin.el" (0 0 0 0))
@@ -23394,6 +27602,8 @@ Start using robin package NAME, which is a string.
23394 27602
23395\(fn NAME)" nil nil) 27603\(fn NAME)" nil nil)
23396 27604
27605(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "robin" '("robin-")))
27606
23397;;;*** 27607;;;***
23398 27608
23399;;;### (autoloads nil "rot13" "rot13.el" (0 0 0 0)) 27609;;;### (autoloads nil "rot13" "rot13.el" (0 0 0 0))
@@ -23431,6 +27641,8 @@ Toggle the use of ROT13 encoding for the current window.
23431 27641
23432\(fn)" t nil) 27642\(fn)" t nil)
23433 27643
27644(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rot13" '("rot13-translate-table" "rot13-display-table")))
27645
23434;;;*** 27646;;;***
23435 27647
23436;;;### (autoloads nil "rst" "textmodes/rst.el" (0 0 0 0)) 27648;;;### (autoloads nil "rst" "textmodes/rst.el" (0 0 0 0))
@@ -23461,6 +27673,15 @@ for modes derived from Text mode, like Mail mode.
23461 27673
23462\(fn &optional ARG)" t nil) 27674\(fn &optional ARG)" t nil)
23463 27675
27676(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rst" '("rst-")))
27677
27678;;;***
27679
27680;;;### (autoloads nil "rtree" "rtree.el" (0 0 0 0))
27681;;; Generated autoloads from rtree.el
27682
27683(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rtree" '("rtree-")))
27684
23464;;;*** 27685;;;***
23465 27686
23466;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (0 0 0 27687;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (0 0 0
@@ -23479,6 +27700,8 @@ Major mode for editing Ruby code.
23479 27700
23480(dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode))) 27701(dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode)))
23481 27702
27703(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ruby-mode" '("ruby-" "ruby--")))
27704
23482;;;*** 27705;;;***
23483 27706
23484;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (0 0 0 0)) 27707;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (0 0 0 0))
@@ -23497,6 +27720,8 @@ if ARG is omitted or nil.
23497 27720
23498\(fn &optional ARG)" t nil) 27721\(fn &optional ARG)" t nil)
23499 27722
27723(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ruler-mode" '("ruler-mode-" "ruler--save-header-line-format")))
27724
23500;;;*** 27725;;;***
23501 27726
23502;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (0 0 0 0)) 27727;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (0 0 0 0))
@@ -23808,12 +28033,45 @@ enclosed in `(and ...)'.
23808 28033
23809\(fn &rest REGEXPS)" nil t) 28034\(fn &rest REGEXPS)" nil t)
23810 28035
28036(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "rx" '("rx-")))
28037
28038;;;***
28039
28040;;;### (autoloads nil "sasl" "net/sasl.el" (0 0 0 0))
28041;;; Generated autoloads from net/sasl.el
28042
28043(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sasl" '("sasl-")))
28044
28045;;;***
28046
28047;;;### (autoloads nil "sasl-cram" "net/sasl-cram.el" (0 0 0 0))
28048;;; Generated autoloads from net/sasl-cram.el
28049
28050(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sasl-cram" '("sasl-cram-md5-steps" "sasl-cram-md5-response")))
28051
28052;;;***
28053
28054;;;### (autoloads nil "sasl-digest" "net/sasl-digest.el" (0 0 0 0))
28055;;; Generated autoloads from net/sasl-digest.el
28056
28057(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sasl-digest" '("sasl-digest-md5-")))
28058
23811;;;*** 28059;;;***
23812 28060
23813;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (0 0 0 0)) 28061;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (0 0 0 0))
23814;;; Generated autoloads from net/sasl-ntlm.el 28062;;; Generated autoloads from net/sasl-ntlm.el
23815(push (purecopy '(sasl 1 0)) package--builtin-versions) 28063(push (purecopy '(sasl 1 0)) package--builtin-versions)
23816 28064
28065(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sasl-ntlm" '("sasl-ntlm-response" "sasl-ntlm-request" "sasl-ntlm-steps")))
28066
28067;;;***
28068
28069;;;### (autoloads nil "sasl-scram-rfc" "net/sasl-scram-rfc.el" (0
28070;;;;;; 0 0 0))
28071;;; Generated autoloads from net/sasl-scram-rfc.el
28072
28073(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sasl-scram-rfc" '("sasl-scram-sha-1-" "sasl-scram-client-first-message" "sasl-scram--authenticate-server" "sasl-scram--client-first-message-bare" "sasl-scram--client-final-message")))
28074
23817;;;*** 28075;;;***
23818 28076
23819;;;### (autoloads nil "savehist" "savehist.el" (0 0 0 0)) 28077;;;### (autoloads nil "savehist" "savehist.el" (0 0 0 0))
@@ -23847,6 +28105,8 @@ histories, which is probably undesirable.
23847 28105
23848\(fn &optional ARG)" t nil) 28106\(fn &optional ARG)" t nil)
23849 28107
28108(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "savehist" '("savehist-")))
28109
23850;;;*** 28110;;;***
23851 28111
23852;;;### (autoloads nil "saveplace" "saveplace.el" (0 0 0 0)) 28112;;;### (autoloads nil "saveplace" "saveplace.el" (0 0 0 0))
@@ -23885,6 +28145,15 @@ file:
23885 28145
23886\(fn &optional ARG)" t nil) 28146\(fn &optional ARG)" t nil)
23887 28147
28148(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "saveplace" '("save-place-" "load-save-place-alist-from-file" "save-place--setup-hooks" "save-places-to-alist")))
28149
28150;;;***
28151
28152;;;### (autoloads nil "sb-image" "sb-image.el" (0 0 0 0))
28153;;; Generated autoloads from sb-image.el
28154
28155(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sb-image" '("speedbar-image-dump" "speedbar-insert-image-button-maybe" "speedbar-expand-image-button-alist" "speedbar-use-images" "defimage-speedbar")))
28156
23888;;;*** 28157;;;***
23889 28158
23890;;;### (autoloads nil "scheme" "progmodes/scheme.el" (0 0 0 0)) 28159;;;### (autoloads nil "scheme" "progmodes/scheme.el" (0 0 0 0))
@@ -23924,6 +28193,8 @@ that variable's value is a string.
23924 28193
23925\(fn)" t nil) 28194\(fn)" t nil)
23926 28195
28196(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "scheme" '("scheme-" "dsssl-sgml-declaration" "dsssl-mode-hook" "dsssl-imenu-generic-expression" "dsssl-font-lock-keywords")))
28197
23927;;;*** 28198;;;***
23928 28199
23929;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (0 0 0 0)) 28200;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (0 0 0 0))
@@ -23937,6 +28208,8 @@ This mode is an extended emacs-lisp mode.
23937 28208
23938\(fn)" t nil) 28209\(fn)" t nil)
23939 28210
28211(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "score-mode" '("gnus-score-" "score-mode-syntax-table" "score-mode-coding-system")))
28212
23940;;;*** 28213;;;***
23941 28214
23942;;;### (autoloads nil "scroll-all" "scroll-all.el" (0 0 0 0)) 28215;;;### (autoloads nil "scroll-all" "scroll-all.el" (0 0 0 0))
@@ -23963,6 +28236,15 @@ one window apply to all visible windows in the same frame.
23963 28236
23964\(fn &optional ARG)" t nil) 28237\(fn &optional ARG)" t nil)
23965 28238
28239(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "scroll-all" '("scroll-all-")))
28240
28241;;;***
28242
28243;;;### (autoloads nil "scroll-bar" "scroll-bar.el" (0 0 0 0))
28244;;; Generated autoloads from scroll-bar.el
28245
28246(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "scroll-bar" '("scroll-bar-" "horizontal-scroll-" "toggle-" "previous-scroll-bar-mode" "set-scroll-bar-mode" "get-scroll-bar-mode")))
28247
23966;;;*** 28248;;;***
23967 28249
23968;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (0 0 0 0)) 28250;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (0 0 0 0))
@@ -23979,6 +28261,8 @@ vertically fixed relative to window boundaries during scrolling.
23979 28261
23980\(fn &optional ARG)" t nil) 28262\(fn &optional ARG)" t nil)
23981 28263
28264(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "scroll-lock" '("scroll-lock-")))
28265
23982;;;*** 28266;;;***
23983 28267
23984;;;### (autoloads nil "secrets" "net/secrets.el" (0 0 0 0)) 28268;;;### (autoloads nil "secrets" "net/secrets.el" (0 0 0 0))
@@ -23986,6 +28270,8 @@ vertically fixed relative to window boundaries during scrolling.
23986(when (featurep 'dbusbind) 28270(when (featurep 'dbusbind)
23987 (autoload 'secrets-show-secrets "secrets" nil t)) 28271 (autoload 'secrets-show-secrets "secrets" nil t))
23988 28272
28273(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "secrets" '("secrets-")))
28274
23989;;;*** 28275;;;***
23990 28276
23991;;;### (autoloads nil "semantic" "cedet/semantic.el" (0 0 0 0)) 28277;;;### (autoloads nil "semantic" "cedet/semantic.el" (0 0 0 0))
@@ -24044,6 +28330,89 @@ Semantic mode.
24044 28330
24045\(fn &optional ARG)" t nil) 28331\(fn &optional ARG)" t nil)
24046 28332
28333(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic" '("semantic-" "semantic--" "bovinate")))
28334
28335;;;***
28336
28337;;;### (autoloads "actual autoloads are elsewhere" "semantic/analyze"
28338;;;;;; "cedet/semantic/analyze.el" (22164 57533 947192 607000))
28339;;; Generated autoloads from cedet/semantic/analyze.el
28340
28341(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/analyze" '("semantic-analyze-" "semantic-adebug-analyze")))
28342
28343;;;***
28344
28345;;;### (autoloads "actual autoloads are elsewhere" "semantic/analyze/complete"
28346;;;;;; "cedet/semantic/analyze/complete.el" (22164 57533 947192
28347;;;;;; 607000))
28348;;; Generated autoloads from cedet/semantic/analyze/complete.el
28349
28350(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/analyze/complete" '("semantic-analyze-type-constants-default" "semantic-analyze-tags-of-class-list" "semantic-analyze-possible-completions-default")))
28351
28352;;;***
28353
28354;;;### (autoloads nil "semantic/analyze/debug" "cedet/semantic/analyze/debug.el"
28355;;;;;; (0 0 0 0))
28356;;; Generated autoloads from cedet/semantic/analyze/debug.el
28357
28358(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/analyze/debug" '("semantic-analyzer-debug-" "semantic-analyze-debug-assist")))
28359
28360;;;***
28361
28362;;;### (autoloads nil "semantic/analyze/fcn" "cedet/semantic/analyze/fcn.el"
28363;;;;;; (0 0 0 0))
28364;;; Generated autoloads from cedet/semantic/analyze/fcn.el
28365
28366(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/analyze/fcn" '("semantic-analyze-")))
28367
28368;;;***
28369
28370;;;### (autoloads "actual autoloads are elsewhere" "semantic/analyze/refs"
28371;;;;;; "cedet/semantic/analyze/refs.el" (22164 57533 947192 607000))
28372;;; Generated autoloads from cedet/semantic/analyze/refs.el
28373
28374(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/analyze/refs" '("semantic--analyze-refs-find-" "semantic--analyze-refs-full-" "semantic-analyze-tag-references-default" "semantic-analyze-tag-references" "semantic-analyze-references")))
28375
28376;;;***
28377
28378;;;### (autoloads "actual autoloads are elsewhere" "semantic/bovine"
28379;;;;;; "cedet/semantic/bovine.el" (22164 57533 947192 607000))
28380;;; Generated autoloads from cedet/semantic/bovine.el
28381
28382(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/bovine" '("semantic-bovinate-nonterminal-check" "semantic-bovinate-nonterminal-db-nt" "semantic-bovinate-nonterminal-check-obarray" "semantic-lambda" "semantic-bovinate-symbol-nonterminal-p")))
28383
28384;;;***
28385
28386;;;### (autoloads "actual autoloads are elsewhere" "semantic/bovine/c"
28387;;;;;; "cedet/semantic/bovine/c.el" (22164 57533 947192 607000))
28388;;; Generated autoloads from cedet/semantic/bovine/c.el
28389
28390(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/bovine/c" '("semantic-" "semantic--tag-" "semanticdb-" "c++-mode" "c-mode")))
28391
28392;;;***
28393
28394;;;### (autoloads nil "semantic/bovine/debug" "cedet/semantic/bovine/debug.el"
28395;;;;;; (0 0 0 0))
28396;;; Generated autoloads from cedet/semantic/bovine/debug.el
28397
28398(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/bovine/debug" '("semantic-create-bovine-debug-error-frame" "semantic-bovine-debug-frame" "semantic-bovine-debug-create-frame" "semantic-bovine-debug-error-frame" "semantic-bovine-debug-parser")))
28399
28400;;;***
28401
28402;;;### (autoloads "actual autoloads are elsewhere" "semantic/bovine/el"
28403;;;;;; "cedet/semantic/bovine/el.el" (22257 7109 249189 216000))
28404;;; Generated autoloads from cedet/semantic/bovine/el.el
28405
28406(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/bovine/el" '("semantic-" "semantic--elisp-parse-table" "emacs-lisp-mode" "lisp-mode")))
28407
28408;;;***
28409
28410;;;### (autoloads "actual autoloads are elsewhere" "semantic/bovine/gcc"
28411;;;;;; "cedet/semantic/bovine/gcc.el" (22164 57533 951192 607000))
28412;;; Generated autoloads from cedet/semantic/bovine/gcc.el
28413
28414(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/bovine/gcc" '("semantic-cpp-defs" "semantic-gcc-setup-data" "semantic-gcc-fields" "semantic-gcc-get-include-paths" "semantic-gcc-query")))
28415
24047;;;*** 28416;;;***
24048 28417
24049;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" 28418;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el"
@@ -24055,6 +28424,473 @@ Major mode for editing Bovine grammars.
24055 28424
24056\(fn)" t nil) 28425\(fn)" t nil)
24057 28426
28427(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/bovine/grammar" '("bovine-grammar-" "bovine--grammar-macros" "bovine--make-parser-1" "bovine-make-parsers" "bovine-batch-make-parser")))
28428
28429;;;***
28430
28431;;;### (autoloads "actual autoloads are elsewhere" "semantic/bovine/make"
28432;;;;;; "cedet/semantic/bovine/make.el" (22164 57533 951192 607000))
28433;;; Generated autoloads from cedet/semantic/bovine/make.el
28434
28435(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/bovine/make" '("semantic-" "makefile-mode")))
28436
28437;;;***
28438
28439;;;### (autoloads "actual autoloads are elsewhere" "semantic/bovine/scm"
28440;;;;;; "cedet/semantic/bovine/scm.el" (22164 57533 951192 607000))
28441;;; Generated autoloads from cedet/semantic/bovine/scm.el
28442
28443(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/bovine/scm" '("semantic-format-tag-prototype" "semantic-documentation-for-tag" "semantic-insert-foreign-tag" "semantic-lex-scheme-symbol" "semantic-scheme-lexer")))
28444
28445;;;***
28446
28447;;;### (autoloads nil "semantic/chart" "cedet/semantic/chart.el"
28448;;;;;; (0 0 0 0))
28449;;; Generated autoloads from cedet/semantic/chart.el
28450
28451(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/chart" '("semantic-chart-analyzer" "semantic-chart-tag-complexity" "semantic-chart-token-complexity" "semantic-chart-database-size" "semantic-chart-tags-by-class")))
28452
28453;;;***
28454
28455;;;### (autoloads "actual autoloads are elsewhere" "semantic/complete"
28456;;;;;; "cedet/semantic/complete.el" (22164 57533 951192 607000))
28457;;; Generated autoloads from cedet/semantic/complete.el
28458
28459(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/complete" '("semantic-complete-" "semantic-completion-" "semantic-collector-" "semantic-displayor-")))
28460
28461;;;***
28462
28463;;;### (autoloads "actual autoloads are elsewhere" "semantic/ctxt"
28464;;;;;; "cedet/semantic/ctxt.el" (22164 57533 951192 607000))
28465;;; Generated autoloads from cedet/semantic/ctxt.el
28466
28467(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/ctxt" '("semantic-")))
28468
28469;;;***
28470
28471;;;### (autoloads "actual autoloads are elsewhere" "semantic/db"
28472;;;;;; "cedet/semantic/db.el" (22164 57533 955192 607000))
28473;;; Generated autoloads from cedet/semantic/db.el
28474
28475(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db" '("semanticdb-")))
28476
28477;;;***
28478
28479;;;### (autoloads nil "semantic/db-debug" "cedet/semantic/db-debug.el"
28480;;;;;; (0 0 0 0))
28481;;; Generated autoloads from cedet/semantic/db-debug.el
28482
28483(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db-debug" '("semanticdb-adebug-" "semanticdb-database-sanity-check" "semanticdb-dump-all-table-summary" "semanticdb-table-sanity-check" "semanticdb-table-oob-sanity-check")))
28484
28485;;;***
28486
28487;;;### (autoloads nil "semantic/db-ebrowse" "cedet/semantic/db-ebrowse.el"
28488;;;;;; (0 0 0 0))
28489;;; Generated autoloads from cedet/semantic/db-ebrowse.el
28490
28491(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db-ebrowse" '("semanticdb-" "c++-mode")))
28492
28493;;;***
28494
28495;;;### (autoloads nil "semantic/db-el" "cedet/semantic/db-el.el"
28496;;;;;; (0 0 0 0))
28497;;; Generated autoloads from cedet/semantic/db-el.el
28498
28499(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db-el" '("semanticdb-elisp-sym-" "semanticdb-project-database-emacs-lisp" "semanticdb-table-emacs-lisp" "emacs-lisp-mode" "semanticdb-elisp-mapatom-collector")))
28500
28501;;;***
28502
28503;;;### (autoloads "actual autoloads are elsewhere" "semantic/db-file"
28504;;;;;; "cedet/semantic/db-file.el" (22220 16330 615423 271000))
28505;;; Generated autoloads from cedet/semantic/db-file.el
28506
28507(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db-file" '("semanticdb-")))
28508
28509;;;***
28510
28511;;;### (autoloads "actual autoloads are elsewhere" "semantic/db-find"
28512;;;;;; "cedet/semantic/db-find.el" (22164 57533 951192 607000))
28513;;; Generated autoloads from cedet/semantic/db-find.el
28514
28515(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db-find" '("semanticdb-")))
28516
28517;;;***
28518
28519;;;### (autoloads "actual autoloads are elsewhere" "semantic/db-global"
28520;;;;;; "cedet/semantic/db-global.el" (22164 57533 955192 607000))
28521;;; Generated autoloads from cedet/semantic/db-global.el
28522
28523(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db-global" '("semanticdb-enable-gnu-global-hook" "semanticdb-enable-gnu-global-in-buffer" "semanticdb-project-database-global" "semanticdb-table-global")))
28524
28525;;;***
28526
28527;;;### (autoloads nil "semantic/db-javascript" "cedet/semantic/db-javascript.el"
28528;;;;;; (0 0 0 0))
28529;;; Generated autoloads from cedet/semantic/db-javascript.el
28530
28531(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db-javascript" '("semanticdb-javascript-" "javascript-mode" "semanticdb-table-javascript" "semanticdb-project-database-javascript" "semanticdb-find-translate-path")))
28532
28533;;;***
28534
28535;;;### (autoloads "actual autoloads are elsewhere" "semantic/db-mode"
28536;;;;;; "cedet/semantic/db-mode.el" (22220 16330 615423 271000))
28537;;; Generated autoloads from cedet/semantic/db-mode.el
28538
28539(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db-mode" '("semanticdb-")))
28540
28541;;;***
28542
28543;;;### (autoloads nil "semantic/db-ref" "cedet/semantic/db-ref.el"
28544;;;;;; (0 0 0 0))
28545;;; Generated autoloads from cedet/semantic/db-ref.el
28546
28547(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db-ref" '("semanticdb-ref-test" "semanticdb-ref-adebug")))
28548
28549;;;***
28550
28551;;;### (autoloads "actual autoloads are elsewhere" "semantic/db-typecache"
28552;;;;;; "cedet/semantic/db-typecache.el" (22164 57533 955192 607000))
28553;;; Generated autoloads from cedet/semantic/db-typecache.el
28554
28555(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/db-typecache" '("semanticdb-typecache-" "semanticdb-expand-nested-tag" "semanticdb-db-typecache-dump")))
28556
28557;;;***
28558
28559;;;### (autoloads "actual autoloads are elsewhere" "semantic/debug"
28560;;;;;; "cedet/semantic/debug.el" (22164 57533 955192 607000))
28561;;; Generated autoloads from cedet/semantic/debug.el
28562
28563(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/debug" '("semantic-debug-")))
28564
28565;;;***
28566
28567;;;### (autoloads nil "semantic/decorate" "cedet/semantic/decorate.el"
28568;;;;;; (0 0 0 0))
28569;;; Generated autoloads from cedet/semantic/decorate.el
28570
28571(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/decorate" '("semantic-" "semantic--tag-link-secondary-overlays" "semantic--tag-unlink-copy-secondary-overlays" "semantic--tag-unlink-secondary-overlays")))
28572
28573;;;***
28574
28575;;;### (autoloads "actual autoloads are elsewhere" "semantic/decorate/include"
28576;;;;;; "cedet/semantic/decorate/include.el" (22164 57533 955192
28577;;;;;; 607000))
28578;;; Generated autoloads from cedet/semantic/decorate/include.el
28579
28580(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/decorate/include" '("semantic-decoration-")))
28581
28582;;;***
28583
28584;;;### (autoloads "actual autoloads are elsewhere" "semantic/decorate/mode"
28585;;;;;; "cedet/semantic/decorate/mode.el" (22164 57533 955192 607000))
28586;;; Generated autoloads from cedet/semantic/decorate/mode.el
28587
28588(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/decorate/mode" '("semantic-" "define-semantic-decoration-style")))
28589
28590;;;***
28591
28592;;;### (autoloads "actual autoloads are elsewhere" "semantic/dep"
28593;;;;;; "cedet/semantic/dep.el" (22164 57533 955192 607000))
28594;;; Generated autoloads from cedet/semantic/dep.el
28595
28596(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/dep" '("semantic-dependency-include-path" "semantic-dependency-system-include-path" "semantic-dependency-find-file-on-path" "defcustom-mode-local-semantic-dependency-system-include-path" "semantic--dependency-find-file-on-path")))
28597
28598;;;***
28599
28600;;;### (autoloads "actual autoloads are elsewhere" "semantic/doc"
28601;;;;;; "cedet/semantic/doc.el" (22164 57533 955192 607000))
28602;;; Generated autoloads from cedet/semantic/doc.el
28603
28604(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/doc" '("semantic-documentation-comment-preceding-tag" "semantic-doc-snarf-comment-for-tag")))
28605
28606;;;***
28607
28608;;;### (autoloads nil "semantic/ede-grammar" "cedet/semantic/ede-grammar.el"
28609;;;;;; (0 0 0 0))
28610;;; Generated autoloads from cedet/semantic/ede-grammar.el
28611
28612(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/ede-grammar" '("semantic-ede-grammar-compiler-" "semantic-ede-proj-target-grammar" "semantic-ede-source-grammar-bovine" "semantic-ede-source-grammar-wisent")))
28613
28614;;;***
28615
28616;;;### (autoloads "actual autoloads are elsewhere" "semantic/edit"
28617;;;;;; "cedet/semantic/edit.el" (22164 57533 955192 607000))
28618;;; Generated autoloads from cedet/semantic/edit.el
28619
28620(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/edit" '("semantic-")))
28621
28622;;;***
28623
28624;;;### (autoloads "actual autoloads are elsewhere" "semantic/find"
28625;;;;;; "cedet/semantic/find.el" (22164 57533 959192 607000))
28626;;; Generated autoloads from cedet/semantic/find.el
28627
28628(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/find" '("semantic-" "semantic--find-tags-by-macro" "semantic--find-tags-by-function")))
28629
28630;;;***
28631
28632;;;### (autoloads "actual autoloads are elsewhere" "semantic/format"
28633;;;;;; "cedet/semantic/format.el" (22164 57533 959192 607000))
28634;;; Generated autoloads from cedet/semantic/format.el
28635
28636(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/format" '("semantic-format-" "semantic--format-" "semantic-uml-" "semantic-function-argument-separator")))
28637
28638;;;***
28639
28640;;;### (autoloads nil "semantic/fw" "cedet/semantic/fw.el" (0 0 0
28641;;;;;; 0))
28642;;; Generated autoloads from cedet/semantic/fw.el
28643
28644(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/fw" '("semantic-" "semanticdb-without-unloaded-file-searches" "semantic--on-input-start-marker")))
28645
28646;;;***
28647
28648;;;### (autoloads nil "semantic/grammar" "cedet/semantic/grammar.el"
28649;;;;;; (0 0 0 0))
28650;;; Generated autoloads from cedet/semantic/grammar.el
28651
28652(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/grammar" '("semantic--grammar-" "semantic-")))
28653
28654;;;***
28655
28656;;;### (autoloads nil "semantic/grammar-wy" "cedet/semantic/grammar-wy.el"
28657;;;;;; (0 0 0 0))
28658;;; Generated autoloads from cedet/semantic/grammar-wy.el
28659
28660(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/grammar-wy" '("semantic-grammar-wy--")))
28661
28662;;;***
28663
28664;;;### (autoloads "actual autoloads are elsewhere" "semantic/html"
28665;;;;;; "cedet/semantic/html.el" (22164 57533 971192 607000))
28666;;; Generated autoloads from cedet/semantic/html.el
28667
28668(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/html" '("semantic-html-" "semantic-parse-region" "semantic-parse-changes" "html-helper-mode" "semantic-sb-tag-children-to-expand")))
28669
28670;;;***
28671
28672;;;### (autoloads "actual autoloads are elsewhere" "semantic/ia"
28673;;;;;; "cedet/semantic/ia.el" (22164 57533 975192 607000))
28674;;; Generated autoloads from cedet/semantic/ia.el
28675
28676(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/ia" '("semantic-ia-completion-" "semantic-ia-get-" "semantic-ia-insert-tag-default" "semantic-ia-insert-tag" "semantic-ia--fast-jump-helper")))
28677
28678;;;***
28679
28680;;;### (autoloads "actual autoloads are elsewhere" "semantic/ia-sb"
28681;;;;;; "cedet/semantic/ia-sb.el" (22164 57533 971192 607000))
28682;;; Generated autoloads from cedet/semantic/ia-sb.el
28683
28684(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/ia-sb" '("semantic-ia-sb-" "semantic-ia-speedbar")))
28685
28686;;;***
28687
28688;;;### (autoloads "actual autoloads are elsewhere" "semantic/idle"
28689;;;;;; "cedet/semantic/idle.el" (22164 57533 975192 607000))
28690;;; Generated autoloads from cedet/semantic/idle.el
28691
28692(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/idle" '("semantic-" "global-semantic-idle-summary-mode" "define-semantic-idle-service")))
28693
28694;;;***
28695
28696;;;### (autoloads "actual autoloads are elsewhere" "semantic/imenu"
28697;;;;;; "cedet/semantic/imenu.el" (22164 57533 975192 607000))
28698;;; Generated autoloads from cedet/semantic/imenu.el
28699
28700(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/imenu" '("semantic-imenu-" "semantic-create-imenu-" "semantic-default-which-function" "semantic-which-function-use-color" "semantic-which-function")))
28701
28702;;;***
28703
28704;;;### (autoloads nil "semantic/java" "cedet/semantic/java.el" (0
28705;;;;;; 0 0 0))
28706;;; Generated autoloads from cedet/semantic/java.el
28707
28708(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/java" '("semantic-java-" "semantic-tag-" "semantic-ctxt-scoped-types" "semantic-format-tag-prototype" "semantic-documentation-for-tag")))
28709
28710;;;***
28711
28712;;;### (autoloads "actual autoloads are elsewhere" "semantic/lex"
28713;;;;;; "cedet/semantic/lex.el" (22164 57533 979192 607000))
28714;;; Generated autoloads from cedet/semantic/lex.el
28715
28716(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/lex" '("define-lex-" "semantic-" "define-lex")))
28717
28718;;;***
28719
28720;;;### (autoloads "actual autoloads are elsewhere" "semantic/lex-spp"
28721;;;;;; "cedet/semantic/lex-spp.el" (22164 57533 979192 607000))
28722;;; Generated autoloads from cedet/semantic/lex-spp.el
28723
28724(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/lex-spp" '("semantic-lex-spp-" "define-lex-spp-macro-" "define-lex-spp-include-analyzer" "semantic-lex-make-spp-table" "semantic-lex-with-macro-used")))
28725
28726;;;***
28727
28728;;;### (autoloads "actual autoloads are elsewhere" "semantic/mru-bookmark"
28729;;;;;; "cedet/semantic/mru-bookmark.el" (22164 57533 979192 607000))
28730;;; Generated autoloads from cedet/semantic/mru-bookmark.el
28731
28732(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/mru-bookmark" '("semantic-" "global-semantic-mru-bookmark-mode")))
28733
28734;;;***
28735
28736;;;### (autoloads nil "semantic/sb" "cedet/semantic/sb.el" (0 0 0
28737;;;;;; 0))
28738;;; Generated autoloads from cedet/semantic/sb.el
28739
28740(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/sb" '("semantic-sb-")))
28741
28742;;;***
28743
28744;;;### (autoloads "actual autoloads are elsewhere" "semantic/scope"
28745;;;;;; "cedet/semantic/scope.el" (22164 57533 983192 607000))
28746;;; Generated autoloads from cedet/semantic/scope.el
28747
28748(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/scope" '("semantic-analyze-scoped-" "semantic-scope-" "semantic-analyze-scope-" "semantic-completable-tags-from-type")))
28749
28750;;;***
28751
28752;;;### (autoloads "actual autoloads are elsewhere" "semantic/senator"
28753;;;;;; "cedet/semantic/senator.el" (22189 60738 73741 19000))
28754;;; Generated autoloads from cedet/semantic/senator.el
28755
28756(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/senator" '("senator-" "semantic-up-reference" "semantic-up-reference-default" "senator--search-filter")))
28757
28758;;;***
28759
28760;;;### (autoloads "actual autoloads are elsewhere" "semantic/sort"
28761;;;;;; "cedet/semantic/sort.el" (22164 57533 983192 607000))
28762;;; Generated autoloads from cedet/semantic/sort.el
28763
28764(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/sort" '("semantic-")))
28765
28766;;;***
28767
28768;;;### (autoloads "actual autoloads are elsewhere" "semantic/symref"
28769;;;;;; "cedet/semantic/symref.el" (22325 43443 618604 871000))
28770;;; Generated autoloads from cedet/semantic/symref.el
28771
28772(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/symref" '("semantic-symref-")))
28773
28774;;;***
28775
28776;;;### (autoloads "actual autoloads are elsewhere" "semantic/symref/cscope"
28777;;;;;; "cedet/semantic/symref/cscope.el" (22294 1450 520812 63000))
28778;;; Generated autoloads from cedet/semantic/symref/cscope.el
28779
28780(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/symref/cscope" '("semantic-symref-cscope--line-re")))
28781
28782;;;***
28783
28784;;;### (autoloads nil "semantic/symref/filter" "cedet/semantic/symref/filter.el"
28785;;;;;; (0 0 0 0))
28786;;; Generated autoloads from cedet/semantic/symref/filter.el
28787
28788(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/symref/filter" '("semantic-symref-rename-local-variable" "semantic-symref-test-count-hits-in-tag" "semantic-symref-hits-in-region" "semantic-symref-filter-hit")))
28789
28790;;;***
28791
28792;;;### (autoloads "actual autoloads are elsewhere" "semantic/symref/global"
28793;;;;;; "cedet/semantic/symref/global.el" (22294 1450 536812 63000))
28794;;; Generated autoloads from cedet/semantic/symref/global.el
28795
28796(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/symref/global" '("semantic-symref-global--line-re")))
28797
28798;;;***
28799
28800;;;### (autoloads "actual autoloads are elsewhere" "semantic/symref/grep"
28801;;;;;; "cedet/semantic/symref/grep.el" (22294 1450 612812 63000))
28802;;; Generated autoloads from cedet/semantic/symref/grep.el
28803
28804(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/symref/grep" '("semantic-symref-grep-" "semantic-symref-grep--line-re" "semantic-symref-derive-find-filepatterns" "semantic-symref-filepattern-alist")))
28805
28806;;;***
28807
28808;;;### (autoloads "actual autoloads are elsewhere" "semantic/symref/idutils"
28809;;;;;; "cedet/semantic/symref/idutils.el" (22294 1450 612812 63000))
28810;;; Generated autoloads from cedet/semantic/symref/idutils.el
28811
28812(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/symref/idutils" '("semantic-symref-idutils--line-re")))
28813
28814;;;***
28815
28816;;;### (autoloads "actual autoloads are elsewhere" "semantic/symref/list"
28817;;;;;; "cedet/semantic/symref/list.el" (22164 57533 987192 607000))
28818;;; Generated autoloads from cedet/semantic/symref/list.el
28819
28820(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/symref/list" '("semantic-symref-")))
28821
28822;;;***
28823
28824;;;### (autoloads "actual autoloads are elsewhere" "semantic/tag"
28825;;;;;; "cedet/semantic/tag.el" (22164 57533 991192 607000))
28826;;; Generated autoloads from cedet/semantic/tag.el
28827
28828(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/tag" '("semantic--tag-" "semantic-")))
28829
28830;;;***
28831
28832;;;### (autoloads "actual autoloads are elsewhere" "semantic/tag-file"
28833;;;;;; "cedet/semantic/tag-file.el" (22164 57533 987192 607000))
28834;;; Generated autoloads from cedet/semantic/tag-file.el
28835
28836(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/tag-file" '("semantic-prototype-file")))
28837
28838;;;***
28839
28840;;;### (autoloads "actual autoloads are elsewhere" "semantic/tag-ls"
28841;;;;;; "cedet/semantic/tag-ls.el" (22164 57533 991192 607000))
28842;;; Generated autoloads from cedet/semantic/tag-ls.el
28843
28844(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/tag-ls" '("semantic-tag-" "semantic--tag-attribute-similar-" "semantic--tag-similar-names-" "semantic--tag-similar-types-p" "semantic--tag-similar-types-p-default")))
28845
28846;;;***
28847
28848;;;### (autoloads "actual autoloads are elsewhere" "semantic/tag-write"
28849;;;;;; "cedet/semantic/tag-write.el" (22164 57533 991192 607000))
28850;;; Generated autoloads from cedet/semantic/tag-write.el
28851
28852(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/tag-write" '("semantic-tag-write-tag-list" "semantic-tag-write-one-value" "semantic-tag-write-one-attribute" "semantic-tag-write-one-tag")))
28853
28854;;;***
28855
28856;;;### (autoloads "actual autoloads are elsewhere" "semantic/texi"
28857;;;;;; "cedet/semantic/texi.el" (22257 7109 253189 216000))
28858;;; Generated autoloads from cedet/semantic/texi.el
28859
28860(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/texi" '("semantic-")))
28861
28862;;;***
28863
28864;;;### (autoloads nil "semantic/util" "cedet/semantic/util.el" (0
28865;;;;;; 0 0 0))
28866;;; Generated autoloads from cedet/semantic/util.el
28867
28868(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/util" '("semantic-")))
28869
28870;;;***
28871
28872;;;### (autoloads "actual autoloads are elsewhere" "semantic/util-modes"
28873;;;;;; "cedet/semantic/util-modes.el" (22164 57534 3192 607000))
28874;;; Generated autoloads from cedet/semantic/util-modes.el
28875
28876(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/util-modes" '("semantic-")))
28877
28878;;;***
28879
28880;;;### (autoloads nil "semantic/wisent" "cedet/semantic/wisent.el"
28881;;;;;; (0 0 0 0))
28882;;; Generated autoloads from cedet/semantic/wisent.el
28883
28884(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/wisent" '("wisent-" "define-wisent-lexer")))
28885
28886;;;***
28887
28888;;;### (autoloads nil "semantic/wisent/comp" "cedet/semantic/wisent/comp.el"
28889;;;;;; (0 0 0 0))
28890;;; Generated autoloads from cedet/semantic/wisent/comp.el
28891
28892(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/wisent/comp" '("wisent-")))
28893
24058;;;*** 28894;;;***
24059 28895
24060;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el" 28896;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el"
@@ -24066,6 +28902,40 @@ Major mode for editing Wisent grammars.
24066 28902
24067\(fn)" t nil) 28903\(fn)" t nil)
24068 28904
28905(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/wisent/grammar" '("wisent-grammar-" "wisent-make-" "wisent--grammar-macros" "wisent--make-parser-1" "wisent-batch-make-parser")))
28906
28907;;;***
28908
28909;;;### (autoloads "actual autoloads are elsewhere" "semantic/wisent/java-tags"
28910;;;;;; "cedet/semantic/wisent/java-tags.el" (22164 57534 7192 607000))
28911;;; Generated autoloads from cedet/semantic/wisent/java-tags.el
28912
28913(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/wisent/java-tags" '("semantic-analyze-split-name" "semantic-analyze-unsplit-name" "wisent-java-parse-error" "semantic-get-local-variables")))
28914
28915;;;***
28916
28917;;;### (autoloads "actual autoloads are elsewhere" "semantic/wisent/javascript"
28918;;;;;; "cedet/semantic/wisent/javascript.el" (22164 57534 7192 607000))
28919;;; Generated autoloads from cedet/semantic/wisent/javascript.el
28920
28921(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/wisent/javascript" '("semantic-" "js-mode" "wisent-javascript-jv-expand-tag")))
28922
28923;;;***
28924
28925;;;### (autoloads "actual autoloads are elsewhere" "semantic/wisent/python"
28926;;;;;; "cedet/semantic/wisent/python.el" (22164 57534 7192 607000))
28927;;; Generated autoloads from cedet/semantic/wisent/python.el
28928
28929(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/wisent/python" '("wisent-python-" "semantic-" "python-3-mode" "python-2-mode")))
28930
28931;;;***
28932
28933;;;### (autoloads nil "semantic/wisent/wisent" "cedet/semantic/wisent/wisent.el"
28934;;;;;; (0 0 0 0))
28935;;; Generated autoloads from cedet/semantic/wisent/wisent.el
28936
28937(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "semantic/wisent/wisent" '("wisent-" "$action" "$nterm" "$region")))
28938
24069;;;*** 28939;;;***
24070 28940
24071;;;### (autoloads nil "sendmail" "mail/sendmail.el" (0 0 0 0)) 28941;;;### (autoloads nil "sendmail" "mail/sendmail.el" (0 0 0 0))
@@ -24347,12 +29217,16 @@ Like `mail' command, but display mail buffer in another frame.
24347 29217
24348\(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t nil) 29218\(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t nil)
24349 29219
29220(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sendmail" '("mail-" "sendmail-")))
29221
24350;;;*** 29222;;;***
24351 29223
24352;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (0 0 0 0)) 29224;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (0 0 0 0))
24353;;; Generated autoloads from emacs-lisp/seq.el 29225;;; Generated autoloads from emacs-lisp/seq.el
24354(push (purecopy '(seq 2 14)) package--builtin-versions) 29226(push (purecopy '(seq 2 14)) package--builtin-versions)
24355 29227
29228(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "seq" '("seq-" "seq--make-pcase-" "seq--activate-font-lock-keywords" "seq--elt-safe" "seq--count-successive")))
29229
24356;;;*** 29230;;;***
24357 29231
24358;;;### (autoloads nil "server" "server.el" (0 0 0 0)) 29232;;;### (autoloads nil "server" "server.el" (0 0 0 0))
@@ -24364,6 +29238,13 @@ Like `mail' command, but display mail buffer in another frame.
24364 29238
24365(put 'server-auth-dir 'risky-local-variable t) 29239(put 'server-auth-dir 'risky-local-variable t)
24366 29240
29241(defvar server-name "server" "\
29242The name of the Emacs server, if this Emacs process creates one.
29243The command `server-start' makes use of this. It should not be
29244changed while a server is running.")
29245
29246(custom-autoload 'server-name "server" t)
29247
24367(autoload 'server-start "server" "\ 29248(autoload 'server-start "server" "\
24368Allow this Emacs process to be a server for client processes. 29249Allow this Emacs process to be a server for client processes.
24369This starts a server communications subprocess through which client 29250This starts a server communications subprocess through which client
@@ -24421,6 +29302,8 @@ only these files will be asked to be saved.
24421 29302
24422\(fn ARG)" nil nil) 29303\(fn ARG)" nil nil)
24423 29304
29305(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "server" '("server-" "server--on-display-p")))
29306
24424;;;*** 29307;;;***
24425 29308
24426;;;### (autoloads nil "ses" "ses.el" (0 0 0 0)) 29309;;;### (autoloads nil "ses" "ses.el" (0 0 0 0))
@@ -24465,6 +29348,8 @@ formula:
24465 29348
24466\(fn)" t nil) 29349\(fn)" t nil)
24467 29350
29351(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ses" '("ses-" "ses--" "ses+" "noreturn" "1value")))
29352
24468;;;*** 29353;;;***
24469 29354
24470;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (0 0 0 29355;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (0 0 0
@@ -24531,6 +29416,8 @@ To work around that, do:
24531 29416
24532\(fn)" t nil) 29417\(fn)" t nil)
24533 29418
29419(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sgml-mode" '("sgml-" "html-")))
29420
24534;;;*** 29421;;;***
24535 29422
24536;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (0 0 0 29423;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (0 0 0
@@ -24597,6 +29484,8 @@ with your script for an edit-interpret-debug cycle.
24597 29484
24598(defalias 'shell-script-mode 'sh-mode) 29485(defalias 'shell-script-mode 'sh-mode)
24599 29486
29487(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sh-script" '("sh-" "sh--inside-noncommand-expression" "sh--vars-before-point" "sh--cmd-completion-table" "sh--maybe-here-document")))
29488
24600;;;*** 29489;;;***
24601 29490
24602;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (0 0 0 0)) 29491;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (0 0 0 0))
@@ -24646,6 +29535,8 @@ function, `load-path-shadows-find'.
24646 29535
24647\(fn &optional STRINGP)" t nil) 29536\(fn &optional STRINGP)" t nil)
24648 29537
29538(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "shadow" '("load-path-shadows-")))
29539
24649;;;*** 29540;;;***
24650 29541
24651;;;### (autoloads nil "shadowfile" "shadowfile.el" (0 0 0 0)) 29542;;;### (autoloads nil "shadowfile" "shadowfile.el" (0 0 0 0))
@@ -24684,6 +29575,8 @@ Set up file shadowing.
24684 29575
24685\(fn)" t nil) 29576\(fn)" t nil)
24686 29577
29578(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "shadowfile" '("shadow-" "shadowfile-unload-function")))
29579
24687;;;*** 29580;;;***
24688 29581
24689;;;### (autoloads nil "shell" "shell.el" (0 0 0 0)) 29582;;;### (autoloads nil "shell" "shell.el" (0 0 0 0))
@@ -24732,6 +29625,8 @@ Otherwise, one argument `-i' is passed to the shell.
24732 29625
24733\(fn &optional BUFFER)" t nil) 29626\(fn &optional BUFFER)" t nil)
24734 29627
29628(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "shell" '("shell-" "shell--" "explicit-" "dirs")))
29629
24735;;;*** 29630;;;***
24736 29631
24737;;;### (autoloads nil "shr" "net/shr.el" (0 0 0 0)) 29632;;;### (autoloads nil "shr" "net/shr.el" (0 0 0 0))
@@ -24749,6 +29644,15 @@ DOM should be a parse tree as generated by
24749 29644
24750\(fn DOM)" nil nil) 29645\(fn DOM)" nil nil)
24751 29646
29647(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "shr" '("shr-" "shr--")))
29648
29649;;;***
29650
29651;;;### (autoloads nil "shr-color" "net/shr-color.el" (0 0 0 0))
29652;;; Generated autoloads from net/shr-color.el
29653
29654(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "shr-color" '("shr-color-")))
29655
24752;;;*** 29656;;;***
24753 29657
24754;;;### (autoloads nil "sieve" "net/sieve.el" (0 0 0 0)) 29658;;;### (autoloads nil "sieve" "net/sieve.el" (0 0 0 0))
@@ -24774,6 +29678,16 @@ DOM should be a parse tree as generated by
24774 29678
24775\(fn &optional NAME)" t nil) 29679\(fn &optional NAME)" t nil)
24776 29680
29681(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sieve" '("sieve-")))
29682
29683;;;***
29684
29685;;;### (autoloads nil "sieve-manage" "net/sieve-manage.el" (0 0 0
29686;;;;;; 0))
29687;;; Generated autoloads from net/sieve-manage.el
29688
29689(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sieve-manage" '("sieve-manage-" "sieve-sasl-auth")))
29690
24777;;;*** 29691;;;***
24778 29692
24779;;;### (autoloads nil "sieve-mode" "net/sieve-mode.el" (0 0 0 0)) 29693;;;### (autoloads nil "sieve-mode" "net/sieve-mode.el" (0 0 0 0))
@@ -24789,6 +29703,8 @@ Turning on Sieve mode runs `sieve-mode-hook'.
24789 29703
24790\(fn)" t nil) 29704\(fn)" t nil)
24791 29705
29706(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sieve-mode" '("sieve-")))
29707
24792;;;*** 29708;;;***
24793 29709
24794;;;### (autoloads nil "simula" "progmodes/simula.el" (0 0 0 0)) 29710;;;### (autoloads nil "simula" "progmodes/simula.el" (0 0 0 0))
@@ -24837,6 +29753,8 @@ with no arguments, if that value is non-nil.
24837 29753
24838\(fn)" t nil) 29754\(fn)" t nil)
24839 29755
29756(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "simula" '("simula-")))
29757
24840;;;*** 29758;;;***
24841 29759
24842;;;### (autoloads nil "skeleton" "skeleton.el" (0 0 0 0)) 29760;;;### (autoloads nil "skeleton" "skeleton.el" (0 0 0 0))
@@ -24956,6 +29874,8 @@ twice for the others.
24956 29874
24957\(fn ARG)" t nil) 29875\(fn ARG)" t nil)
24958 29876
29877(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "skeleton" '("skeleton-")))
29878
24959;;;*** 29879;;;***
24960 29880
24961;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (0 0 0 0)) 29881;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (0 0 0 0))
@@ -24983,6 +29903,15 @@ If no conflict maker is found, turn off `smerge-mode'.
24983 29903
24984\(fn)" t nil) 29904\(fn)" t nil)
24985 29905
29906(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smerge-mode" '("smerge-" "smerge--get-marker")))
29907
29908;;;***
29909
29910;;;### (autoloads nil "smie" "emacs-lisp/smie.el" (0 0 0 0))
29911;;; Generated autoloads from emacs-lisp/smie.el
29912
29913(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smie" '("smie-" "smie--")))
29914
24986;;;*** 29915;;;***
24987 29916
24988;;;### (autoloads nil "smiley" "gnus/smiley.el" (0 0 0 0)) 29917;;;### (autoloads nil "smiley" "gnus/smiley.el" (0 0 0 0))
@@ -25000,6 +29929,15 @@ interactively. If there's no argument, do it at the current buffer.
25000 29929
25001\(fn &optional BUFFER)" t nil) 29930\(fn &optional BUFFER)" t nil)
25002 29931
29932(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smiley" '("smiley-" "gnus-smiley-file-types")))
29933
29934;;;***
29935
29936;;;### (autoloads nil "smime" "gnus/smime.el" (0 0 0 0))
29937;;; Generated autoloads from gnus/smime.el
29938
29939(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smime" '("smime-" "smime")))
29940
25003;;;*** 29941;;;***
25004 29942
25005;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (0 0 0 0)) 29943;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (0 0 0 0))
@@ -25015,6 +29953,8 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'.
25015 29953
25016\(fn)" t nil) 29954\(fn)" t nil)
25017 29955
29956(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smtpmail" '("smtpmail-")))
29957
25018;;;*** 29958;;;***
25019 29959
25020;;;### (autoloads nil "snake" "play/snake.el" (0 0 0 0)) 29960;;;### (autoloads nil "snake" "play/snake.el" (0 0 0 0))
@@ -25038,6 +29978,8 @@ Snake mode keybindings:
25038 29978
25039\(fn)" t nil) 29979\(fn)" t nil)
25040 29980
29981(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "snake" '("snake-")))
29982
25041;;;*** 29983;;;***
25042 29984
25043;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (0 0 0 0)) 29985;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (0 0 0 0))
@@ -25067,12 +30009,31 @@ then `snmpv2-mode-hook'.
25067 30009
25068\(fn)" t nil) 30010\(fn)" t nil)
25069 30011
30012(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "snmp-mode" '("snmp-" "snmpv2-mode-hook" "snmpv2-mode-abbrev-table" "snmpv2-tempo-tags")))
30013
25070;;;*** 30014;;;***
25071 30015
25072;;;### (autoloads nil "soap-client" "net/soap-client.el" (0 0 0 0)) 30016;;;### (autoloads nil "soap-client" "net/soap-client.el" (0 0 0 0))
25073;;; Generated autoloads from net/soap-client.el 30017;;; Generated autoloads from net/soap-client.el
25074(push (purecopy '(soap-client 3 1 1)) package--builtin-versions) 30018(push (purecopy '(soap-client 3 1 1)) package--builtin-versions)
25075 30019
30020(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "soap-client" '("soap-")))
30021
30022;;;***
30023
30024;;;### (autoloads nil "soap-inspect" "net/soap-inspect.el" (0 0 0
30025;;;;;; 0))
30026;;; Generated autoloads from net/soap-inspect.el
30027
30028(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "soap-inspect" '("soap-inspect-" "soap-sample-" "soap-client-describe-" "soap-inspect" "soap-insert-describe-button")))
30029
30030;;;***
30031
30032;;;### (autoloads nil "socks" "net/socks.el" (0 0 0 0))
30033;;; Generated autoloads from net/socks.el
30034
30035(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "socks" '("socks-")))
30036
25076;;;*** 30037;;;***
25077 30038
25078;;;### (autoloads nil "solar" "calendar/solar.el" (0 0 0 0)) 30039;;;### (autoloads nil "solar" "calendar/solar.el" (0 0 0 0))
@@ -25088,6 +30049,8 @@ This function is suitable for execution in an init file.
25088 30049
25089\(fn &optional ARG)" t nil) 30050\(fn &optional ARG)" t nil)
25090 30051
30052(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "solar" '("solar-" "calendar-" "diary-sunrise-sunset")))
30053
25091;;;*** 30054;;;***
25092 30055
25093;;;### (autoloads nil "solitaire" "play/solitaire.el" (0 0 0 0)) 30056;;;### (autoloads nil "solitaire" "play/solitaire.el" (0 0 0 0))
@@ -25163,6 +30126,8 @@ Pick your favorite shortcuts:
25163 30126
25164\(fn ARG)" t nil) 30127\(fn ARG)" t nil)
25165 30128
30129(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "solitaire" '("solitaire-")))
30130
25166;;;*** 30131;;;***
25167 30132
25168;;;### (autoloads nil "sort" "sort.el" (0 0 0 0)) 30133;;;### (autoloads nil "sort" "sort.el" (0 0 0 0))
@@ -25338,6 +30303,15 @@ is non-nil, it also prints a message describing the number of deletions.
25338 30303
25339\(fn BEG END &optional REVERSE ADJACENT KEEP-BLANKS INTERACTIVE)" t nil) 30304\(fn BEG END &optional REVERSE ADJACENT KEEP-BLANKS INTERACTIVE)" t nil)
25340 30305
30306(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sort" '("sort-")))
30307
30308;;;***
30309
30310;;;### (autoloads nil "soundex" "soundex.el" (0 0 0 0))
30311;;; Generated autoloads from soundex.el
30312
30313(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "soundex" '("soundex-alist" "soundex")))
30314
25341;;;*** 30315;;;***
25342 30316
25343;;;### (autoloads nil "spam" "gnus/spam.el" (0 0 0 0)) 30317;;;### (autoloads nil "spam" "gnus/spam.el" (0 0 0 0))
@@ -25352,6 +30326,8 @@ installed through `spam-necessary-extra-headers'.
25352 30326
25353\(fn &rest SYMBOLS)" t nil) 30327\(fn &rest SYMBOLS)" t nil)
25354 30328
30329(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "spam" '("spam-")))
30330
25355;;;*** 30331;;;***
25356 30332
25357;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (0 0 0 30333;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (0 0 0
@@ -25395,6 +30371,22 @@ Spam reports will be queued with the method used when
25395 30371
25396\(fn)" t nil) 30372\(fn)" t nil)
25397 30373
30374(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "spam-report" '("spam-report-")))
30375
30376;;;***
30377
30378;;;### (autoloads nil "spam-stat" "gnus/spam-stat.el" (0 0 0 0))
30379;;; Generated autoloads from gnus/spam-stat.el
30380
30381(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "spam-stat" '("spam-stat-" "with-spam-stat-max-buffer-size" "spam-stat")))
30382
30383;;;***
30384
30385;;;### (autoloads nil "spam-wash" "gnus/spam-wash.el" (0 0 0 0))
30386;;; Generated autoloads from gnus/spam-wash.el
30387
30388(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "spam-wash" '("spam-treat-parts" "spam-wash")))
30389
25398;;;*** 30390;;;***
25399 30391
25400;;;### (autoloads nil "speedbar" "speedbar.el" (0 0 0 0)) 30392;;;### (autoloads nil "speedbar" "speedbar.el" (0 0 0 0))
@@ -25419,6 +30411,8 @@ selected. If the speedbar frame is active, then select the attached frame.
25419 30411
25420\(fn)" t nil) 30412\(fn)" t nil)
25421 30413
30414(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "speedbar" '("speedbar-")))
30415
25422;;;*** 30416;;;***
25423 30417
25424;;;### (autoloads nil "spook" "play/spook.el" (0 0 0 0)) 30418;;;### (autoloads nil "spook" "play/spook.el" (0 0 0 0))
@@ -25434,6 +30428,8 @@ Return a vector containing the lines from `spook-phrases-file'.
25434 30428
25435\(fn)" nil nil) 30429\(fn)" nil nil)
25436 30430
30431(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "spook" '("spook-phrases-file" "spook-phrase-default-count")))
30432
25437;;;*** 30433;;;***
25438 30434
25439;;;### (autoloads nil "sql" "progmodes/sql.el" (0 0 0 0)) 30435;;;### (autoloads nil "sql" "progmodes/sql.el" (0 0 0 0))
@@ -25900,12 +30896,160 @@ Run vsql as an inferior process.
25900 30896
25901\(fn &optional BUFFER)" t nil) 30897\(fn &optional BUFFER)" t nil)
25902 30898
30899(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "sql" '("sql-" "sql--completion-table" "sql--make-help-docstring" "sql--help-docstring" "sql--oracle-show-reserved-words")))
30900
25903;;;*** 30901;;;***
25904 30902
25905;;;### (autoloads nil "srecode" "cedet/srecode.el" (0 0 0 0)) 30903;;;### (autoloads nil "srecode" "cedet/srecode.el" (0 0 0 0))
25906;;; Generated autoloads from cedet/srecode.el 30904;;; Generated autoloads from cedet/srecode.el
25907(push (purecopy '(srecode 1 2)) package--builtin-versions) 30905(push (purecopy '(srecode 1 2)) package--builtin-versions)
25908 30906
30907(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode" '("srecode-version")))
30908
30909;;;***
30910
30911;;;### (autoloads nil "srecode/args" "cedet/srecode/args.el" (0 0
30912;;;;;; 0 0))
30913;;; Generated autoloads from cedet/srecode/args.el
30914
30915(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/args" '("srecode-semantic-handle-:" "srecode-handle-region-when-non-active-flag")))
30916
30917;;;***
30918
30919;;;### (autoloads "actual autoloads are elsewhere" "srecode/compile"
30920;;;;;; "cedet/srecode/compile.el" (22164 57534 7192 607000))
30921;;; Generated autoloads from cedet/srecode/compile.el
30922
30923(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/compile" '("srecode-compile-" "srecode-template" "srecode-flush-active-templates" "srecode-template-inserter" "srecode-dump-code-list")))
30924
30925;;;***
30926
30927;;;### (autoloads "actual autoloads are elsewhere" "srecode/cpp"
30928;;;;;; "cedet/srecode/cpp.el" (22164 57534 7192 607000))
30929;;; Generated autoloads from cedet/srecode/cpp.el
30930
30931(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/cpp" '("srecode-semantic-handle-:using-namespaces" "srecode-semantic-apply-tag-to-dict" "srecode-cpp-namespaces" "srecode-c-apply-templates")))
30932
30933;;;***
30934
30935;;;### (autoloads nil "srecode/ctxt" "cedet/srecode/ctxt.el" (0 0
30936;;;;;; 0 0))
30937;;; Generated autoloads from cedet/srecode/ctxt.el
30938
30939(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/ctxt" '("srecode-calculate-context-default" "srecode-calculate-context-font-lock" "srecode-semantic-handle-:ctxt" "srecode-calculate-nearby-things" "srecode-calculate-context")))
30940
30941;;;***
30942
30943;;;### (autoloads nil "srecode/dictionary" "cedet/srecode/dictionary.el"
30944;;;;;; (0 0 0 0))
30945;;; Generated autoloads from cedet/srecode/dictionary.el
30946
30947(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/dictionary" '("srecode-create-" "srecode-dictionary-" "srecode-adebug-dictionary" "srecode-field-value" "srecode-dictionary")))
30948
30949;;;***
30950
30951;;;### (autoloads "actual autoloads are elsewhere" "srecode/document"
30952;;;;;; "cedet/srecode/document.el" (22164 57534 11192 607000))
30953;;; Generated autoloads from cedet/srecode/document.el
30954
30955(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/document" '("srecode-document-")))
30956
30957;;;***
30958
30959;;;### (autoloads "actual autoloads are elsewhere" "srecode/el" "cedet/srecode/el.el"
30960;;;;;; (22164 57534 11192 607000))
30961;;; Generated autoloads from cedet/srecode/el.el
30962
30963(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/el" '("srecode-semantic-apply-tag-to-dict")))
30964
30965;;;***
30966
30967;;;### (autoloads "actual autoloads are elsewhere" "srecode/expandproto"
30968;;;;;; "cedet/srecode/expandproto.el" (22164 57534 11192 607000))
30969;;; Generated autoloads from cedet/srecode/expandproto.el
30970
30971(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/expandproto" '("srecode-find-prototype-for-expansion" "srecode-expandproto-template-file-alist")))
30972
30973;;;***
30974
30975;;;### (autoloads nil "srecode/extract" "cedet/srecode/extract.el"
30976;;;;;; (0 0 0 0))
30977;;; Generated autoloads from cedet/srecode/extract.el
30978
30979(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/extract" '("srecode-extract-state" "srecode-extract-code-stream" "srecode-extract")))
30980
30981;;;***
30982
30983;;;### (autoloads nil "srecode/fields" "cedet/srecode/fields.el"
30984;;;;;; (0 0 0 0))
30985;;; Generated autoloads from cedet/srecode/fields.el
30986
30987(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/fields" '("srecode-")))
30988
30989;;;***
30990
30991;;;### (autoloads nil "srecode/filters" "cedet/srecode/filters.el"
30992;;;;;; (0 0 0 0))
30993;;; Generated autoloads from cedet/srecode/filters.el
30994
30995(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/filters" '("srecode-comment-prefix")))
30996
30997;;;***
30998
30999;;;### (autoloads nil "srecode/find" "cedet/srecode/find.el" (0 0
31000;;;;;; 0 0))
31001;;; Generated autoloads from cedet/srecode/find.el
31002
31003(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/find" '("srecode-")))
31004
31005;;;***
31006
31007;;;### (autoloads "actual autoloads are elsewhere" "srecode/getset"
31008;;;;;; "cedet/srecode/getset.el" (22164 57534 15192 607000))
31009;;; Generated autoloads from cedet/srecode/getset.el
31010
31011(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/getset" '("srecode-position-new-" "srecode-auto-choose-" "srecode-insert-getset-fully-automatic-flag" "srecode-strip-fieldname" "srecode-query-for-field")))
31012
31013;;;***
31014
31015;;;### (autoloads "actual autoloads are elsewhere" "srecode/insert"
31016;;;;;; "cedet/srecode/insert.el" (22328 19625 560549 735000))
31017;;; Generated autoloads from cedet/srecode/insert.el
31018
31019(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/insert" '("srecode-" "srecode--insert-into-buffer")))
31020
31021;;;***
31022
31023;;;### (autoloads "actual autoloads are elsewhere" "srecode/map"
31024;;;;;; "cedet/srecode/map.el" (22164 57534 15192 607000))
31025;;; Generated autoloads from cedet/srecode/map.el
31026
31027(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/map" '("srecode-map-" "srecode-maps-dump-file-list" "srecode-adebug-maps" "srecode-map" "srecode-current-map")))
31028
31029;;;***
31030
31031;;;### (autoloads "actual autoloads are elsewhere" "srecode/mode"
31032;;;;;; "cedet/srecode/mode.el" (22164 57534 15192 607000))
31033;;; Generated autoloads from cedet/srecode/mode.el
31034
31035(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/mode" '("srecode-")))
31036
31037;;;***
31038
31039;;;### (autoloads nil "srecode/semantic" "cedet/srecode/semantic.el"
31040;;;;;; (0 0 0 0))
31041;;; Generated autoloads from cedet/srecode/semantic.el
31042
31043(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/semantic" '("srecode-semantic-")))
31044
31045;;;***
31046
31047;;;### (autoloads "actual autoloads are elsewhere" "srecode/srt"
31048;;;;;; "cedet/srecode/srt.el" (22164 57534 19192 607000))
31049;;; Generated autoloads from cedet/srecode/srt.el
31050
31051(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/srt" '("srecode-read-variable-name" "srecode-read-variable-name-history" "srecode-read-major-mode-name" "srecode-read-major-mode-history")))
31052
25909;;;*** 31053;;;***
25910 31054
25911;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" 31055;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el"
@@ -25919,6 +31063,32 @@ Major-mode for writing SRecode macros.
25919 31063
25920(defalias 'srt-mode 'srecode-template-mode) 31064(defalias 'srt-mode 'srecode-template-mode)
25921 31065
31066(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/srt-mode" '("srecode-" "semantic-")))
31067
31068;;;***
31069
31070;;;### (autoloads nil "srecode/table" "cedet/srecode/table.el" (0
31071;;;;;; 0 0 0))
31072;;; Generated autoloads from cedet/srecode/table.el
31073
31074(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/table" '("srecode-" "object-sort-list")))
31075
31076;;;***
31077
31078;;;### (autoloads "actual autoloads are elsewhere" "srecode/template"
31079;;;;;; "cedet/srecode/template.el" (22164 57534 19192 607000))
31080;;; Generated autoloads from cedet/srecode/template.el
31081
31082(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/template" '("semantic-tag-components")))
31083
31084;;;***
31085
31086;;;### (autoloads "actual autoloads are elsewhere" "srecode/texi"
31087;;;;;; "cedet/srecode/texi.el" (22164 57534 19192 607000))
31088;;; Generated autoloads from cedet/srecode/texi.el
31089
31090(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srecode/texi" '("srecode-texi-texify-" "srecode-texi-add-menu" "srecode-texi-insert-tag-as-doc" "srecode-texi-massage-to-texinfo" "semantic-insert-foreign-tag")))
31091
25922;;;*** 31092;;;***
25923 31093
25924;;;### (autoloads nil "starttls" "net/starttls.el" (0 0 0 0)) 31094;;;### (autoloads nil "starttls" "net/starttls.el" (0 0 0 0))
@@ -25942,6 +31112,8 @@ GnuTLS requires a port number.
25942 31112
25943\(fn NAME BUFFER HOST PORT)" nil nil) 31113\(fn NAME BUFFER HOST PORT)" nil nil)
25944 31114
31115(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "starttls" '("starttls-")))
31116
25945;;;*** 31117;;;***
25946 31118
25947;;;### (autoloads nil "strokes" "strokes.el" (0 0 0 0)) 31119;;;### (autoloads nil "strokes" "strokes.el" (0 0 0 0))
@@ -26056,6 +31228,8 @@ Read a complex stroke and insert its glyph into the current buffer.
26056 31228
26057\(fn)" t nil) 31229\(fn)" t nil)
26058 31230
31231(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "strokes" '("strokes-")))
31232
26059;;;*** 31233;;;***
26060 31234
26061;;;### (autoloads nil "studly" "play/studly.el" (0 0 0 0)) 31235;;;### (autoloads nil "studly" "play/studly.el" (0 0 0 0))
@@ -26078,6 +31252,13 @@ Studlify-case the current buffer.
26078 31252
26079;;;*** 31253;;;***
26080 31254
31255;;;### (autoloads nil "subr-x" "emacs-lisp/subr-x.el" (0 0 0 0))
31256;;; Generated autoloads from emacs-lisp/subr-x.el
31257
31258(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "subr-x" '("string-" "internal--" "hash-table-" "thread-" "if-let" "when-let")))
31259
31260;;;***
31261
26081;;;### (autoloads nil "subword" "progmodes/subword.el" (0 0 0 0)) 31262;;;### (autoloads nil "subword" "progmodes/subword.el" (0 0 0 0))
26082;;; Generated autoloads from progmodes/subword.el 31263;;; Generated autoloads from progmodes/subword.el
26083 31264
@@ -26170,6 +31351,8 @@ See `superword-mode' for more information on Superword mode.
26170 31351
26171\(fn &optional ARG)" t nil) 31352\(fn &optional ARG)" t nil)
26172 31353
31354(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "subword" '("subword-" "superword-mode-map")))
31355
26173;;;*** 31356;;;***
26174 31357
26175;;;### (autoloads nil "supercite" "mail/supercite.el" (0 0 0 0)) 31358;;;### (autoloads nil "supercite" "mail/supercite.el" (0 0 0 0))
@@ -26202,6 +31385,15 @@ and `sc-post-hook' is run after the guts of this function.
26202 31385
26203\(fn)" nil nil) 31386\(fn)" nil nil)
26204 31387
31388(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "supercite" '("sc-")))
31389
31390;;;***
31391
31392;;;### (autoloads nil "svg" "svg.el" (0 0 0 0))
31393;;; Generated autoloads from svg.el
31394
31395(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "svg" '("svg-" "svg--append" "svg--arguments" "svg--def")))
31396
26205;;;*** 31397;;;***
26206 31398
26207;;;### (autoloads nil "t-mouse" "t-mouse.el" (0 0 0 0)) 31399;;;### (autoloads nil "t-mouse" "t-mouse.el" (0 0 0 0))
@@ -26235,6 +31427,8 @@ GPM. This is due to limitations in GPM and the Linux kernel.
26235 31427
26236\(fn &optional ARG)" t nil) 31428\(fn &optional ARG)" t nil)
26237 31429
31430(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "t-mouse" '("gpm-mouse-disable" "gpm-mouse-enable")))
31431
26238;;;*** 31432;;;***
26239 31433
26240;;;### (autoloads nil "tabify" "tabify.el" (0 0 0 0)) 31434;;;### (autoloads nil "tabify" "tabify.el" (0 0 0 0))
@@ -26264,6 +31458,8 @@ The variable `tab-width' controls the spacing of tab stops.
26264 31458
26265\(fn START END &optional ARG)" t nil) 31459\(fn START END &optional ARG)" t nil)
26266 31460
31461(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tabify" '("tabify-regexp")))
31462
26267;;;*** 31463;;;***
26268 31464
26269;;;### (autoloads nil "table" "textmodes/table.el" (0 0 0 0)) 31465;;;### (autoloads nil "table" "textmodes/table.el" (0 0 0 0))
@@ -26835,6 +32031,8 @@ converts a table into plain text without frames. It is a companion to
26835 32031
26836\(fn)" t nil) 32032\(fn)" t nil)
26837 32033
32034(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "table" '("table--" "table-" "*table--cell-" "*table--present-cell-popup-menu")))
32035
26838;;;*** 32036;;;***
26839 32037
26840;;;### (autoloads nil "talk" "talk.el" (0 0 0 0)) 32038;;;### (autoloads nil "talk" "talk.el" (0 0 0 0))
@@ -26850,6 +32048,8 @@ Connect to the Emacs talk group from the current X display or tty frame.
26850 32048
26851\(fn)" t nil) 32049\(fn)" t nil)
26852 32050
32051(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "talk" '("talk-")))
32052
26853;;;*** 32053;;;***
26854 32054
26855;;;### (autoloads nil "tar-mode" "tar-mode.el" (0 0 0 0)) 32055;;;### (autoloads nil "tar-mode" "tar-mode.el" (0 0 0 0))
@@ -26873,6 +32073,8 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
26873 32073
26874\(fn)" t nil) 32074\(fn)" t nil)
26875 32075
32076(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tar-mode" '("tar-" "tar--extract" "tar--check-descriptor" "tar--put-at" "tar--pad-to")))
32077
26876;;;*** 32078;;;***
26877 32079
26878;;;### (autoloads nil "tcl" "progmodes/tcl.el" (0 0 0 0)) 32080;;;### (autoloads nil "tcl" "progmodes/tcl.el" (0 0 0 0))
@@ -26921,6 +32123,24 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'.
26921 32123
26922\(fn COMMAND &optional ARG)" t nil) 32124\(fn COMMAND &optional ARG)" t nil)
26923 32125
32126(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tcl" '("tcl-" "inferior-tcl-" "switch-to-tcl" "run-tcl" "add-log-tcl-defun" "indent-tcl-exp" "calculate-tcl-indent")))
32127
32128;;;***
32129
32130;;;### (autoloads nil "tcover-ses" "emacs-lisp/tcover-ses.el" (0
32131;;;;;; 0 0 0))
32132;;; Generated autoloads from emacs-lisp/tcover-ses.el
32133
32134(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tcover-ses" '("ses-exercise-macros" "ses-exercise-signals" "ses-exercise-invalid-spreadsheets" "ses-exercise-startup" "ses-exercise")))
32135
32136;;;***
32137
32138;;;### (autoloads nil "tcover-unsafep" "emacs-lisp/tcover-unsafep.el"
32139;;;;;; (0 0 0 0))
32140;;; Generated autoloads from emacs-lisp/tcover-unsafep.el
32141
32142(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tcover-unsafep" '("testcover-unsafep" "testcover-unsafep-unsafe" "testcover-unsafep-safe")))
32143
26924;;;*** 32144;;;***
26925 32145
26926;;;### (autoloads nil "telnet" "net/telnet.el" (0 0 0 0)) 32146;;;### (autoloads nil "telnet" "net/telnet.el" (0 0 0 0))
@@ -26946,6 +32166,15 @@ Normally input is edited in Emacs and sent a line at a time.
26946 32166
26947\(fn HOST)" t nil) 32167\(fn HOST)" t nil)
26948 32168
32169(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "telnet" '("telnet-" "send-process-next-char")))
32170
32171;;;***
32172
32173;;;### (autoloads nil "tempo" "tempo.el" (0 0 0 0))
32174;;; Generated autoloads from tempo.el
32175
32176(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tempo" '("tempo-")))
32177
26949;;;*** 32178;;;***
26950 32179
26951;;;### (autoloads nil "term" "term.el" (0 0 0 0)) 32180;;;### (autoloads nil "term" "term.el" (0 0 0 0))
@@ -26988,6 +32217,8 @@ use in that buffer.
26988 32217
26989\(fn PORT SPEED)" t nil) 32218\(fn PORT SPEED)" t nil)
26990 32219
32220(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "term" '("term-" "serial-" "explicit-shell-file-name" "ansi-term-color-vector")))
32221
26991;;;*** 32222;;;***
26992 32223
26993;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (0 0 32224;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (0 0
@@ -26999,6 +32230,8 @@ Start coverage on function under point.
26999 32230
27000\(fn)" t nil) 32231\(fn)" t nil)
27001 32232
32233(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "testcover" '("testcover-" "testcover--read")))
32234
27002;;;*** 32235;;;***
27003 32236
27004;;;### (autoloads nil "tetris" "play/tetris.el" (0 0 0 0)) 32237;;;### (autoloads nil "tetris" "play/tetris.el" (0 0 0 0))
@@ -27024,6 +32257,8 @@ tetris-mode keybindings:
27024 32257
27025\(fn)" t nil) 32258\(fn)" t nil)
27026 32259
32260(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tetris" '("tetris-")))
32261
27027;;;*** 32262;;;***
27028 32263
27029;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (0 0 0 0)) 32264;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (0 0 0 0))
@@ -27325,6 +32560,8 @@ Major mode to edit DocTeX files.
27325 32560
27326\(fn)" t nil) 32561\(fn)" t nil)
27327 32562
32563(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tex-mode" '("tex-" "latex-" "doctex-font-lock-" "tex--prettify-symbols-" "plain-tex-mode-map")))
32564
27328;;;*** 32565;;;***
27329 32566
27330;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (0 0 0 0)) 32567;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (0 0 0 0))
@@ -27364,6 +32601,8 @@ if large. You can use `Info-split' to do this manually.
27364 32601
27365\(fn &optional NOSPLIT)" t nil) 32602\(fn &optional NOSPLIT)" t nil)
27366 32603
32604(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "texinfmt" '("texinfo-" "batch-texinfo-format" "texinfmt-version")))
32605
27367;;;*** 32606;;;***
27368 32607
27369;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (0 0 0 0)) 32608;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (0 0 0 0))
@@ -27448,6 +32687,16 @@ value of `texinfo-mode-hook'.
27448 32687
27449\(fn)" t nil) 32688\(fn)" t nil)
27450 32689
32690(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "texinfo" '("texinfo-")))
32691
32692;;;***
32693
32694;;;### (autoloads nil "texnfo-upd" "textmodes/texnfo-upd.el" (0 0
32695;;;;;; 0 0))
32696;;; Generated autoloads from textmodes/texnfo-upd.el
32697
32698(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "texnfo-upd" '("texinfo-")))
32699
27451;;;*** 32700;;;***
27452 32701
27453;;;### (autoloads nil "thai-util" "language/thai-util.el" (0 0 0 32702;;;### (autoloads nil "thai-util" "language/thai-util.el" (0 0 0
@@ -27476,6 +32725,16 @@ Compose Thai characters in the current buffer.
27476 32725
27477\(fn GSTRING)" nil nil) 32726\(fn GSTRING)" nil nil)
27478 32727
32728(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "thai-util" '("thai-" "exit-thai-language-environment-internal" "setup-thai-language-environment-internal")))
32729
32730;;;***
32731
32732;;;### (autoloads nil "thai-word" "language/thai-word.el" (0 0 0
32733;;;;;; 0))
32734;;; Generated autoloads from language/thai-word.el
32735
32736(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "thai-word" '("thai-")))
32737
27479;;;*** 32738;;;***
27480 32739
27481;;;### (autoloads nil "thingatpt" "thingatpt.el" (0 0 0 0)) 32740;;;### (autoloads nil "thingatpt" "thingatpt.el" (0 0 0 0))
@@ -27540,6 +32799,8 @@ Return the Lisp list at point, or nil if none is found.
27540 32799
27541\(fn)" nil nil) 32800\(fn)" nil nil)
27542 32801
32802(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "thingatpt" '("thing-at-" "form-at-point" "sentence-at-point" "word-at-point" "in-string-p" "end-of-thing" "beginning-of-thing")))
32803
27543;;;*** 32804;;;***
27544 32805
27545;;;### (autoloads nil "thumbs" "thumbs.el" (0 0 0 0)) 32806;;;### (autoloads nil "thumbs" "thumbs.el" (0 0 0 0))
@@ -27574,12 +32835,16 @@ In dired, call the setroot program on the image at point.
27574 32835
27575\(fn)" t nil) 32836\(fn)" t nil)
27576 32837
32838(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "thumbs" '("thumbs-")))
32839
27577;;;*** 32840;;;***
27578 32841
27579;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (0 0 0 0)) 32842;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (0 0 0 0))
27580;;; Generated autoloads from emacs-lisp/thunk.el 32843;;; Generated autoloads from emacs-lisp/thunk.el
27581(push (purecopy '(thunk 1 0)) package--builtin-versions) 32844(push (purecopy '(thunk 1 0)) package--builtin-versions)
27582 32845
32846(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "thunk" '("thunk-evaluated-p" "thunk-force" "thunk-delay")))
32847
27583;;;*** 32848;;;***
27584 32849
27585;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (0 0 32850;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (0 0
@@ -27654,6 +32919,8 @@ See also docstring of the function tibetan-compose-region.
27654 32919
27655\(fn FROM TO)" nil nil) 32920\(fn FROM TO)" nil nil)
27656 32921
32922(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tibet-util" '("tibetan-canonicalize-for-unicode-" "tibetan-obsolete-glyphs" "tibetan-add-components" "tibetan-decompose-precomposition-alist" "tibetan-strict-unicode")))
32923
27657;;;*** 32924;;;***
27658 32925
27659;;;### (autoloads nil "tildify" "textmodes/tildify.el" (0 0 0 0)) 32926;;;### (autoloads nil "tildify" "textmodes/tildify.el" (0 0 0 0))
@@ -27720,6 +32987,8 @@ variable will be set to the representation.
27720 32987
27721\(fn &optional ARG)" t nil) 32988\(fn &optional ARG)" t nil)
27722 32989
32990(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tildify" '("tildify-" "tildify--pick-alist-entry" "tildify--deprecated-ignore-evironments" "tildify--foreach-region" "tildify--find-env")))
32991
27723;;;*** 32992;;;***
27724 32993
27725;;;### (autoloads nil "time" "time.el" (0 0 0 0)) 32994;;;### (autoloads nil "time" "time.el" (0 0 0 0))
@@ -27783,6 +33052,8 @@ Return a string giving the duration of the Emacs initialization.
27783 33052
27784\(fn)" t nil) 33053\(fn)" t nil)
27785 33054
33055(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "time" '("display-time-" "zoneinfo-style-world-list" "legacy-style-world-list")))
33056
27786;;;*** 33057;;;***
27787 33058
27788;;;### (autoloads nil "time-date" "calendar/time-date.el" (0 0 0 33059;;;### (autoloads nil "time-date" "calendar/time-date.el" (0 0 0
@@ -27794,11 +33065,8 @@ Parse a string DATE that represents a date-time and return a time value.
27794If DATE lacks timezone information, GMT is assumed. 33065If DATE lacks timezone information, GMT is assumed.
27795 33066
27796\(fn DATE)" nil nil) 33067\(fn DATE)" nil nil)
27797(if (or (featurep 'emacs) 33068
27798 (and (fboundp 'float-time) 33069(defalias 'time-to-seconds 'float-time)
27799 (subrp (symbol-function 'float-time))))
27800 (defalias 'time-to-seconds 'float-time)
27801 (autoload 'time-to-seconds "time-date"))
27802 33070
27803(autoload 'seconds-to-time "time-date" "\ 33071(autoload 'seconds-to-time "time-date" "\
27804Convert SECONDS to a time value. 33072Convert SECONDS to a time value.
@@ -27816,10 +33084,7 @@ TIME should be either a time value or a date-time string.
27816 33084
27817\(fn TIME)" nil nil) 33085\(fn TIME)" nil nil)
27818 33086
27819(defalias 'subtract-time 'time-subtract) 33087(define-obsolete-function-alias 'subtract-time 'time-subtract "26.1")
27820(autoload 'time-add "time-date")
27821(autoload 'time-subtract "time-date")
27822(autoload 'time-less-p "time-date")
27823 33088
27824(autoload 'date-to-day "time-date" "\ 33089(autoload 'date-to-day "time-date" "\
27825Return the number of days between year 1 and DATE. 33090Return the number of days between year 1 and DATE.
@@ -27887,6 +33152,8 @@ Convert the time interval in seconds to a short string.
27887 33152
27888\(fn DELAY)" nil nil) 33153\(fn DELAY)" nil nil)
27889 33154
33155(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "time-date" '("time-to-number-of-days" "time-date--day-in-year" "seconds-to-string" "encode-time-value" "with-decoded-time-value")))
33156
27890;;;*** 33157;;;***
27891 33158
27892;;;### (autoloads nil "time-stamp" "time-stamp.el" (0 0 0 0)) 33159;;;### (autoloads nil "time-stamp" "time-stamp.el" (0 0 0 0))
@@ -27927,6 +33194,8 @@ With ARG, turn time stamping on if and only if arg is positive.
27927 33194
27928\(fn &optional ARG)" t nil) 33195\(fn &optional ARG)" t nil)
27929 33196
33197(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "time-stamp" '("time-stamp-" "time-stamp--format")))
33198
27930;;;*** 33199;;;***
27931 33200
27932;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (0 0 0 33201;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (0 0 0
@@ -28038,6 +33307,8 @@ relative only to the time worked today, and not to past time.
28038 33307
28039\(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil) 33308\(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil)
28040 33309
33310(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "timeclock" '("timeclock-")))
33311
28041;;;*** 33312;;;***
28042 33313
28043;;;### (autoloads nil "timer-list" "emacs-lisp/timer-list.el" (0 33314;;;### (autoloads nil "timer-list" "emacs-lisp/timer-list.el" (0
@@ -28050,6 +33321,15 @@ List all timers in a buffer.
28050\(fn &optional IGNORE-AUTO NONCONFIRM)" t nil) 33321\(fn &optional IGNORE-AUTO NONCONFIRM)" t nil)
28051 (put 'timer-list 'disabled "Beware: manually canceling timers can ruin your Emacs session.") 33322 (put 'timer-list 'disabled "Beware: manually canceling timers can ruin your Emacs session.")
28052 33323
33324(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "timer-list" '("timer-list-mode-map" "timer-list-mode" "timer-list-cancel")))
33325
33326;;;***
33327
33328;;;### (autoloads nil "timezone" "timezone.el" (0 0 0 0))
33329;;; Generated autoloads from timezone.el
33330
33331(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "timezone" '("timezone-")))
33332
28053;;;*** 33333;;;***
28054 33334
28055;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el" 33335;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el"
@@ -28073,6 +33353,15 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\".
28073 33353
28074\(fn &optional FORCE)" nil nil) 33354\(fn &optional FORCE)" nil nil)
28075 33355
33356(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "titdic-cnv" '("tit-" "ctlau-" "tsang-" "quick-" "quail-" "batch-miscdic-convert" "miscdic-convert" "ziranma-converter" "py-converter")))
33357
33358;;;***
33359
33360;;;### (autoloads nil "tls" "net/tls.el" (0 0 0 0))
33361;;; Generated autoloads from net/tls.el
33362
33363(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tls" '("tls-" "open-tls-stream")))
33364
28076;;;*** 33365;;;***
28077 33366
28078;;;### (autoloads nil "tmm" "tmm.el" (0 0 0 0)) 33367;;;### (autoloads nil "tmm" "tmm.el" (0 0 0 0))
@@ -28115,6 +33404,8 @@ Its value should be an event that has a binding in MENU.
28115 33404
28116\(fn MENU &optional IN-POPUP DEFAULT-ITEM)" nil nil) 33405\(fn MENU &optional IN-POPUP DEFAULT-ITEM)" nil nil)
28117 33406
33407(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tmm" '("tmm-" "tmm--history" "tmm--completion-table")))
33408
28118;;;*** 33409;;;***
28119 33410
28120;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (0 0 0 33411;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (0 0 0
@@ -28124,11 +33415,12 @@ Its value should be an event that has a binding in MENU.
28124(autoload 'todo-show "todo-mode" "\ 33415(autoload 'todo-show "todo-mode" "\
28125Visit a todo file and display one of its categories. 33416Visit a todo file and display one of its categories.
28126 33417
28127When invoked in Todo mode, prompt for which todo file to visit. 33418When invoked in Todo mode, Todo Archive mode or Todo Filtered
28128When invoked outside of Todo mode with non-nil prefix argument 33419Items mode, or when invoked anywhere else with a prefix argument,
28129SOLICIT-FILE prompt for which todo file to visit; otherwise visit 33420prompt for which todo file to visit. When invoked outside of a
28130`todo-default-todo-file'. Subsequent invocations from outside 33421Todo mode buffer without a prefix argument, visit
28131of Todo mode revisit this file or, with option 33422`todo-default-todo-file'. Subsequent invocations from outside of
33423Todo mode revisit this file or, with option
28132`todo-show-current-file' non-nil (the default), whichever todo 33424`todo-show-current-file' non-nil (the default), whichever todo
28133file was last visited. 33425file was last visited.
28134 33426
@@ -28157,9 +33449,6 @@ by default. The done items are hidden, but typing
28157items. With non-nil user option `todo-show-with-done' both todo 33449items. With non-nil user option `todo-show-with-done' both todo
28158and done items are always shown on visiting a category. 33450and done items are always shown on visiting a category.
28159 33451
28160Invoking this command in Todo Archive mode visits the
28161corresponding todo file, displaying the corresponding category.
28162
28163\(fn &optional SOLICIT-FILE INTERACTIVE)" t nil) 33452\(fn &optional SOLICIT-FILE INTERACTIVE)" t nil)
28164 33453
28165(autoload 'todo-mode "todo-mode" "\ 33454(autoload 'todo-mode "todo-mode" "\
@@ -28183,6 +33472,8 @@ Mode for displaying and reprioritizing top priority Todo.
28183 33472
28184\(fn)" t nil) 33473\(fn)" t nil)
28185 33474
33475(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "todo-mode" '("todo-" "todo--user-error-if-marked-done-item")))
33476
28186;;;*** 33477;;;***
28187 33478
28188;;;### (autoloads nil "tool-bar" "tool-bar.el" (0 0 0 0)) 33479;;;### (autoloads nil "tool-bar" "tool-bar.el" (0 0 0 0))
@@ -28253,6 +33544,15 @@ holds a keymap.
28253 33544
28254\(fn COMMAND ICON IN-MAP &optional FROM-MAP &rest PROPS)" nil nil) 33545\(fn COMMAND ICON IN-MAP &optional FROM-MAP &rest PROPS)" nil nil)
28255 33546
33547(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tool-bar" '("tool-bar-" "tool-bar--image-expression")))
33548
33549;;;***
33550
33551;;;### (autoloads nil "tooltip" "tooltip.el" (0 0 0 0))
33552;;; Generated autoloads from tooltip.el
33553
33554(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tooltip" '("tooltip-")))
33555
28256;;;*** 33556;;;***
28257 33557
28258;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (0 0 0 0)) 33558;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (0 0 0 0))
@@ -28266,6 +33566,8 @@ to a tcp server on another machine.
28266 33566
28267\(fn PROCESS)" nil nil) 33567\(fn PROCESS)" nil nil)
28268 33568
33569(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tq" '("tq-")))
33570
28269;;;*** 33571;;;***
28270 33572
28271;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (0 0 0 0)) 33573;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (0 0 0 0))
@@ -28311,6 +33613,8 @@ the output buffer or changing the window configuration.
28311 33613
28312(defalias 'trace-function 'trace-function-foreground) 33614(defalias 'trace-function 'trace-function-foreground)
28313 33615
33616(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "trace" '("trace-" "trace--" "inhibit-trace" "untrace-function" "untrace-all")))
33617
28314;;;*** 33618;;;***
28315 33619
28316;;;### (autoloads nil "tramp" "net/tramp.el" (0 0 0 0)) 33620;;;### (autoloads nil "tramp" "net/tramp.el" (0 0 0 0))
@@ -28379,20 +33683,12 @@ updated after changing this variable.
28379 33683
28380Also see `tramp-file-name-structure'.") 33684Also see `tramp-file-name-structure'.")
28381 33685
28382(defconst tramp-completion-file-name-handler-alist '((file-name-all-completions . tramp-completion-handle-file-name-all-completions) (file-name-completion . tramp-completion-handle-file-name-completion)) "\
28383Alist of completion handler functions.
28384Used for file names matching `tramp-file-name-regexp'. Operations
28385not mentioned here will be handled by Tramp's file name handler
28386functions, or the normal Emacs functions.")
28387
28388(defun tramp-completion-run-real-handler (operation args) "\ 33686(defun tramp-completion-run-real-handler (operation args) "\
28389Invoke `tramp-file-name-handler' for OPERATION. 33687Invoke `tramp-file-name-handler' for OPERATION.
28390First arg specifies the OPERATION, second arg is a list of arguments to 33688First arg specifies the OPERATION, second arg is a list of arguments to
28391pass to the OPERATION." (let* ((inhibit-file-name-handlers (\` (tramp-completion-file-name-handler cygwin-mount-name-hook-function cygwin-mount-map-drive-hook-function \, (and (eq inhibit-file-name-operation operation) inhibit-file-name-handlers)))) (inhibit-file-name-operation operation)) (apply operation args))) 33689pass to the OPERATION." (let* ((inhibit-file-name-handlers (\` (tramp-completion-file-name-handler cygwin-mount-name-hook-function cygwin-mount-map-drive-hook-function \, (and (eq inhibit-file-name-operation operation) inhibit-file-name-handlers)))) (inhibit-file-name-operation operation)) (apply operation args)))
28392 33690(defun tramp-completion-file-name-handler (operation &rest args)
28393(defun tramp-completion-file-name-handler (operation &rest args) "\ 33691 (tramp-completion-run-real-handler operation args))
28394Invoke Tramp file name completion handler.
28395Falls back to normal file name handler if no Tramp file name handler exists." (let ((fn (assoc operation tramp-completion-file-name-handler-alist))) (if (and fn tramp-mode (or (eq tramp-syntax (quote sep)) (featurep (quote tramp)) (and (boundp (quote partial-completion-mode)) (symbol-value (quote partial-completion-mode))) (featurep (quote ido)) (featurep (quote icicles)))) (save-match-data (apply (cdr fn) args)) (tramp-completion-run-real-handler operation args))))
28396 33692
28397(defun tramp-autoload-file-name-handler (operation &rest args) "\ 33693(defun tramp-autoload-file-name-handler (operation &rest args) "\
28398Load Tramp file name handler, and perform OPERATION." (let ((default-directory temporary-file-directory)) (load "tramp" nil t)) (apply operation args)) 33694Load Tramp file name handler, and perform OPERATION." (let ((default-directory temporary-file-directory)) (load "tramp" nil t)) (apply operation args))
@@ -28407,21 +33703,50 @@ Add Tramp file name handlers to `file-name-handler-alist' during autoload." (add
28407 33703
28408\(fn)" nil nil) 33704\(fn)" nil nil)
28409 33705
28410(autoload 'tramp-completion-handle-file-name-all-completions "tramp" "\ 33706(defvar tramp-completion-mode nil "\
28411Like `file-name-all-completions' for partial Tramp files. 33707If non-nil, external packages signal that they are in file name completion.
28412
28413\(fn FILENAME DIRECTORY)" nil nil)
28414
28415(autoload 'tramp-completion-handle-file-name-completion "tramp" "\
28416Like `file-name-completion' for Tramp files.
28417 33708
28418\(fn FILENAME DIRECTORY &optional PREDICATE)" nil nil) 33709This is necessary, because Tramp uses a heuristic depending on last
33710input event. This fails when external packages use other characters
33711but <TAB>, <SPACE> or ?\\? for file name completion. This variable
33712should never be set globally, the intention is to let-bind it.")
28419 33713
28420(autoload 'tramp-unload-tramp "tramp" "\ 33714(autoload 'tramp-unload-tramp "tramp" "\
28421Discard Tramp from loading remote files. 33715Discard Tramp from loading remote files.
28422 33716
28423\(fn)" t nil) 33717\(fn)" t nil)
28424 33718
33719(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp" '("with-" "tramp-")))
33720
33721;;;***
33722
33723;;;### (autoloads nil "tramp-adb" "net/tramp-adb.el" (0 0 0 0))
33724;;; Generated autoloads from net/tramp-adb.el
33725
33726(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-adb" '("tramp-do-parse-file-attributes-with-ls" "tramp-adb-")))
33727
33728;;;***
33729
33730;;;### (autoloads nil "tramp-cache" "net/tramp-cache.el" (0 0 0 0))
33731;;; Generated autoloads from net/tramp-cache.el
33732
33733(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-cache" '("tramp-")))
33734
33735;;;***
33736
33737;;;### (autoloads nil "tramp-cmds" "net/tramp-cmds.el" (0 0 0 0))
33738;;; Generated autoloads from net/tramp-cmds.el
33739
33740(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-cmds" '("tramp-")))
33741
33742;;;***
33743
33744;;;### (autoloads nil "tramp-compat" "net/tramp-compat.el" (0 0 0
33745;;;;;; 0))
33746;;; Generated autoloads from net/tramp-compat.el
33747
33748(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-compat" '("tramp-compat-")))
33749
28425;;;*** 33750;;;***
28426 33751
28427;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (0 0 0 0)) 33752;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (0 0 0 0))
@@ -28432,12 +33757,58 @@ Discard Tramp from loading remote files.
28432 33757
28433\(fn)" nil nil) 33758\(fn)" nil nil)
28434 33759
33760(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-ftp" '("tramp-disable-ange-ftp" "tramp-ftp-method" "tramp-ftp-file-name-p" "tramp-ftp-file-name-handler")))
33761
33762;;;***
33763
33764;;;### (autoloads nil "tramp-gvfs" "net/tramp-gvfs.el" (0 0 0 0))
33765;;; Generated autoloads from net/tramp-gvfs.el
33766
33767(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-gvfs" '("with-tramp-dbus-call-method" "tramp-")))
33768
33769;;;***
33770
33771;;;### (autoloads nil "tramp-gw" "net/tramp-gw.el" (0 0 0 0))
33772;;; Generated autoloads from net/tramp-gw.el
33773
33774(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-gw" '("tramp-gw-" "socks-username" "socks-server")))
33775
33776;;;***
33777
33778;;;### (autoloads nil "tramp-sh" "net/tramp-sh.el" (0 0 0 0))
33779;;; Generated autoloads from net/tramp-sh.el
33780
33781(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-sh" '("tramp-")))
33782
33783;;;***
33784
33785;;;### (autoloads nil "tramp-smb" "net/tramp-smb.el" (0 0 0 0))
33786;;; Generated autoloads from net/tramp-smb.el
33787
33788(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-smb" '("tramp-smb-")))
33789
33790;;;***
33791
33792;;;### (autoloads nil "tramp-uu" "net/tramp-uu.el" (0 0 0 0))
33793;;; Generated autoloads from net/tramp-uu.el
33794
33795(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-uu" '("tramp-uu-byte-to-uu-char" "tramp-uuencode-region" "tramp-uu-b64-alphabet" "tramp-uu-b64-char-to-byte")))
33796
28435;;;*** 33797;;;***
28436 33798
28437;;;### (autoloads nil "trampver" "net/trampver.el" (0 0 0 0)) 33799;;;### (autoloads nil "trampver" "net/trampver.el" (0 0 0 0))
28438;;; Generated autoloads from net/trampver.el 33800;;; Generated autoloads from net/trampver.el
28439(push (purecopy '(tramp 2 3 0 -1)) package--builtin-versions) 33801(push (purecopy '(tramp 2 3 0 -1)) package--builtin-versions)
28440 33802
33803(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "trampver" '("tramp-version" "tramp-bug-report-address" "tramp-repository-get-version")))
33804
33805;;;***
33806
33807;;;### (autoloads nil "tree-widget" "tree-widget.el" (0 0 0 0))
33808;;; Generated autoloads from tree-widget.el
33809
33810(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tree-widget" '("tree-widget-" "tree-widget--cursors" "tree-widget--locate-sub-directory" "tree-widget--theme")))
33811
28441;;;*** 33812;;;***
28442 33813
28443;;;### (autoloads nil "tutorial" "tutorial.el" (0 0 0 0)) 33814;;;### (autoloads nil "tutorial" "tutorial.el" (0 0 0 0))
@@ -28462,6 +33833,8 @@ resumed later.
28462 33833
28463\(fn &optional ARG DONT-ASK-FOR-REVERT)" t nil) 33834\(fn &optional ARG DONT-ASK-FOR-REVERT)" t nil)
28464 33835
33836(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tutorial" '("tutorial--" "get-lang-string" "lang-strings")))
33837
28465;;;*** 33838;;;***
28466 33839
28467;;;### (autoloads nil "tv-util" "language/tv-util.el" (0 0 0 0)) 33840;;;### (autoloads nil "tv-util" "language/tv-util.el" (0 0 0 0))
@@ -28472,6 +33845,8 @@ resumed later.
28472 33845
28473\(fn FROM TO FONT-OBJECT STRING)" nil nil) 33846\(fn FROM TO FONT-OBJECT STRING)" nil nil)
28474 33847
33848(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tv-util" '("tai-viet-re" "tai-viet-glyph-info" "tai-viet-compose-string" "tai-viet-compose-region")))
33849
28475;;;*** 33850;;;***
28476 33851
28477;;;### (autoloads nil "two-column" "textmodes/two-column.el" (0 0 33852;;;### (autoloads nil "two-column" "textmodes/two-column.el" (0 0
@@ -28520,6 +33895,8 @@ First column's text sSs Second column's text
28520 33895
28521\(fn ARG)" t nil) 33896\(fn ARG)" t nil)
28522 33897
33898(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "two-column" '("2C-")))
33899
28523;;;*** 33900;;;***
28524 33901
28525;;;### (autoloads nil "type-break" "type-break.el" (0 0 0 0)) 33902;;;### (autoloads nil "type-break" "type-break.el" (0 0 0 0))
@@ -28653,6 +34030,8 @@ FRAC should be the inverse of the fractional value; for example, a value of
28653 34030
28654\(fn WPM &optional WORDLEN FRAC)" t nil) 34031\(fn WPM &optional WORDLEN FRAC)" t nil)
28655 34032
34033(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "type-break" '("type-break-" "timep")))
34034
28656;;;*** 34035;;;***
28657 34036
28658;;;### (autoloads nil "uce" "mail/uce.el" (0 0 0 0)) 34037;;;### (autoloads nil "uce" "mail/uce.el" (0 0 0 0))
@@ -28666,6 +34045,8 @@ You might need to set `uce-mail-reader' before using this.
28666 34045
28667\(fn &optional IGNORED)" t nil) 34046\(fn &optional IGNORED)" t nil)
28668 34047
34048(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "uce" '("uce-")))
34049
28669;;;*** 34050;;;***
28670 34051
28671;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el" 34052;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el"
@@ -28732,6 +34113,8 @@ Normalize the string STR by the Unicode NFC and Mac OS's HFS Plus.
28732 34113
28733\(fn STR)" nil nil) 34114\(fn STR)" nil nil)
28734 34115
34116(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ucs-normalize" '("ucs-normalize-" "utf-8-hfs")))
34117
28735;;;*** 34118;;;***
28736 34119
28737;;;### (autoloads nil "underline" "textmodes/underline.el" (0 0 0 34120;;;### (autoloads nil "underline" "textmodes/underline.el" (0 0 0
@@ -28755,6 +34138,14 @@ which specify the range to operate on.
28755 34138
28756;;;*** 34139;;;***
28757 34140
34141;;;### (autoloads "actual autoloads are elsewhere" "undigest" "mail/undigest.el"
34142;;;;;; (22164 57534 843192 607000))
34143;;; Generated autoloads from mail/undigest.el
34144
34145(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "undigest" '("rmail-digest-parse-" "rmail-digest-methods" "rmail-digest-rfc1153" "rmail-forward-separator-regex")))
34146
34147;;;***
34148
28758;;;### (autoloads nil "unrmail" "mail/unrmail.el" (0 0 0 0)) 34149;;;### (autoloads nil "unrmail" "mail/unrmail.el" (0 0 0 0))
28759;;; Generated autoloads from mail/unrmail.el 34150;;; Generated autoloads from mail/unrmail.el
28760 34151
@@ -28773,6 +34164,8 @@ The variable `unrmail-mbox-format' controls which mbox format to use.
28773 34164
28774\(fn FILE TO-FILE)" t nil) 34165\(fn FILE TO-FILE)" t nil)
28775 34166
34167(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "unrmail" '("unrmail-mbox-format")))
34168
28776;;;*** 34169;;;***
28777 34170
28778;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (0 0 0 0)) 34171;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (0 0 0 0))
@@ -28785,6 +34178,8 @@ UNSAFEP-VARS is a list of symbols with local bindings.
28785 34178
28786\(fn FORM &optional UNSAFEP-VARS)" nil nil) 34179\(fn FORM &optional UNSAFEP-VARS)" nil nil)
28787 34180
34181(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "unsafep" '("unsafep-" "safe-functions")))
34182
28788;;;*** 34183;;;***
28789 34184
28790;;;### (autoloads nil "url" "url/url.el" (0 0 0 0)) 34185;;;### (autoloads nil "url" "url/url.el" (0 0 0 0))
@@ -28837,6 +34232,15 @@ how long to wait for a response before giving up.
28837 34232
28838\(fn URL &optional SILENT INHIBIT-COOKIES TIMEOUT)" nil nil) 34233\(fn URL &optional SILENT INHIBIT-COOKIES TIMEOUT)" nil nil)
28839 34234
34235(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url" '("url-")))
34236
34237;;;***
34238
34239;;;### (autoloads nil "url-about" "url/url-about.el" (0 0 0 0))
34240;;; Generated autoloads from url/url-about.el
34241
34242(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-about" '("url-about" "url-about-protocols" "url-probe-protocols")))
34243
28840;;;*** 34244;;;***
28841 34245
28842;;;### (autoloads nil "url-auth" "url/url-auth.el" (0 0 0 0)) 34246;;;### (autoloads nil "url-auth" "url/url-auth.el" (0 0 0 0))
@@ -28878,6 +34282,8 @@ RATING a rating between 1 and 10 of the strength of the authentication.
28878 34282
28879\(fn TYPE &optional FUNCTION RATING)" nil nil) 34283\(fn TYPE &optional FUNCTION RATING)" nil nil)
28880 34284
34285(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-auth" '("url-digest-" "url-basic-" "url-auth-" "url-do-auth-source-search" "url-registered-auth-schemes")))
34286
28881;;;*** 34287;;;***
28882 34288
28883;;;### (autoloads nil "url-cache" "url/url-cache.el" (0 0 0 0)) 34289;;;### (autoloads nil "url-cache" "url/url-cache.el" (0 0 0 0))
@@ -28899,6 +34305,8 @@ Extract FNAM from the local disk cache.
28899 34305
28900\(fn FNAM)" nil nil) 34306\(fn FNAM)" nil nil)
28901 34307
34308(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-cache" '("url-cache-" "url-fetch-from-cache")))
34309
28902;;;*** 34310;;;***
28903 34311
28904;;;### (autoloads nil "url-cid" "url/url-cid.el" (0 0 0 0)) 34312;;;### (autoloads nil "url-cid" "url/url-cid.el" (0 0 0 0))
@@ -28909,6 +34317,15 @@ Extract FNAM from the local disk cache.
28909 34317
28910\(fn URL)" nil nil) 34318\(fn URL)" nil nil)
28911 34319
34320(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-cid" '("url-cid-gnus")))
34321
34322;;;***
34323
34324;;;### (autoloads nil "url-cookie" "url/url-cookie.el" (0 0 0 0))
34325;;; Generated autoloads from url/url-cookie.el
34326
34327(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-cookie" '("url-cookie-" "url-cookies-changed-since-last-save")))
34328
28912;;;*** 34329;;;***
28913 34330
28914;;;### (autoloads nil "url-dav" "url/url-dav.el" (0 0 0 0)) 34331;;;### (autoloads nil "url-dav" "url/url-dav.el" (0 0 0 0))
@@ -28943,6 +34360,29 @@ added to this list, so most requests can just pass in nil.
28943 34360
28944\(fn URL)" nil nil) 34361\(fn URL)" nil nil)
28945 34362
34363(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-dav" '("url-dav-" "url-intersection")))
34364
34365;;;***
34366
34367;;;### (autoloads nil "url-dired" "url/url-dired.el" (0 0 0 0))
34368;;; Generated autoloads from url/url-dired.el
34369
34370(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-dired" '("url-dired-minor-mode" "url-dired-minor-mode-map" "url-dired-find-file-mouse" "url-dired-find-file" "url-find-file-dired")))
34371
34372;;;***
34373
34374;;;### (autoloads nil "url-domsuf" "url/url-domsuf.el" (0 0 0 0))
34375;;; Generated autoloads from url/url-domsuf.el
34376
34377(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-domsuf" '("url-domsuf-cookie-allowed-p" "url-domsuf-parse-file" "url-domsuf-domains")))
34378
34379;;;***
34380
34381;;;### (autoloads nil "url-expand" "url/url-expand.el" (0 0 0 0))
34382;;; Generated autoloads from url/url-expand.el
34383
34384(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-expand" '("url-default-expander" "url-identity-expander" "url-expand-file-name" "url-expander-remove-relative-links")))
34385
28946;;;*** 34386;;;***
28947 34387
28948;;;### (autoloads nil "url-file" "url/url-file.el" (0 0 0 0)) 34388;;;### (autoloads nil "url-file" "url/url-file.el" (0 0 0 0))
@@ -28953,6 +34393,22 @@ Handle file: and ftp: URLs.
28953 34393
28954\(fn URL CALLBACK CBARGS)" nil nil) 34394\(fn URL CALLBACK CBARGS)" nil nil)
28955 34395
34396(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-file" '("url-file-")))
34397
34398;;;***
34399
34400;;;### (autoloads nil "url-ftp" "url/url-ftp.el" (0 0 0 0))
34401;;; Generated autoloads from url/url-ftp.el
34402
34403(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-ftp" '("url-ftp" "url-ftp-expand-file-name" "url-ftp-asynchronous-p" "url-ftp-default-port")))
34404
34405;;;***
34406
34407;;;### (autoloads nil "url-future" "url/url-future.el" (0 0 0 0))
34408;;; Generated autoloads from url/url-future.el
34409
34410(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-future" '("url-future-")))
34411
28956;;;*** 34412;;;***
28957 34413
28958;;;### (autoloads nil "url-gw" "url/url-gw.el" (0 0 0 0)) 34414;;;### (autoloads nil "url-gw" "url/url-gw.el" (0 0 0 0))
@@ -28974,6 +34430,8 @@ overriding the value of `url-gateway-method'.
28974 34430
28975\(fn NAME BUFFER HOST SERVICE &optional GATEWAY-METHOD)" nil nil) 34431\(fn NAME BUFFER HOST SERVICE &optional GATEWAY-METHOD)" nil nil)
28976 34432
34433(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-gw" '("url-gateway-" "url-open-rlogin" "url-open-telnet" "url-wait-for-string")))
34434
28977;;;*** 34435;;;***
28978 34436
28979;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (0 0 0 34437;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (0 0 0
@@ -29037,6 +34495,15 @@ if it had been inserted from a file named URL.
29037 34495
29038\(fn URL &optional VISIT BEG END REPLACE)" nil nil) 34496\(fn URL &optional VISIT BEG END REPLACE)" nil nil)
29039 34497
34498(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-handlers" '("url-handler-" "url-file-" "url-handlers-" "url-run-real-handler" "url-insert")))
34499
34500;;;***
34501
34502;;;### (autoloads nil "url-history" "url/url-history.el" (0 0 0 0))
34503;;; Generated autoloads from url/url-history.el
34504
34505(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-history" '("url-history-" "url-have-visited-url" "url-completion-function")))
34506
29040;;;*** 34507;;;***
29041 34508
29042;;;### (autoloads nil "url-http" "url/url-http.el" (0 0 0 0)) 34509;;;### (autoloads nil "url-http" "url/url-http.el" (0 0 0 0))
@@ -29049,6 +34516,15 @@ if it had been inserted from a file named URL.
29049 (autoload 'url-https-file-readable-p "url-http") 34516 (autoload 'url-https-file-readable-p "url-http")
29050 (autoload 'url-https-file-attributes "url-http") 34517 (autoload 'url-https-file-attributes "url-http")
29051 34518
34519(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-http" '("url-http-" "url-https-" "url-http--user-agent-default-string" "url-handle-content-transfer-encoding" "url-http")))
34520
34521;;;***
34522
34523;;;### (autoloads nil "url-imap" "url/url-imap.el" (0 0 0 0))
34524;;; Generated autoloads from url/url-imap.el
34525
34526(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-imap" '("url-imap-default-port" "url-imap-open-host" "url-imap")))
34527
29052;;;*** 34528;;;***
29053 34529
29054;;;### (autoloads nil "url-irc" "url/url-irc.el" (0 0 0 0)) 34530;;;### (autoloads nil "url-irc" "url/url-irc.el" (0 0 0 0))
@@ -29059,6 +34535,8 @@ if it had been inserted from a file named URL.
29059 34535
29060\(fn URL)" nil nil) 34536\(fn URL)" nil nil)
29061 34537
34538(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-irc" '("url-irc-default-port" "url-irc-function" "url-irc-zenirc" "url-irc-rcirc" "url-irc-erc")))
34539
29062;;;*** 34540;;;***
29063 34541
29064;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (0 0 0 0)) 34542;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (0 0 0 0))
@@ -29072,6 +34550,8 @@ URL can be a URL string, or a URL vector of the type returned by
29072 34550
29073\(fn URL)" nil nil) 34551\(fn URL)" nil nil)
29074 34552
34553(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-ldap" '("url-ldap-")))
34554
29075;;;*** 34555;;;***
29076 34556
29077;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (0 0 0 0)) 34557;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (0 0 0 0))
@@ -29087,6 +34567,15 @@ Handle the mailto: URL syntax.
29087 34567
29088\(fn URL)" nil nil) 34568\(fn URL)" nil nil)
29089 34569
34570(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-mailto" '("url-mail-goto-field")))
34571
34572;;;***
34573
34574;;;### (autoloads nil "url-methods" "url/url-methods.el" (0 0 0 0))
34575;;; Generated autoloads from url/url-methods.el
34576
34577(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-methods" '("url-scheme-" "url-scheme--registering-proxy")))
34578
29090;;;*** 34579;;;***
29091 34580
29092;;;### (autoloads nil "url-misc" "url/url-misc.el" (0 0 0 0)) 34581;;;### (autoloads nil "url-misc" "url/url-misc.el" (0 0 0 0))
@@ -29118,6 +34607,8 @@ Fetch a data URL (RFC 2397).
29118 34607
29119\(fn URL)" nil nil) 34608\(fn URL)" nil nil)
29120 34609
34610(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-misc" '("url-do-terminal-emulator")))
34611
29121;;;*** 34612;;;***
29122 34613
29123;;;### (autoloads nil "url-news" "url/url-news.el" (0 0 0 0)) 34614;;;### (autoloads nil "url-news" "url/url-news.el" (0 0 0 0))
@@ -29133,6 +34624,15 @@ Fetch a data URL (RFC 2397).
29133 34624
29134\(fn URL)" nil nil) 34625\(fn URL)" nil nil)
29135 34626
34627(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-news" '("url-news-fetch-newsgroup" "url-news-fetch-message-id" "url-news-open-host")))
34628
34629;;;***
34630
34631;;;### (autoloads nil "url-nfs" "url/url-nfs.el" (0 0 0 0))
34632;;; Generated autoloads from url/url-nfs.el
34633
34634(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-nfs" '("url-nfs" "url-nfs-create-wrapper" "url-nfs-build-filename" "url-nfs-unescape" "url-nfs-automounter-directory-spec")))
34635
29136;;;*** 34636;;;***
29137 34637
29138;;;### (autoloads nil "url-ns" "url/url-ns.el" (0 0 0 0)) 34638;;;### (autoloads nil "url-ns" "url/url-ns.el" (0 0 0 0))
@@ -29173,6 +34673,8 @@ Fetch a data URL (RFC 2397).
29173 34673
29174\(fn KEY &optional DEFAULT)" nil nil) 34674\(fn KEY &optional DEFAULT)" nil nil)
29175 34675
34676(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-ns" '("url-ns-set-user-pref" "url-ns-user-prefs")))
34677
29176;;;*** 34678;;;***
29177 34679
29178;;;### (autoloads nil "url-parse" "url/url-parse.el" (0 0 0 0)) 34680;;;### (autoloads nil "url-parse" "url/url-parse.el" (0 0 0 0))
@@ -29224,6 +34726,8 @@ parses to
29224 34726
29225\(fn URL)" nil nil) 34727\(fn URL)" nil nil)
29226 34728
34729(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-parse" '("url-")))
34730
29227;;;*** 34731;;;***
29228 34732
29229;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (0 0 0 0)) 34733;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (0 0 0 0))
@@ -29234,6 +34738,15 @@ Setup variables that expose info about you and your system.
29234 34738
29235\(fn)" t nil) 34739\(fn)" t nil)
29236 34740
34741(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-privacy" '("url-device-type")))
34742
34743;;;***
34744
34745;;;### (autoloads nil "url-proxy" "url/url-proxy.el" (0 0 0 0))
34746;;; Generated autoloads from url/url-proxy.el
34747
34748(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-proxy" '("url-default-find-proxy-for-url" "url-proxy-locator" "url-find-proxy-for-url" "url-proxy")))
34749
29237;;;*** 34750;;;***
29238 34751
29239;;;### (autoloads nil "url-queue" "url/url-queue.el" (0 0 0 0)) 34752;;;### (autoloads nil "url-queue" "url/url-queue.el" (0 0 0 0))
@@ -29248,6 +34761,8 @@ The variable `url-queue-timeout' sets a timeout.
29248 34761
29249\(fn URL CALLBACK &optional CBARGS SILENT INHIBIT-COOKIES)" nil nil) 34762\(fn URL CALLBACK &optional CBARGS SILENT INHIBIT-COOKIES)" nil nil)
29250 34763
34764(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-queue" '("url-queue-" "url-queue")))
34765
29251;;;*** 34766;;;***
29252 34767
29253;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (0 0 0 0)) 34768;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (0 0 0 0))
@@ -29266,6 +34781,8 @@ would have been passed to OPERATION.
29266 34781
29267\(fn OPERATION &rest ARGS)" nil nil) 34782\(fn OPERATION &rest ARGS)" nil nil)
29268 34783
34784(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-tramp" '("url-tramp-convert-url-to-tramp" "url-tramp-convert-tramp-to-url")))
34785
29269;;;*** 34786;;;***
29270 34787
29271;;;### (autoloads nil "url-util" "url/url-util.el" (0 0 0 0)) 34788;;;### (autoloads nil "url-util" "url/url-util.el" (0 0 0 0))
@@ -29434,6 +34951,15 @@ This uses `url-current-object', set locally to the buffer.
29434 34951
29435\(fn &optional NO-SHOW)" t nil) 34952\(fn &optional NO-SHOW)" t nil)
29436 34953
34954(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-util" '("url-" "url--allowed-chars")))
34955
34956;;;***
34957
34958;;;### (autoloads nil "url-vars" "url/url-vars.el" (0 0 0 0))
34959;;; Generated autoloads from url/url-vars.el
34960
34961(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-vars" '("url-")))
34962
29437;;;*** 34963;;;***
29438 34964
29439;;;### (autoloads nil "userlock" "userlock.el" (0 0 0 0)) 34965;;;### (autoloads nil "userlock" "userlock.el" (0 0 0 0))
@@ -29462,6 +34988,8 @@ The buffer in question is current when this function is called.
29462 34988
29463\(fn FN)" nil nil) 34989\(fn FN)" nil nil)
29464 34990
34991(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "userlock" '("ask-user-about-supersession-help" "ask-user-about-lock-help" "file-supersession" "file-locked")))
34992
29465;;;*** 34993;;;***
29466 34994
29467;;;### (autoloads nil "utf-7" "international/utf-7.el" (0 0 0 0)) 34995;;;### (autoloads nil "utf-7" "international/utf-7.el" (0 0 0 0))
@@ -29487,6 +35015,8 @@ The buffer in question is current when this function is called.
29487 35015
29488\(fn FROM TO)" nil nil) 35016\(fn FROM TO)" nil nil)
29489 35017
35018(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "utf-7" '("utf-7-encode" "utf-7-decode")))
35019
29490;;;*** 35020;;;***
29491 35021
29492;;;### (autoloads nil "utf7" "international/utf7.el" (0 0 0 0)) 35022;;;### (autoloads nil "utf7" "international/utf7.el" (0 0 0 0))
@@ -29497,6 +35027,8 @@ Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil.
29497 35027
29498\(fn STRING &optional FOR-IMAP)" nil nil) 35028\(fn STRING &optional FOR-IMAP)" nil nil)
29499 35029
35030(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "utf7" '("utf7-")))
35031
29500;;;*** 35032;;;***
29501 35033
29502;;;### (autoloads nil "uudecode" "mail/uudecode.el" (0 0 0 0)) 35034;;;### (autoloads nil "uudecode" "mail/uudecode.el" (0 0 0 0))
@@ -29521,6 +35053,8 @@ If FILE-NAME is non-nil, save the result to FILE-NAME.
29521 35053
29522\(fn START END &optional FILE-NAME)" nil nil) 35054\(fn START END &optional FILE-NAME)" nil nil)
29523 35055
35056(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "uudecode" '("uudecode-")))
35057
29524;;;*** 35058;;;***
29525 35059
29526;;;### (autoloads nil "vc" "vc/vc.el" (0 0 0 0)) 35060;;;### (autoloads nil "vc" "vc/vc.el" (0 0 0 0))
@@ -29837,6 +35371,8 @@ Return the branch part of a revision number REV.
29837 35371
29838\(fn REV)" nil nil) 35372\(fn REV)" nil nil)
29839 35373
35374(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc" '("vc-" "vc--remove-regexp" "vc--add-line" "vc--read-lines" "with-vc-properties")))
35375
29840;;;*** 35376;;;***
29841 35377
29842;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (0 0 0 0)) 35378;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (0 0 0 0))
@@ -29876,6 +35412,8 @@ should be applied to the background or to the foreground.
29876 35412
29877\(fn FILE REV &optional DISPLAY-MODE BUF MOVE-POINT-TO VC-BK)" t nil) 35413\(fn FILE REV &optional DISPLAY-MODE BUF MOVE-POINT-TO VC-BK)" t nil)
29878 35414
35415(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-annotate" '("vc-annotate-" "vc-default-annotate-current-time")))
35416
29879;;;*** 35417;;;***
29880 35418
29881;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (0 0 0 0)) 35419;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (0 0 0 0))
@@ -29892,6 +35430,8 @@ Name of the format file in a .bzr directory.")
29892 (load "vc-bzr" nil t) 35430 (load "vc-bzr" nil t)
29893 (vc-bzr-registered file)))) 35431 (vc-bzr-registered file))))
29894 35432
35433(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-bzr" '("vc-bzr-" "vc-bzr--pushpull" "vc-bzr--sanitize-header")))
35434
29895;;;*** 35435;;;***
29896 35436
29897;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (0 0 0 0)) 35437;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (0 0 0 0))
@@ -29903,6 +35443,15 @@ Name of the format file in a .bzr directory.")
29903 (load "vc-cvs" nil t) 35443 (load "vc-cvs" nil t)
29904 (vc-cvs-registered f))) 35444 (vc-cvs-registered f)))
29905 35445
35446(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-cvs" '("vc-cvs-")))
35447
35448;;;***
35449
35450;;;### (autoloads nil "vc-dav" "vc/vc-dav.el" (0 0 0 0))
35451;;; Generated autoloads from vc/vc-dav.el
35452
35453(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-dav" '("vc-dav-")))
35454
29906;;;*** 35455;;;***
29907 35456
29908;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (0 0 0 0)) 35457;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (0 0 0 0))
@@ -29927,6 +35476,8 @@ These are the commands available for use in the file status buffer:
29927 35476
29928\(fn DIR &optional BACKEND)" t nil) 35477\(fn DIR &optional BACKEND)" t nil)
29929 35478
35479(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-dir" '("vc-dir-" "vc-default-dir-" "vc-ewoc" "vc-default-status-fileinfo-extra" "vc-default-extra-status-menu")))
35480
29930;;;*** 35481;;;***
29931 35482
29932;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (0 0 35483;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (0 0
@@ -29951,6 +35502,15 @@ case, and the process object in the asynchronous case.
29951 35502
29952\(fn BUFFER OKSTATUS COMMAND FILE-OR-LIST &rest FLAGS)" nil nil) 35503\(fn BUFFER OKSTATUS COMMAND FILE-OR-LIST &rest FLAGS)" nil nil)
29953 35504
35505(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-dispatcher" '("vc-" "vc--process-sentinel")))
35506
35507;;;***
35508
35509;;;### (autoloads nil "vc-filewise" "vc/vc-filewise.el" (0 0 0 0))
35510;;; Generated autoloads from vc/vc-filewise.el
35511
35512(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-filewise" '("vc-filewise-registered" "vc-rename-master" "vc-master-name")))
35513
29954;;;*** 35514;;;***
29955 35515
29956;;;### (autoloads nil "vc-git" "vc/vc-git.el" (0 0 0 0)) 35516;;;### (autoloads nil "vc-git" "vc/vc-git.el" (0 0 0 0))
@@ -29962,6 +35522,8 @@ case, and the process object in the asynchronous case.
29962 (load "vc-git" nil t) 35522 (load "vc-git" nil t)
29963 (vc-git-registered file)))) 35523 (vc-git-registered file))))
29964 35524
35525(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-git" '("vc-git-" "vc-git--")))
35526
29965;;;*** 35527;;;***
29966 35528
29967;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (0 0 0 0)) 35529;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (0 0 0 0))
@@ -29973,6 +35535,8 @@ case, and the process object in the asynchronous case.
29973 (load "vc-hg" nil t) 35535 (load "vc-hg" nil t)
29974 (vc-hg-registered file)))) 35536 (vc-hg-registered file))))
29975 35537
35538(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-hg" '("vc-hg-" "vc-hg--")))
35539
29976;;;*** 35540;;;***
29977 35541
29978;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (0 0 0 0)) 35542;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (0 0 0 0))
@@ -29989,6 +35553,8 @@ Name of the monotone directory's format file.")
29989 (load "vc-mtn" nil t) 35553 (load "vc-mtn" nil t)
29990 (vc-mtn-registered file)))) 35554 (vc-mtn-registered file))))
29991 35555
35556(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-mtn" '("vc-mtn-")))
35557
29992;;;*** 35558;;;***
29993 35559
29994;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (0 0 0 0)) 35560;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (0 0 0 0))
@@ -30002,6 +35568,8 @@ For a description of possible values, see `vc-check-master-templates'.")
30002 35568
30003(defun vc-rcs-registered (f) (vc-default-registered 'RCS f)) 35569(defun vc-rcs-registered (f) (vc-default-registered 'RCS f))
30004 35570
35571(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-rcs" '("vc-rcs-" "vc-release-greater-or-equal" "vc-rcsdiff-knows-brief")))
35572
30005;;;*** 35573;;;***
30006 35574
30007;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (0 0 0 0)) 35575;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (0 0 0 0))
@@ -30020,6 +35588,8 @@ Return the name of a master file in the SCCS project directory.
30020Does not check whether the file exists but returns nil if it does not 35588Does not check whether the file exists but returns nil if it does not
30021find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) (when project-dir (if (file-name-absolute-p project-dir) (setq dirs (quote ("SCCS" ""))) (setq dirs (quote ("src/SCCS" "src" "source/SCCS" "source"))) (setq project-dir (expand-file-name (concat "~" project-dir)))) (while (and (not dir) dirs) (setq dir (expand-file-name (car dirs) project-dir)) (unless (file-directory-p dir) (setq dir nil) (setq dirs (cdr dirs)))) (and dir (expand-file-name (concat "s." basename) dir))))) 35589find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) (when project-dir (if (file-name-absolute-p project-dir) (setq dirs (quote ("SCCS" ""))) (setq dirs (quote ("src/SCCS" "src" "source/SCCS" "source"))) (setq project-dir (expand-file-name (concat "~" project-dir)))) (while (and (not dir) dirs) (setq dir (expand-file-name (car dirs) project-dir)) (unless (file-directory-p dir) (setq dir nil) (setq dirs (cdr dirs)))) (and dir (expand-file-name (concat "s." basename) dir)))))
30022 35590
35591(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-sccs" '("vc-sccs-")))
35592
30023;;;*** 35593;;;***
30024 35594
30025;;;### (autoloads nil "vc-src" "vc/vc-src.el" (0 0 0 0)) 35595;;;### (autoloads nil "vc-src" "vc/vc-src.el" (0 0 0 0))
@@ -30033,6 +35603,8 @@ For a description of possible values, see `vc-check-master-templates'.")
30033 35603
30034(defun vc-src-registered (f) (vc-default-registered 'src f)) 35604(defun vc-src-registered (f) (vc-default-registered 'src f))
30035 35605
35606(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-src" '("vc-src-")))
35607
30036;;;*** 35608;;;***
30037 35609
30038;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (0 0 0 0)) 35610;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (0 0 0 0))
@@ -30046,6 +35618,15 @@ For a description of possible values, see `vc-check-master-templates'.")
30046 (load "vc-svn" nil t) 35618 (load "vc-svn" nil t)
30047 (vc-svn-registered f)))) 35619 (vc-svn-registered f))))
30048 35620
35621(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-svn" '("vc-svn-")))
35622
35623;;;***
35624
35625;;;### (autoloads nil "vcursor" "vcursor.el" (0 0 0 0))
35626;;; Generated autoloads from vcursor.el
35627
35628(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vcursor" '("vcursor-")))
35629
30049;;;*** 35630;;;***
30050 35631
30051;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (0 0 0 35632;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (0 0 0
@@ -30105,6 +35686,8 @@ Key bindings:
30105 35686
30106\(fn)" t nil) 35687\(fn)" t nil)
30107 35688
35689(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vera-mode" '("vera-")))
35690
30108;;;*** 35691;;;***
30109 35692
30110;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" 35693;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el"
@@ -30245,6 +35828,8 @@ Key bindings specific to `verilog-mode-map' are:
30245 35828
30246\(fn)" t nil) 35829\(fn)" t nil)
30247 35830
35831(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "verilog-mode" '("verilog-" "electric-verilog-" "vl-")))
35832
30248;;;*** 35833;;;***
30249 35834
30250;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (0 0 0 35835;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (0 0 0
@@ -30800,6 +36385,8 @@ Key bindings:
30800 36385
30801\(fn)" t nil) 36386\(fn)" t nil)
30802 36387
36388(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vhdl-mode" '("vhdl-")))
36389
30803;;;*** 36390;;;***
30804 36391
30805;;;### (autoloads nil "viet-util" "language/viet-util.el" (0 0 0 36392;;;### (autoloads nil "viet-util" "language/viet-util.el" (0 0 0
@@ -30845,6 +36432,8 @@ Convert Vietnamese characters of the current buffer to `VIQR' mnemonics.
30845 36432
30846\(fn FROM TO)" nil nil) 36433\(fn FROM TO)" nil nil)
30847 36434
36435(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "viet-util" '("viqr-regexp" "viet-viqr-alist")))
36436
30848;;;*** 36437;;;***
30849 36438
30850;;;### (autoloads nil "view" "view.el" (0 0 0 0)) 36439;;;### (autoloads nil "view" "view.el" (0 0 0 0))
@@ -31101,6 +36690,8 @@ Exit View mode and make the current buffer editable.
31101 36690
31102\(fn)" t nil) 36691\(fn)" t nil)
31103 36692
36693(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "view" '("view-" "View-" "view--enable" "view--disable")))
36694
31104;;;*** 36695;;;***
31105 36696
31106;;;### (autoloads nil "viper" "emulation/viper.el" (0 0 0 0)) 36697;;;### (autoloads nil "viper" "emulation/viper.el" (0 0 0 0))
@@ -31118,6 +36709,91 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'.
31118 36709
31119\(fn)" t nil) 36710\(fn)" t nil)
31120 36711
36712(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "viper" '("viper-" "viper--" "this-major-mode-requires-vi-state" "set-viper-state-in-major-mode")))
36713
36714;;;***
36715
36716;;;### (autoloads nil "viper-cmd" "emulation/viper-cmd.el" (0 0 0
36717;;;;;; 0))
36718;;; Generated autoloads from emulation/viper-cmd.el
36719
36720(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "viper-cmd" '("viper-")))
36721
36722;;;***
36723
36724;;;### (autoloads nil "viper-ex" "emulation/viper-ex.el" (0 0 0 0))
36725;;; Generated autoloads from emulation/viper-ex.el
36726
36727(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "viper-ex" '("ex-" "viper-")))
36728
36729;;;***
36730
36731;;;### (autoloads nil "viper-init" "emulation/viper-init.el" (0 0
36732;;;;;; 0 0))
36733;;; Generated autoloads from emulation/viper-init.el
36734
36735(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "viper-init" '("viper-")))
36736
36737;;;***
36738
36739;;;### (autoloads nil "viper-keym" "emulation/viper-keym.el" (0 0
36740;;;;;; 0 0))
36741;;; Generated autoloads from emulation/viper-keym.el
36742
36743(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "viper-keym" '("viper-" "ex-read-filename-map")))
36744
36745;;;***
36746
36747;;;### (autoloads nil "viper-macs" "emulation/viper-macs.el" (0 0
36748;;;;;; 0 0))
36749;;; Generated autoloads from emulation/viper-macs.el
36750
36751(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "viper-macs" '("viper-" "ex-map" "ex-unmap" "ex-map-read-args" "ex-unmap-read-args")))
36752
36753;;;***
36754
36755;;;### (autoloads nil "viper-mous" "emulation/viper-mous.el" (0 0
36756;;;;;; 0 0))
36757;;; Generated autoloads from emulation/viper-mous.el
36758
36759(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "viper-mous" '("viper-")))
36760
36761;;;***
36762
36763;;;### (autoloads nil "viper-util" "emulation/viper-util.el" (0 0
36764;;;;;; 0 0))
36765;;; Generated autoloads from emulation/viper-util.el
36766
36767(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "viper-util" '("viper-" "viper=")))
36768
36769;;;***
36770
36771;;;### (autoloads nil "vt-control" "vt-control.el" (0 0 0 0))
36772;;; Generated autoloads from vt-control.el
36773
36774(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vt-control" '("vt-")))
36775
36776;;;***
36777
36778;;;### (autoloads nil "vt100-led" "vt100-led.el" (0 0 0 0))
36779;;; Generated autoloads from vt100-led.el
36780
36781(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vt100-led" '("led-state" "led-flash" "led-off" "led-on" "led-update")))
36782
36783;;;***
36784
36785;;;### (autoloads nil "w32-fns" "w32-fns.el" (0 0 0 0))
36786;;; Generated autoloads from w32-fns.el
36787
36788(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "w32-fns" '("w32-")))
36789
36790;;;***
36791
36792;;;### (autoloads nil "w32-vars" "w32-vars.el" (0 0 0 0))
36793;;; Generated autoloads from w32-vars.el
36794
36795(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "w32-vars" '("w32-fixed-font-alist" "w32-list-proportional-fonts" "w32-use-w32-font-dialog")))
36796
31121;;;*** 36797;;;***
31122 36798
31123;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (0 0 0 36799;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (0 0 0
@@ -31209,6 +36885,8 @@ this is equivalent to `display-warning', using
31209 36885
31210\(fn MESSAGE &rest ARGS)" nil nil) 36886\(fn MESSAGE &rest ARGS)" nil nil)
31211 36887
36888(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "warnings" '("warning-" "display-warning-minimum-level" "log-warning-minimum-level")))
36889
31212;;;*** 36890;;;***
31213 36891
31214;;;### (autoloads nil "wdired" "wdired.el" (0 0 0 0)) 36892;;;### (autoloads nil "wdired" "wdired.el" (0 0 0 0))
@@ -31227,6 +36905,8 @@ See `wdired-mode'.
31227 36905
31228\(fn)" t nil) 36906\(fn)" t nil)
31229 36907
36908(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "wdired" '("wdired-")))
36909
31230;;;*** 36910;;;***
31231 36911
31232;;;### (autoloads nil "webjump" "net/webjump.el" (0 0 0 0)) 36912;;;### (autoloads nil "webjump" "net/webjump.el" (0 0 0 0))
@@ -31243,6 +36923,8 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke
31243 36923
31244\(fn)" t nil) 36924\(fn)" t nil)
31245 36925
36926(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "webjump" '("webjump-")))
36927
31246;;;*** 36928;;;***
31247 36929
31248;;;### (autoloads nil "which-func" "progmodes/which-func.el" (0 0 36930;;;### (autoloads nil "which-func" "progmodes/which-func.el" (0 0
@@ -31275,6 +36957,8 @@ in certain major modes.
31275 36957
31276\(fn &optional ARG)" t nil) 36958\(fn &optional ARG)" t nil)
31277 36959
36960(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "which-func" '("which-func-" "which-function-imenu-failed" "which-function")))
36961
31278;;;*** 36962;;;***
31279 36963
31280;;;### (autoloads nil "whitespace" "whitespace.el" (0 0 0 0)) 36964;;;### (autoloads nil "whitespace" "whitespace.el" (0 0 0 0))
@@ -31645,6 +37329,8 @@ cleaning up these problems.
31645 37329
31646\(fn START END &optional FORCE REPORT-IF-BOGUS)" t nil) 37330\(fn START END &optional FORCE REPORT-IF-BOGUS)" t nil)
31647 37331
37332(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "whitespace" '("whitespace-")))
37333
31648;;;*** 37334;;;***
31649 37335
31650;;;### (autoloads nil "wid-browse" "wid-browse.el" (0 0 0 0)) 37336;;;### (autoloads nil "wid-browse" "wid-browse.el" (0 0 0 0))
@@ -31673,6 +37359,8 @@ if ARG is omitted or nil.
31673 37359
31674\(fn &optional ARG)" t nil) 37360\(fn &optional ARG)" t nil)
31675 37361
37362(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "wid-browse" '("widget-browse-" "widget-minor-mode-map")))
37363
31676;;;*** 37364;;;***
31677 37365
31678;;;### (autoloads nil "wid-edit" "wid-edit.el" (0 0 0 0)) 37366;;;### (autoloads nil "wid-edit" "wid-edit.el" (0 0 0 0))
@@ -31705,7 +37393,7 @@ Call `insert' with ARGS even if surrounding text is read only.
31705 37393
31706\(fn &rest ARGS)" nil nil) 37394\(fn &rest ARGS)" nil nil)
31707 37395
31708(defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " 'widget-forward) (define-key map " " '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) "\ 37396(defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " 'widget-forward) (define-key map " " '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 [mouse-2] 'widget-button-click) (define-key map [mouse-1] 'widget-button-click) (define-key map [(control 109)] 'widget-button-press) map) "\
31709Keymap containing useful binding for buffers containing widgets. 37397Keymap containing useful binding for buffers containing widgets.
31710Recommended as a parent keymap for modes using widgets. 37398Recommended as a parent keymap for modes using widgets.
31711Note that such modes will need to require wid-edit.") 37399Note that such modes will need to require wid-edit.")
@@ -31715,6 +37403,8 @@ Setup current buffer so editing string widgets works.
31715 37403
31716\(fn)" nil nil) 37404\(fn)" nil nil)
31717 37405
37406(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "wid-edit" '("widget-")))
37407
31718;;;*** 37408;;;***
31719 37409
31720;;;### (autoloads nil "windmove" "windmove.el" (0 0 0 0)) 37410;;;### (autoloads nil "windmove" "windmove.el" (0 0 0 0))
@@ -31767,6 +37457,8 @@ Default MODIFIER is `shift'.
31767 37457
31768\(fn &optional MODIFIER)" t nil) 37458\(fn &optional MODIFIER)" t nil)
31769 37459
37460(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "windmove" '("windmove-")))
37461
31770;;;*** 37462;;;***
31771 37463
31772;;;### (autoloads nil "winner" "winner.el" (0 0 0 0)) 37464;;;### (autoloads nil "winner" "winner.el" (0 0 0 0))
@@ -31797,6 +37489,8 @@ you can press `C-c <right>' (calling `winner-redo').
31797 37489
31798\(fn &optional ARG)" t nil) 37490\(fn &optional ARG)" t nil)
31799 37491
37492(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "winner" '("winner-")))
37493
31800;;;*** 37494;;;***
31801 37495
31802;;;### (autoloads nil "woman" "woman.el" (0 0 0 0)) 37496;;;### (autoloads nil "woman" "woman.el" (0 0 0 0))
@@ -31846,6 +37540,15 @@ Default bookmark handler for Woman buffers.
31846 37540
31847\(fn BOOKMARK)" nil nil) 37541\(fn BOOKMARK)" nil nil)
31848 37542
37543(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "woman" '("woman-" "woman2-" "woman1-" "WoMan-" "woman0-" "set-woman-file-regexp" "menu-bar-manuals-menu")))
37544
37545;;;***
37546
37547;;;### (autoloads nil "x-dnd" "x-dnd.el" (0 0 0 0))
37548;;; Generated autoloads from x-dnd.el
37549
37550(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "x-dnd" '("x-dnd-")))
37551
31849;;;*** 37552;;;***
31850 37553
31851;;;### (autoloads nil "xml" "xml.el" (0 0 0 0)) 37554;;;### (autoloads nil "xml" "xml.el" (0 0 0 0))
@@ -31902,6 +37605,8 @@ Both features can be combined by providing a cons cell
31902 37605
31903\(fn &optional BEG END BUFFER PARSE-DTD PARSE-NS)" nil nil) 37606\(fn &optional BEG END BUFFER PARSE-DTD PARSE-NS)" nil nil)
31904 37607
37608(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "xml" '("xml-" "xml--parse-buffer" "xml--entity-replacement-text")))
37609
31905;;;*** 37610;;;***
31906 37611
31907;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (0 0 0 0)) 37612;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (0 0 0 0))
@@ -31920,6 +37625,8 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT.
31920 37625
31921\(fn &optional LIMIT)" nil nil) 37626\(fn &optional LIMIT)" nil nil)
31922 37627
37628(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "xmltok" '("xmltok-")))
37629
31923;;;*** 37630;;;***
31924 37631
31925;;;### (autoloads nil "xref" "progmodes/xref.el" (0 0 0 0)) 37632;;;### (autoloads nil "xref" "progmodes/xref.el" (0 0 0 0))
@@ -31987,6 +37694,22 @@ IGNORES is a list of glob patterns.
31987 37694
31988\(fn REGEXP FILES DIR IGNORES)" nil nil) 37695\(fn REGEXP FILES DIR IGNORES)" nil nil)
31989 37696
37697(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "xref" '("xref--" "xref-")))
37698
37699;;;***
37700
37701;;;### (autoloads nil "xscheme" "progmodes/xscheme.el" (0 0 0 0))
37702;;; Generated autoloads from progmodes/xscheme.el
37703
37704(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "xscheme" '("xscheme-" "scheme-" "local-" "exit-scheme-interaction-mode" "verify-xscheme-buffer" "global-set-scheme-interaction-buffer" "start-scheme" "reset-scheme" "run-scheme" "default-xscheme-runlight")))
37705
37706;;;***
37707
37708;;;### (autoloads nil "xsd-regexp" "nxml/xsd-regexp.el" (0 0 0 0))
37709;;; Generated autoloads from nxml/xsd-regexp.el
37710
37711(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "xsd-regexp" '("xsdre-")))
37712
31990;;;*** 37713;;;***
31991 37714
31992;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (0 0 0 0)) 37715;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (0 0 0 0))
@@ -32017,6 +37740,8 @@ down the SHIFT key while pressing the mouse button.
32017 37740
32018\(fn &optional ARG)" t nil) 37741\(fn &optional ARG)" t nil)
32019 37742
37743(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "xt-mouse" '("xterm-mouse-" "xterm-mouse--" "turn-off-xterm-mouse-tracking-on-terminal" "turn-on-xterm-mouse-tracking-on-terminal" "xt-mouse-epoch")))
37744
32020;;;*** 37745;;;***
32021 37746
32022;;;### (autoloads nil "xwidget" "xwidget.el" (0 0 0 0)) 37747;;;### (autoloads nil "xwidget" "xwidget.el" (0 0 0 0))
@@ -32029,6 +37754,8 @@ Interactively, URL defaults to the string looking like a url around point.
32029 37754
32030\(fn URL &optional NEW-SESSION)" t nil) 37755\(fn URL &optional NEW-SESSION)" t nil)
32031 37756
37757(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "xwidget" '("xwidget-")))
37758
32032;;;*** 37759;;;***
32033 37760
32034;;;### (autoloads nil "yenc" "mail/yenc.el" (0 0 0 0)) 37761;;;### (autoloads nil "yenc" "mail/yenc.el" (0 0 0 0))
@@ -32044,6 +37771,15 @@ Extract file name from an yenc header.
32044 37771
32045\(fn)" nil nil) 37772\(fn)" nil nil)
32046 37773
37774(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "yenc" '("yenc-begin-line" "yenc-decoding-vector" "yenc-first-part-p" "yenc-last-part-p" "yenc-parse-line")))
37775
37776;;;***
37777
37778;;;### (autoloads nil "zeroconf" "net/zeroconf.el" (0 0 0 0))
37779;;; Generated autoloads from net/zeroconf.el
37780
37781(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "zeroconf" '("zeroconf-")))
37782
32047;;;*** 37783;;;***
32048 37784
32049;;;### (autoloads nil "zone" "play/zone.el" (0 0 0 0)) 37785;;;### (autoloads nil "zone" "play/zone.el" (0 0 0 0))
@@ -32054,123 +37790,57 @@ Zone out, completely.
32054 37790
32055\(fn)" t nil) 37791\(fn)" t nil)
32056 37792
37793(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "zone" '("zone-")))
37794
32057;;;*** 37795;;;***
32058 37796
32059;;;### (autoloads nil nil ("calc/calc-aent.el" "calc/calc-alg.el" 37797;;;### (autoloads nil nil ("calc/calc-aent.el" "calc/calc-embed.el"
32060;;;;;; "calc/calc-arith.el" "calc/calc-bin.el" "calc/calc-comb.el" 37798;;;;;; "calc/calc-loaddefs.el" "calc/calc-misc.el" "calc/calc-yank.el"
32061;;;;;; "calc/calc-cplx.el" "calc/calc-embed.el" "calc/calc-ext.el" 37799;;;;;; "calendar/cal-loaddefs.el" "calendar/diary-loaddefs.el" "calendar/hol-loaddefs.el"
32062;;;;;; "calc/calc-fin.el" "calc/calc-forms.el" "calc/calc-frac.el" 37800;;;;;; "cedet/ede/base.el" "cedet/ede/config.el" "cedet/ede/cpp-root.el"
32063;;;;;; "calc/calc-funcs.el" "calc/calc-graph.el" "calc/calc-help.el" 37801;;;;;; "cedet/ede/custom.el" "cedet/ede/dired.el" "cedet/ede/emacs.el"
32064;;;;;; "calc/calc-incom.el" "calc/calc-keypd.el" "calc/calc-lang.el"
32065;;;;;; "calc/calc-macs.el" "calc/calc-map.el" "calc/calc-math.el"
32066;;;;;; "calc/calc-menu.el" "calc/calc-misc.el" "calc/calc-mode.el"
32067;;;;;; "calc/calc-mtx.el" "calc/calc-nlfit.el" "calc/calc-poly.el"
32068;;;;;; "calc/calc-prog.el" "calc/calc-rewr.el" "calc/calc-rules.el"
32069;;;;;; "calc/calc-sel.el" "calc/calc-stat.el" "calc/calc-store.el"
32070;;;;;; "calc/calc-stuff.el" "calc/calc-trail.el" "calc/calc-units.el"
32071;;;;;; "calc/calc-vec.el" "calc/calc-yank.el" "calc/calcalg2.el"
32072;;;;;; "calc/calcalg3.el" "calc/calccomp.el" "calc/calcsel2.el"
32073;;;;;; "calendar/cal-bahai.el" "calendar/cal-coptic.el" "calendar/cal-french.el"
32074;;;;;; "calendar/cal-html.el" "calendar/cal-islam.el" "calendar/cal-iso.el"
32075;;;;;; "calendar/cal-julian.el" "calendar/cal-loaddefs.el" "calendar/cal-mayan.el"
32076;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el"
32077;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "calendar/diary-loaddefs.el"
32078;;;;;; "calendar/hol-loaddefs.el" "cdl.el" "cedet/cedet-cscope.el"
32079;;;;;; "cedet/cedet-files.el" "cedet/cedet-global.el" "cedet/cedet-idutils.el"
32080;;;;;; "cedet/ede/auto.el" "cedet/ede/autoconf-edit.el" "cedet/ede/base.el"
32081;;;;;; "cedet/ede/config.el" "cedet/ede/cpp-root.el" "cedet/ede/custom.el"
32082;;;;;; "cedet/ede/detect.el" "cedet/ede/dired.el" "cedet/ede/emacs.el"
32083;;;;;; "cedet/ede/files.el" "cedet/ede/generic.el" "cedet/ede/linux.el" 37802;;;;;; "cedet/ede/files.el" "cedet/ede/generic.el" "cedet/ede/linux.el"
32084;;;;;; "cedet/ede/locate.el" "cedet/ede/make.el" "cedet/ede/makefile-edit.el" 37803;;;;;; "cedet/ede/loaddefs.el" "cedet/ede/locate.el" "cedet/ede/make.el"
32085;;;;;; "cedet/ede/pconf.el" "cedet/ede/pmake.el" "cedet/ede/proj-archive.el" 37804;;;;;; "cedet/ede/shell.el" "cedet/ede/speedbar.el" "cedet/ede/system.el"
32086;;;;;; "cedet/ede/proj-aux.el" "cedet/ede/proj-comp.el" "cedet/ede/proj-elisp.el" 37805;;;;;; "cedet/ede/util.el" "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el"
32087;;;;;; "cedet/ede/proj-info.el" "cedet/ede/proj-misc.el" "cedet/ede/proj-obj.el"
32088;;;;;; "cedet/ede/proj-prog.el" "cedet/ede/proj-scheme.el" "cedet/ede/proj-shared.el"
32089;;;;;; "cedet/ede/proj.el" "cedet/ede/project-am.el" "cedet/ede/shell.el"
32090;;;;;; "cedet/ede/simple.el" "cedet/ede/source.el" "cedet/ede/speedbar.el"
32091;;;;;; "cedet/ede/srecode.el" "cedet/ede/system.el" "cedet/ede/util.el"
32092;;;;;; "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el"
32093;;;;;; "cedet/semantic/analyze/debug.el" "cedet/semantic/analyze/fcn.el"
32094;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el" 37806;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el"
32095;;;;;; "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" 37807;;;;;; "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/el.el"
32096;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" 37808;;;;;; "cedet/semantic/bovine/gcc.el" "cedet/semantic/bovine/make.el"
32097;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm.el" 37809;;;;;; "cedet/semantic/bovine/scm.el" "cedet/semantic/complete.el"
32098;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" 37810;;;;;; "cedet/semantic/ctxt.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el"
32099;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" 37811;;;;;; "cedet/semantic/db-global.el" "cedet/semantic/db-mode.el"
32100;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" 37812;;;;;; "cedet/semantic/db-typecache.el" "cedet/semantic/db.el" "cedet/semantic/debug.el"
32101;;;;;; "cedet/semantic/db-global.el" "cedet/semantic/db-javascript.el"
32102;;;;;; "cedet/semantic/db-mode.el" "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el"
32103;;;;;; "cedet/semantic/db.el" "cedet/semantic/debug.el" "cedet/semantic/decorate.el"
32104;;;;;; "cedet/semantic/decorate/include.el" "cedet/semantic/decorate/mode.el" 37813;;;;;; "cedet/semantic/decorate/include.el" "cedet/semantic/decorate/mode.el"
32105;;;;;; "cedet/semantic/dep.el" "cedet/semantic/doc.el" "cedet/semantic/ede-grammar.el" 37814;;;;;; "cedet/semantic/dep.el" "cedet/semantic/doc.el" "cedet/semantic/edit.el"
32106;;;;;; "cedet/semantic/edit.el" "cedet/semantic/find.el" "cedet/semantic/format.el" 37815;;;;;; "cedet/semantic/find.el" "cedet/semantic/format.el" "cedet/semantic/html.el"
32107;;;;;; "cedet/semantic/fw.el" "cedet/semantic/grammar-wy.el" "cedet/semantic/grammar.el" 37816;;;;;; "cedet/semantic/ia-sb.el" "cedet/semantic/ia.el" "cedet/semantic/idle.el"
32108;;;;;; "cedet/semantic/html.el" "cedet/semantic/ia-sb.el" "cedet/semantic/ia.el" 37817;;;;;; "cedet/semantic/imenu.el" "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el"
32109;;;;;; "cedet/semantic/idle.el" "cedet/semantic/imenu.el" "cedet/semantic/java.el" 37818;;;;;; "cedet/semantic/loaddefs.el" "cedet/semantic/mru-bookmark.el"
32110;;;;;; "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el" "cedet/semantic/mru-bookmark.el" 37819;;;;;; "cedet/semantic/scope.el" "cedet/semantic/senator.el" "cedet/semantic/sort.el"
32111;;;;;; "cedet/semantic/sb.el" "cedet/semantic/scope.el" "cedet/semantic/senator.el" 37820;;;;;; "cedet/semantic/symref.el" "cedet/semantic/symref/cscope.el"
32112;;;;;; "cedet/semantic/sort.el" "cedet/semantic/symref.el" "cedet/semantic/symref/cscope.el" 37821;;;;;; "cedet/semantic/symref/global.el" "cedet/semantic/symref/grep.el"
32113;;;;;; "cedet/semantic/symref/filter.el" "cedet/semantic/symref/global.el" 37822;;;;;; "cedet/semantic/symref/idutils.el" "cedet/semantic/symref/list.el"
32114;;;;;; "cedet/semantic/symref/grep.el" "cedet/semantic/symref/idutils.el" 37823;;;;;; "cedet/semantic/tag-file.el" "cedet/semantic/tag-ls.el" "cedet/semantic/tag-write.el"
32115;;;;;; "cedet/semantic/symref/list.el" "cedet/semantic/tag-file.el"
32116;;;;;; "cedet/semantic/tag-ls.el" "cedet/semantic/tag-write.el"
32117;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" 37824;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el"
32118;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el"
32119;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" 37825;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el"
32120;;;;;; "cedet/semantic/wisent/python.el" "cedet/semantic/wisent/wisent.el" 37826;;;;;; "cedet/semantic/wisent/python.el" "cedet/srecode/compile.el"
32121;;;;;; "cedet/srecode/args.el" "cedet/srecode/compile.el" "cedet/srecode/cpp.el" 37827;;;;;; "cedet/srecode/cpp.el" "cedet/srecode/document.el" "cedet/srecode/el.el"
32122;;;;;; "cedet/srecode/ctxt.el" "cedet/srecode/dictionary.el" "cedet/srecode/document.el" 37828;;;;;; "cedet/srecode/expandproto.el" "cedet/srecode/getset.el"
32123;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" 37829;;;;;; "cedet/srecode/insert.el" "cedet/srecode/java.el" "cedet/srecode/loaddefs.el"
32124;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" 37830;;;;;; "cedet/srecode/map.el" "cedet/srecode/mode.el" "cedet/srecode/srt.el"
32125;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" 37831;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "dired-aux.el"
32126;;;;;; "cedet/srecode/map.el" "cedet/srecode/mode.el" "cedet/srecode/semantic.el" 37832;;;;;; "dired-loaddefs.el" "dired-x.el" "emacs-lisp/cl-extra.el"
32127;;;;;; "cedet/srecode/srt.el" "cedet/srecode/table.el" "cedet/srecode/template.el" 37833;;;;;; "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el"
32128;;;;;; "cedet/srecode/texi.el" "cus-dep.el" "dframe.el" "dired-aux.el"
32129;;;;;; "dired-x.el" "dom.el" "dos-fns.el" "dos-vars.el" "dos-w32.el"
32130;;;;;; "dynamic-setting.el" "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el"
32131;;;;;; "emacs-lisp/byte-opt.el" "emacs-lisp/cl-extra.el" "emacs-lisp/cl-macs.el"
32132;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el"
32133;;;;;; "emacs-lisp/eieio-compat.el" "emacs-lisp/eieio-custom.el" 37834;;;;;; "emacs-lisp/eieio-compat.el" "emacs-lisp/eieio-custom.el"
32134;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-opt.el" 37835;;;;;; "emacs-lisp/eieio-loaddefs.el" "emacs-lisp/eieio-opt.el"
32135;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/generator.el" 37836;;;;;; "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el"
32136;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/smie.el" 37837;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el"
32137;;;;;; "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" 37838;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el"
32138;;;;;; "emulation/cua-gmrk.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" 37839;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el"
32139;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/viper-cmd.el" 37840;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-tramp.el"
32140;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" 37841;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "eshell/esh-groups.el"
32141;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" 37842;;;;;; "hfy-cmap.el" "htmlfontify-loaddefs.el" "ibuf-ext.el" "ibuffer-loaddefs.el"
32142;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el"
32143;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el"
32144;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el"
32145;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el"
32146;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el"
32147;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el"
32148;;;;;; "eshell/em-tramp.el" "eshell/em-unix.el" "eshell/em-xtra.el"
32149;;;;;; "eshell/esh-arg.el" "eshell/esh-cmd.el" "eshell/esh-ext.el"
32150;;;;;; "eshell/esh-io.el" "eshell/esh-module.el" "eshell/esh-opt.el"
32151;;;;;; "eshell/esh-proc.el" "eshell/esh-util.el" "eshell/esh-var.el"
32152;;;;;; "ezimage.el" "format-spec.el" "fringe.el" "generic-x.el"
32153;;;;;; "gnus/gnus-async.el" "gnus/gnus-bcklg.el" "gnus/gnus-cite.el"
32154;;;;;; "gnus/gnus-cloud.el" "gnus/gnus-cus.el" "gnus/gnus-demon.el"
32155;;;;;; "gnus/gnus-dup.el" "gnus/gnus-eform.el" "gnus/gnus-icalendar.el"
32156;;;;;; "gnus/gnus-int.el" "gnus/gnus-logic.el" "gnus/gnus-mh.el"
32157;;;;;; "gnus/gnus-rfc1843.el" "gnus/gnus-salt.el" "gnus/gnus-score.el"
32158;;;;;; "gnus/gnus-srvr.el" "gnus/gnus-topic.el" "gnus/gnus-undo.el"
32159;;;;;; "gnus/gnus-util.el" "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/gssapi.el"
32160;;;;;; "gnus/legacy-gnus-agent.el" "gnus/mail-source.el" "gnus/messcompat.el"
32161;;;;;; "gnus/mm-archive.el" "gnus/mm-bodies.el" "gnus/mm-decode.el"
32162;;;;;; "gnus/mm-util.el" "gnus/mm-view.el" "gnus/mml-sec.el" "gnus/mml-smime.el"
32163;;;;;; "gnus/nnagent.el" "gnus/nnbabyl.el" "gnus/nndir.el" "gnus/nndraft.el"
32164;;;;;; "gnus/nneething.el" "gnus/nngateway.el" "gnus/nnheader.el"
32165;;;;;; "gnus/nnimap.el" "gnus/nnir.el" "gnus/nnmail.el" "gnus/nnmaildir.el"
32166;;;;;; "gnus/nnmairix.el" "gnus/nnmbox.el" "gnus/nnmh.el" "gnus/nnnil.el"
32167;;;;;; "gnus/nnoo.el" "gnus/nnregistry.el" "gnus/nnrss.el" "gnus/nnspool.el"
32168;;;;;; "gnus/nntp.el" "gnus/nnvirtual.el" "gnus/nnweb.el" "gnus/smime.el"
32169;;;;;; "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el" "hfy-cmap.el"
32170;;;;;; "htmlfontify-loaddefs.el" "ibuf-ext.el" "image/compface.el"
32171;;;;;; "international/charprop.el" "international/charscript.el" 37843;;;;;; "international/charprop.el" "international/charscript.el"
32172;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el"
32173;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "international/rfc1843.el"
32174;;;;;; "international/uni-bidi.el" "international/uni-brackets.el" 37844;;;;;; "international/uni-bidi.el" "international/uni-brackets.el"
32175;;;;;; "international/uni-category.el" "international/uni-combining.el" 37845;;;;;; "international/uni-category.el" "international/uni-combining.el"
32176;;;;;; "international/uni-comment.el" "international/uni-decimal.el" 37846;;;;;; "international/uni-comment.el" "international/uni-decimal.el"
@@ -32178,99 +37848,36 @@ Zone out, completely.
32178;;;;;; "international/uni-lowercase.el" "international/uni-mirrored.el" 37848;;;;;; "international/uni-lowercase.el" "international/uni-mirrored.el"
32179;;;;;; "international/uni-name.el" "international/uni-numeric.el" 37849;;;;;; "international/uni-name.el" "international/uni-numeric.el"
32180;;;;;; "international/uni-old-name.el" "international/uni-titlecase.el" 37850;;;;;; "international/uni-old-name.el" "international/uni-titlecase.el"
32181;;;;;; "international/uni-uppercase.el" "kermit.el" "language/hanja-util.el" 37851;;;;;; "international/uni-uppercase.el" "ldefs-boot.el" "leim/quail/arabic.el"
32182;;;;;; "language/thai-word.el" "ldefs-boot.el" "leim/quail/arabic.el"
32183;;;;;; "leim/quail/croatian.el" "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el" 37852;;;;;; "leim/quail/croatian.el" "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el"
32184;;;;;; "leim/quail/czech.el" "leim/quail/ethiopic.el" "leim/quail/georgian.el" 37853;;;;;; "leim/quail/czech.el" "leim/quail/georgian.el" "leim/quail/greek.el"
32185;;;;;; "leim/quail/greek.el" "leim/quail/hanja-jis.el" "leim/quail/hanja.el" 37854;;;;;; "leim/quail/hanja-jis.el" "leim/quail/hanja.el" "leim/quail/hanja3.el"
32186;;;;;; "leim/quail/hanja3.el" "leim/quail/hebrew.el" "leim/quail/indian.el" 37855;;;;;; "leim/quail/hebrew.el" "leim/quail/ipa-praat.el" "leim/quail/latin-alt.el"
32187;;;;;; "leim/quail/ipa-praat.el" "leim/quail/ipa.el" "leim/quail/japanese.el" 37856;;;;;; "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" "leim/quail/latin-pre.el"
32188;;;;;; "leim/quail/lao.el" "leim/quail/latin-alt.el" "leim/quail/latin-ltx.el"
32189;;;;;; "leim/quail/latin-post.el" "leim/quail/latin-pre.el" "leim/quail/lrt.el"
32190;;;;;; "leim/quail/persian.el" "leim/quail/programmer-dvorak.el" 37857;;;;;; "leim/quail/persian.el" "leim/quail/programmer-dvorak.el"
32191;;;;;; "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el" 37858;;;;;; "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el"
32192;;;;;; "leim/quail/sgml-input.el" "leim/quail/sisheng.el" "leim/quail/slovak.el" 37859;;;;;; "leim/quail/sgml-input.el" "leim/quail/slovak.el" "leim/quail/symbol-ksc.el"
32193;;;;;; "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el" "leim/quail/thai.el" 37860;;;;;; "leim/quail/tamil-dvorak.el" "leim/quail/vntelex.el" "leim/quail/vnvni.el"
32194;;;;;; "leim/quail/tibetan.el" "leim/quail/viqr.el" "leim/quail/vntelex.el" 37861;;;;;; "leim/quail/welsh.el" "loadup.el" "mail/blessmail.el" "mail/rmail-loaddefs.el"
32195;;;;;; "leim/quail/vnvni.el" "leim/quail/welsh.el" "loadup.el" "mail/blessmail.el" 37862;;;;;; "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el"
32196;;;;;; "mail/ietf-drums.el" "mail/mail-parse.el" "mail/mail-prsvr.el" 37863;;;;;; "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el"
32197;;;;;; "mail/mailheader.el" "mail/mspools.el" "mail/rfc2045.el" 37864;;;;;; "mail/undigest.el" "mh-e/mh-gnus.el" "mh-e/mh-loaddefs.el"
32198;;;;;; "mail/rfc2047.el" "mail/rfc2231.el" "mail/rfc2368.el" "mail/rfc822.el" 37865;;;;;; "net/tramp-loaddefs.el" "org/ob-core.el" "org/ob-keys.el"
32199;;;;;; "mail/rmail-spam-filter.el" "mail/rmailedit.el" "mail/rmailkwd.el" 37866;;;;;; "org/ob-lob.el" "org/ob-matlab.el" "org/ob-tangle.el" "org/ob.el"
32200;;;;;; "mail/rmailmm.el" "mail/rmailmsc.el" "mail/rmailsort.el" 37867;;;;;; "org/org-archive.el" "org/org-attach.el" "org/org-bbdb.el"
32201;;;;;; "mail/rmailsum.el" "mail/undigest.el" "mh-e/mh-acros.el" 37868;;;;;; "org/org-clock.el" "org/org-datetree.el" "org/org-element.el"
32202;;;;;; "mh-e/mh-alias.el" "mh-e/mh-buffers.el" "mh-e/mh-compat.el" 37869;;;;;; "org/org-feed.el" "org/org-footnote.el" "org/org-id.el" "org/org-indent.el"
32203;;;;;; "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" "mh-e/mh-identity.el" 37870;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-loaddefs.el"
32204;;;;;; "mh-e/mh-inc.el" "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el" 37871;;;;;; "org/org-mobile.el" "org/org-plot.el" "org/org-table.el"
32205;;;;;; "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el" 37872;;;;;; "org/org-timer.el" "org/ox-ascii.el" "org/ox-beamer.el" "org/ox-html.el"
32206;;;;;; "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el" 37873;;;;;; "org/ox-icalendar.el" "org/ox-latex.el" "org/ox-man.el" "org/ox-md.el"
32207;;;;;; "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el" 37874;;;;;; "org/ox-odt.el" "org/ox-org.el" "org/ox-publish.el" "org/ox-texinfo.el"
32208;;;;;; "mh-e/mh-utils.el" "mh-e/mh-xface.el" "mouse-copy.el" "mwheel.el" 37875;;;;;; "org/ox.el" "ps-def.el" "ps-mule.el" "ps-print-loaddefs.el"
32209;;;;;; "net/dns.el" "net/eudc-vars.el" "net/eudcb-bbdb.el" "net/eudcb-ldap.el" 37876;;;;;; "subdirs.el" "textmodes/reftex-auc.el" "textmodes/reftex-cite.el"
32210;;;;;; "net/eudcb-mab.el" "net/hmac-def.el" "net/hmac-md5.el" "net/imap.el"
32211;;;;;; "net/ldap.el" "net/mailcap.el" "net/mairix.el" "net/newsticker.el"
32212;;;;;; "net/nsm.el" "net/puny.el" "net/rfc2104.el" "net/sasl-cram.el"
32213;;;;;; "net/sasl-digest.el" "net/sasl-scram-rfc.el" "net/sasl.el"
32214;;;;;; "net/shr-color.el" "net/sieve-manage.el" "net/soap-inspect.el"
32215;;;;;; "net/socks.el" "net/tls.el" "net/tramp-adb.el" "net/tramp-cache.el"
32216;;;;;; "net/tramp-cmds.el" "net/tramp-compat.el" "net/tramp-gvfs.el"
32217;;;;;; "net/tramp-gw.el" "net/tramp-loaddefs.el" "net/tramp-sh.el"
32218;;;;;; "net/tramp-smb.el" "net/tramp-uu.el" "net/zeroconf.el" "notifications.el"
32219;;;;;; "nxml/nxml-enc.el" "nxml/nxml-maint.el" "nxml/nxml-ns.el"
32220;;;;;; "nxml/nxml-outln.el" "nxml/nxml-parse.el" "nxml/nxml-rap.el"
32221;;;;;; "nxml/nxml-util.el" "nxml/rng-dt.el" "nxml/rng-loc.el" "nxml/rng-maint.el"
32222;;;;;; "nxml/rng-match.el" "nxml/rng-parse.el" "nxml/rng-pttrn.el"
32223;;;;;; "nxml/rng-uri.el" "nxml/rng-util.el" "nxml/xsd-regexp.el"
32224;;;;;; "org/ob-C.el" "org/ob-R.el" "org/ob-asymptote.el" "org/ob-awk.el"
32225;;;;;; "org/ob-calc.el" "org/ob-clojure.el" "org/ob-comint.el" "org/ob-core.el"
32226;;;;;; "org/ob-css.el" "org/ob-ditaa.el" "org/ob-dot.el" "org/ob-emacs-lisp.el"
32227;;;;;; "org/ob-eval.el" "org/ob-exp.el" "org/ob-fortran.el" "org/ob-gnuplot.el"
32228;;;;;; "org/ob-haskell.el" "org/ob-io.el" "org/ob-java.el" "org/ob-js.el"
32229;;;;;; "org/ob-keys.el" "org/ob-latex.el" "org/ob-ledger.el" "org/ob-lilypond.el"
32230;;;;;; "org/ob-lisp.el" "org/ob-lob.el" "org/ob-makefile.el" "org/ob-matlab.el"
32231;;;;;; "org/ob-maxima.el" "org/ob-mscgen.el" "org/ob-ocaml.el" "org/ob-octave.el"
32232;;;;;; "org/ob-org.el" "org/ob-perl.el" "org/ob-picolisp.el" "org/ob-plantuml.el"
32233;;;;;; "org/ob-python.el" "org/ob-ref.el" "org/ob-ruby.el" "org/ob-sass.el"
32234;;;;;; "org/ob-scala.el" "org/ob-scheme.el" "org/ob-screen.el" "org/ob-sh.el"
32235;;;;;; "org/ob-shen.el" "org/ob-sql.el" "org/ob-sqlite.el" "org/ob-table.el"
32236;;;;;; "org/ob-tangle.el" "org/ob.el" "org/org-archive.el" "org/org-attach.el"
32237;;;;;; "org/org-bbdb.el" "org/org-bibtex.el" "org/org-clock.el"
32238;;;;;; "org/org-crypt.el" "org/org-ctags.el" "org/org-datetree.el"
32239;;;;;; "org/org-docview.el" "org/org-element.el" "org/org-entities.el"
32240;;;;;; "org/org-eshell.el" "org/org-faces.el" "org/org-feed.el"
32241;;;;;; "org/org-footnote.el" "org/org-gnus.el" "org/org-habit.el"
32242;;;;;; "org/org-id.el" "org/org-indent.el" "org/org-info.el" "org/org-inlinetask.el"
32243;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-list.el" "org/org-macro.el"
32244;;;;;; "org/org-mhe.el" "org/org-mobile.el" "org/org-mouse.el" "org/org-pcomplete.el"
32245;;;;;; "org/org-plot.el" "org/org-protocol.el" "org/org-rmail.el"
32246;;;;;; "org/org-src.el" "org/org-table.el" "org/org-timer.el" "org/org-w3m.el"
32247;;;;;; "org/ox-ascii.el" "org/ox-beamer.el" "org/ox-html.el" "org/ox-icalendar.el"
32248;;;;;; "org/ox-latex.el" "org/ox-man.el" "org/ox-md.el" "org/ox-odt.el"
32249;;;;;; "org/ox-org.el" "org/ox-publish.el" "org/ox-texinfo.el" "org/ox.el"
32250;;;;;; "play/gametree.el" "progmodes/ada-prj.el" "progmodes/cc-align.el"
32251;;;;;; "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" "progmodes/cc-cmds.el"
32252;;;;;; "progmodes/cc-defs.el" "progmodes/cc-fonts.el" "progmodes/cc-langs.el"
32253;;;;;; "progmodes/cc-menus.el" "progmodes/ebnf-abn.el" "progmodes/ebnf-bnf.el"
32254;;;;;; "progmodes/ebnf-dtd.el" "progmodes/ebnf-ebx.el" "progmodes/ebnf-iso.el"
32255;;;;;; "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-complete-structtag.el"
32256;;;;;; "progmodes/idlw-help.el" "progmodes/idlw-toolbar.el" "progmodes/mantemp.el"
32257;;;;;; "progmodes/xscheme.el" "ps-def.el" "ps-mule.el" "ps-samp.el"
32258;;;;;; "registry.el" "rtree.el" "sb-image.el" "scroll-bar.el" "soundex.el"
32259;;;;;; "subdirs.el" "svg.el" "tempo.el" "textmodes/bib-mode.el"
32260;;;;;; "textmodes/makeinfo.el" "textmodes/page-ext.el" "textmodes/refbib.el"
32261;;;;;; "textmodes/refer.el" "textmodes/reftex-auc.el" "textmodes/reftex-cite.el"
32262;;;;;; "textmodes/reftex-dcr.el" "textmodes/reftex-global.el" "textmodes/reftex-index.el" 37877;;;;;; "textmodes/reftex-dcr.el" "textmodes/reftex-global.el" "textmodes/reftex-index.el"
32263;;;;;; "textmodes/reftex-parse.el" "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" 37878;;;;;; "textmodes/reftex-loaddefs.el" "textmodes/reftex-parse.el"
32264;;;;;; "textmodes/reftex-toc.el" "textmodes/texnfo-upd.el" "timezone.el" 37879;;;;;; "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el")
32265;;;;;; "tooltip.el" "tree-widget.el" "url/url-about.el" "url/url-cookie.el" 37880;;;;;; (0 0 0 0))
32266;;;;;; "url/url-dired.el" "url/url-domsuf.el" "url/url-expand.el"
32267;;;;;; "url/url-ftp.el" "url/url-future.el" "url/url-history.el"
32268;;;;;; "url/url-imap.el" "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el"
32269;;;;;; "url/url-vars.el" "vc/ediff-diff.el" "vc/ediff-init.el" "vc/ediff-merg.el"
32270;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el"
32271;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el"
32272;;;;;; "vc/vc-filewise.el" "vcursor.el" "vt-control.el" "vt100-led.el"
32273;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (0 0 0 0))
32274 37881
32275;;;*** 37882;;;***
32276 37883
diff --git a/lisp/loadup.el b/lisp/loadup.el
index db3c36d1f01..5c16464282b 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -78,10 +78,6 @@
78 (expand-file-name "textmodes" dir) 78 (expand-file-name "textmodes" dir)
79 (expand-file-name "vc" dir))))) 79 (expand-file-name "vc" dir)))))
80 80
81;; Prevent build-time PATH getting stored in the binary.
82;; Mainly cosmetic, but helpful for Guix. (Bug#20330)
83(setq exec-path nil)
84
85(if (eq t purify-flag) 81(if (eq t purify-flag)
86 ;; Hash consing saved around 11% of pure space in my tests. 82 ;; Hash consing saved around 11% of pure space in my tests.
87 (setq purify-flag (make-hash-table :test 'equal :size 80000))) 83 (setq purify-flag (make-hash-table :test 'equal :size 80000)))
@@ -431,6 +427,12 @@ lost after dumping")))
431 (message "Pure-hashed: %d strings, %d vectors, %d conses, %d bytecodes, %d others" 427 (message "Pure-hashed: %d strings, %d vectors, %d conses, %d bytecodes, %d others"
432 strings vectors conses bytecodes others))) 428 strings vectors conses bytecodes others)))
433 429
430;; Prevent build-time PATH getting stored in the binary.
431;; Mainly cosmetic, but helpful for Guix. (Bug#20330)
432;; Do this here, rather than earlier, so that the above code
433;; can invoke Git commands and the like.
434(setq exec-path nil)
435
434;; Avoid error if user loads some more libraries now and make sure the 436;; Avoid error if user loads some more libraries now and make sure the
435;; hash-consing hash table is GC'd. 437;; hash-consing hash table is GC'd.
436(setq purify-flag nil) 438(setq purify-flag nil)
diff --git a/lisp/man.el b/lisp/man.el
index 5acf90baf28..0410626c655 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -1430,8 +1430,17 @@ manpage command."
1430 (quit-restore-window 1430 (quit-restore-window
1431 (get-buffer-window (current-buffer) t) 'kill) 1431 (get-buffer-window (current-buffer) t) 'kill)
1432 (kill-buffer (current-buffer))) 1432 (kill-buffer (current-buffer)))
1433 (message "Can't find the %s manpage" 1433 ;; Entries hyphenated due to the window's width
1434 (Man-page-from-arguments args))) 1434 ;; won't be found in the man database, so remove
1435 ;; the hyphenation -- assuming Groff hyphenates
1436 ;; either with hyphen-minus (ASCII 45, #x2d),
1437 ;; hyphen (#x2010) or soft hyphen (#xad) -- and
1438 ;; look again.
1439 (if (string-match "[-‐­]" args)
1440 (let ((str (replace-match "" nil nil args)))
1441 (Man-getpage-in-background str))
1442 (message "Can't find the %s manpage"
1443 (Man-page-from-arguments args))))
1435 1444
1436 (if Man-fontify-manpage-flag 1445 (if Man-fontify-manpage-flag
1437 (message "%s man page formatted" 1446 (message "%s man page formatted"
diff --git a/lisp/net/tramp-adb.el b/lisp/net/tramp-adb.el
index 1281dbbd72d..f77e44e79ce 100644
--- a/lisp/net/tramp-adb.el
+++ b/lisp/net/tramp-adb.el
@@ -1045,7 +1045,7 @@ E.g. a host name \"192.168.1.1#5555\" returns \"192.168.1.1:5555\"
1045 "Returns nil on success error-output on failure." 1045 "Returns nil on success error-output on failure."
1046 (when (and (> (length (tramp-file-name-host vec)) 0) 1046 (when (and (> (length (tramp-file-name-host vec)) 0)
1047 ;; The -s switch is only available for ADB device commands. 1047 ;; The -s switch is only available for ADB device commands.
1048 (not (member (car args) (list "connect" "disconnect")))) 1048 (not (member (car args) '("connect" "disconnect"))))
1049 (setq args (append (list "-s" (tramp-adb-get-device vec)) args))) 1049 (setq args (append (list "-s" (tramp-adb-get-device vec)) args)))
1050 (with-temp-buffer 1050 (with-temp-buffer
1051 (prog1 1051 (prog1
diff --git a/lisp/net/tramp-cmds.el b/lisp/net/tramp-cmds.el
index 856011fc0ee..45f30042ad8 100644
--- a/lisp/net/tramp-cmds.el
+++ b/lisp/net/tramp-cmds.el
@@ -345,7 +345,7 @@ names. Passwords will never be included there.")
345Please note that you have set `tramp-verbose' to a value of at 345Please note that you have set `tramp-verbose' to a value of at
346least 6. Therefore, the contents of files might be included in 346least 6. Therefore, the contents of files might be included in
347the debug buffer(s).") 347the debug buffer(s).")
348 (add-text-properties start (point) (list 'face 'italic)))) 348 (add-text-properties start (point) '(face italic))))
349 349
350 (set-buffer-modified-p nil) 350 (set-buffer-modified-p nil)
351 (setq buffer-read-only t) 351 (setq buffer-read-only t)
diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el
index ac390e5d5a6..0e874d6c586 100644
--- a/lisp/net/tramp-gvfs.el
+++ b/lisp/net/tramp-gvfs.el
@@ -680,7 +680,7 @@ file names."
680 'tramp-gvfs-send-command v gvfs-operation 680 'tramp-gvfs-send-command v gvfs-operation
681 (append 681 (append
682 (and (eq op 'copy) (or keep-date preserve-uid-gid) 682 (and (eq op 'copy) (or keep-date preserve-uid-gid)
683 (list "--preserve")) 683 '("--preserve"))
684 (list 684 (list
685 (tramp-gvfs-url-file-name filename) 685 (tramp-gvfs-url-file-name filename)
686 (tramp-gvfs-url-file-name newname)))) 686 (tramp-gvfs-url-file-name newname))))
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el
index e9f78b7d1ce..19f687c3433 100644
--- a/lisp/net/tramp-sh.el
+++ b/lisp/net/tramp-sh.el
@@ -2517,19 +2517,18 @@ The method used must be an out-of-band method."
2517 2517
2518 ;; Use an asynchronous process. By this, password can 2518 ;; Use an asynchronous process. By this, password can
2519 ;; be handled. We don't set a timeout, because the 2519 ;; be handled. We don't set a timeout, because the
2520 ;; copying of large files can last longer than 60 2520 ;; copying of large files can last longer than 60 secs.
2521 ;; secs. 2521 (let* ((command
2522 (let ((p (apply 'start-process-shell-command 2522 (mapconcat
2523 (tramp-get-connection-name v) 2523 'identity (append (list copy-program) copy-args)
2524 (tramp-get-connection-buffer v) 2524 " "))
2525 copy-program 2525 (p (let ((default-directory
2526 (append 2526 (tramp-compat-temporary-file-directory)))
2527 copy-args 2527 (start-process-shell-command
2528 (list "&&" "echo" "tramp_exit_status" "0" 2528 (tramp-get-connection-name v)
2529 "||" "echo" "tramp_exit_status" "1"))))) 2529 (tramp-get-connection-buffer v)
2530 (tramp-message 2530 command))))
2531 orig-vec 6 "%s" 2531 (tramp-message orig-vec 6 "%s" command)
2532 (mapconcat 'identity (process-command p) " "))
2533 (tramp-set-connection-property p "vector" orig-vec) 2532 (tramp-set-connection-property p "vector" orig-vec)
2534 (set-process-query-on-exit-flag p nil) 2533 (set-process-query-on-exit-flag p nil)
2535 2534
@@ -2537,23 +2536,7 @@ The method used must be an out-of-band method."
2537 ;; sending the password. 2536 ;; sending the password.
2538 (let ((tramp-local-end-of-line tramp-rsh-end-of-line)) 2537 (let ((tramp-local-end-of-line tramp-rsh-end-of-line))
2539 (tramp-process-actions 2538 (tramp-process-actions
2540 p v nil tramp-actions-copy-out-of-band)) 2539 p v nil tramp-actions-copy-out-of-band))))
2541
2542 ;; Check the return code.
2543 (goto-char (point-max))
2544 (unless
2545 (re-search-backward "tramp_exit_status [0-9]+" nil t)
2546 (tramp-error
2547 orig-vec 'file-error
2548 "Couldn't find exit status of `%s'"
2549 (mapconcat 'identity (process-command p) " ")))
2550 (skip-chars-forward "^ ")
2551 (unless (zerop (read (current-buffer)))
2552 (forward-line -1)
2553 (tramp-error
2554 orig-vec 'file-error
2555 "Error copying: `%s'"
2556 (buffer-substring (point-min) (point-at-eol))))))
2557 2540
2558 ;; Reset the transfer process properties. 2541 ;; Reset the transfer process properties.
2559 (tramp-set-connection-property v "process-name" nil) 2542 (tramp-set-connection-property v "process-name" nil)
@@ -5597,18 +5580,14 @@ function cell is returned to be applied on a buffer."
5597 `(lambda (beg end) 5580 `(lambda (beg end)
5598 (,coding beg end) 5581 (,coding beg end)
5599 (let ((coding-system-for-write 'binary) 5582 (let ((coding-system-for-write 'binary)
5600 (coding-system-for-read 'binary) 5583 (coding-system-for-read 'binary))
5601 (default-directory
5602 (tramp-compat-temporary-file-directory)))
5603 (apply 5584 (apply
5604 'tramp-call-process-region ,vec (point-min) (point-max) 5585 'tramp-call-process-region ,vec (point-min) (point-max)
5605 (car (split-string ,compress)) t t nil 5586 (car (split-string ,compress)) t t nil
5606 (cdr (split-string ,compress))))) 5587 (cdr (split-string ,compress)))))
5607 `(lambda (beg end) 5588 `(lambda (beg end)
5608 (let ((coding-system-for-write 'binary) 5589 (let ((coding-system-for-write 'binary)
5609 (coding-system-for-read 'binary) 5590 (coding-system-for-read 'binary))
5610 (default-directory
5611 (tramp-compat-temporary-file-directory)))
5612 (apply 5591 (apply
5613 'tramp-call-process-region ,vec beg end 5592 'tramp-call-process-region ,vec beg end
5614 (car (split-string ,compress)) t t nil 5593 (car (split-string ,compress)) t t nil
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index e3755533b9d..b02760bff80 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -3445,7 +3445,7 @@ The terminal type can be configured with `tramp-terminal-type'."
3445 (tramp-message vec 3 "Process has finished.") 3445 (tramp-message vec 3 "Process has finished.")
3446 (throw 'tramp-action 'ok)) 3446 (throw 'tramp-action 'ok))
3447 (tramp-message vec 3 "Process has died.") 3447 (tramp-message vec 3 "Process has died.")
3448 (throw 'tramp-action 'process-died)))) 3448 (throw 'tramp-action 'out-of-band-failed))))
3449 (t nil))) 3449 (t nil)))
3450 3450
3451;;; Functions for processing the actions: 3451;;; Functions for processing the actions:
@@ -3506,6 +3506,10 @@ connection buffer."
3506 (tramp-get-connection-buffer vec) vec 'file-error 3506 (tramp-get-connection-buffer vec) vec 'file-error
3507 (cond 3507 (cond
3508 ((eq exit 'permission-denied) "Permission denied") 3508 ((eq exit 'permission-denied) "Permission denied")
3509 ((eq exit 'out-of-band-failed)
3510 (format-message
3511 "Copy failed, see buffer `%s' for details"
3512 (tramp-get-connection-buffer vec)))
3509 ((eq exit 'process-died) 3513 ((eq exit 'process-died)
3510 (substitute-command-keys 3514 (substitute-command-keys
3511 (concat 3515 (concat
@@ -4003,7 +4007,8 @@ ALIST is of the form ((FROM . TO) ...)."
4003It always returns a return code. The Lisp error raised when 4007It always returns a return code. The Lisp error raised when
4004PROGRAM is nil is trapped also, returning 1. Furthermore, traces 4008PROGRAM is nil is trapped also, returning 1. Furthermore, traces
4005are written with verbosity of 6." 4009are written with verbosity of 6."
4006 (let ((v (or vec 4010 (let ((default-directory (tramp-compat-temporary-file-directory))
4011 (v (or vec
4007 (vector tramp-current-method tramp-current-user 4012 (vector tramp-current-method tramp-current-user
4008 tramp-current-host nil nil))) 4013 tramp-current-host nil nil)))
4009 (destination (if (eq destination t) (current-buffer) destination)) 4014 (destination (if (eq destination t) (current-buffer) destination))
@@ -4033,7 +4038,8 @@ are written with verbosity of 6."
4033It always returns a return code. The Lisp error raised when 4038It always returns a return code. The Lisp error raised when
4034PROGRAM is nil is trapped also, returning 1. Furthermore, traces 4039PROGRAM is nil is trapped also, returning 1. Furthermore, traces
4035are written with verbosity of 6." 4040are written with verbosity of 6."
4036 (let ((v (or vec 4041 (let ((default-directory (tramp-compat-temporary-file-directory))
4042 (v (or vec
4037 (vector tramp-current-method tramp-current-user 4043 (vector tramp-current-method tramp-current-user
4038 tramp-current-host nil nil))) 4044 tramp-current-host nil nil)))
4039 (buffer (if (eq buffer t) (current-buffer) buffer)) 4045 (buffer (if (eq buffer t) (current-buffer) buffer))
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el
index 6f4d1f16857..18f1cc4374a 100644
--- a/lisp/progmodes/cc-langs.el
+++ b/lisp/progmodes/cc-langs.el
@@ -1794,7 +1794,7 @@ but they don't build a type of themselves. Unlike the keywords on
1794not the type face." 1794not the type face."
1795 t nil 1795 t nil
1796 c '("const" "restrict" "volatile") 1796 c '("const" "restrict" "volatile")
1797 c++ '("const" "constexpr" "noexcept" "volatile" "throw" "final" "override") 1797 c++ '("const" "noexcept" "volatile" "throw" "final" "override")
1798 objc '("const" "volatile")) 1798 objc '("const" "volatile"))
1799 1799
1800(c-lang-defconst c-opt-type-modifier-key 1800(c-lang-defconst c-opt-type-modifier-key
@@ -1996,8 +1996,8 @@ If any of these also are on `c-type-list-kwds', `c-ref-list-kwds',
1996will be handled." 1996will be handled."
1997 t nil 1997 t nil
1998 (c c++) '("auto" "extern" "inline" "register" "static") 1998 (c c++) '("auto" "extern" "inline" "register" "static")
1999 c++ (append '("explicit" "friend" "mutable" "template" "thread_local" 1999 c++ (append '("constexpr" "explicit" "friend" "mutable" "template"
2000 "using" "virtual") 2000 "thread_local" "using" "virtual")
2001 (c-lang-const c-modifier-kwds)) 2001 (c-lang-const c-modifier-kwds))
2002 objc '("auto" "bycopy" "byref" "extern" "in" "inout" "oneway" "out" "static") 2002 objc '("auto" "bycopy" "byref" "extern" "in" "inout" "oneway" "out" "static")
2003 ;; FIXME: Some of those below ought to be on `c-other-decl-kwds' instead. 2003 ;; FIXME: Some of those below ought to be on `c-other-decl-kwds' instead.
diff --git a/lisp/version.el b/lisp/version.el
index dc228870d1e..d4cb92ec86a 100644
--- a/lisp/version.el
+++ b/lisp/version.el
@@ -116,18 +116,6 @@ or if we could not determine the revision.")
116 (looking-at "[0-9a-fA-F]\\{40\\}")) 116 (looking-at "[0-9a-fA-F]\\{40\\}"))
117 (match-string 0))))) 117 (match-string 0)))))
118 118
119(defun emacs-repository--version-git-1 (file dir)
120 "Internal subroutine of `emacs-repository-get-version'."
121 (when (file-readable-p file)
122 (with-temp-buffer
123 (insert-file-contents file)
124 (cond ((looking-at "[0-9a-fA-F]\\{40\\}")
125 (match-string 0))
126 ((looking-at "ref: \\(.*\\)")
127 (emacs-repository--version-git-1
128 (expand-file-name (match-string 1) dir)
129 dir))))))
130
131(defun emacs-repository-get-version (&optional dir external) 119(defun emacs-repository-get-version (&optional dir external)
132 "Try to return as a string the repository revision of the Emacs sources. 120 "Try to return as a string the repository revision of the Emacs sources.
133The format of the returned string is dependent on the VCS in use. 121The format of the returned string is dependent on the VCS in use.
@@ -137,42 +125,8 @@ this reports on the current state of the sources, which may not
137correspond to the running Emacs. 125correspond to the running Emacs.
138 126
139Optional argument DIR is a directory to use instead of `source-directory'. 127Optional argument DIR is a directory to use instead of `source-directory'.
140Optional argument EXTERNAL non-nil means to just ask the VCS itself, 128Optional argument EXTERNAL is ignored."
141if the sources appear to be under version control. Otherwise only ask 129 (emacs-repository-version-git (or dir source-directory)))
142the VCS if we cannot find any information ourselves."
143 (or dir (setq dir source-directory))
144 (let* ((base-dir (expand-file-name ".git" dir))
145 (in-main-worktree (file-directory-p base-dir))
146 (in-linked-worktree nil)
147 sub-dir)
148 ;; If the sources are in a linked worktree, .git is a file that points to
149 ;; the location of the main worktree and the repo's administrative files.
150 (when (and (not in-main-worktree)
151 (file-regular-p base-dir)
152 (file-readable-p base-dir))
153 (with-temp-buffer
154 (insert-file-contents base-dir)
155 (when (looking-at "gitdir: \\(.*\.git\\)\\(.*\\)$")
156 (setq base-dir (match-string 1)
157 sub-dir (concat base-dir (match-string 2))
158 in-linked-worktree t))))
159 ;; We've found a worktree, either main or linked.
160 (when (or in-main-worktree in-linked-worktree)
161 (if external
162 (emacs-repository-version-git dir)
163 (or (if in-linked-worktree
164 (emacs-repository--version-git-1
165 (expand-file-name "HEAD" sub-dir) base-dir)
166 (let ((files '("HEAD" "refs/heads/master"))
167 file rev)
168 (while (and (not rev)
169 (setq file (car files)))
170 (setq file (expand-file-name file base-dir)
171 files (cdr files)
172 rev (emacs-repository--version-git-1 file base-dir)))
173 rev))
174 ;; AFAICS this doesn't work during dumping (bug#20799).
175 (emacs-repository-version-git dir))))))
176 130
177;; We put version info into the executable in the form that `ident' uses. 131;; We put version info into the executable in the form that `ident' uses.
178(purecopy (concat "\n$Id: " (subst-char-in-string ?\n ?\s (emacs-version)) 132(purecopy (concat "\n$Id: " (subst-char-in-string ?\n ?\s (emacs-version))
diff --git a/src/w32.c b/src/w32.c
index 442ce79b23c..71a38b91946 100644
--- a/src/w32.c
+++ b/src/w32.c
@@ -2505,6 +2505,35 @@ sys_putenv (char *str)
2505 return unsetenv (str); 2505 return unsetenv (str);
2506 } 2506 }
2507 2507
2508 if (strncmp (str, "TZ=<", 4) == 0)
2509 {
2510 /* MS-Windows does not support POSIX.1-2001 angle-bracket TZ
2511 abbreviation syntax. Convert to POSIX.1-1988 syntax if possible,
2512 and to the undocumented placeholder "ZZZ" otherwise. */
2513 bool supported_abbr = true;
2514 for (char *p = str + 4; *p; p++)
2515 {
2516 if (('0' <= *p && *p <= '9') || *p == '-' || *p == '+')
2517 supported_abbr = false;
2518 else if (*p == '>')
2519 {
2520 ptrdiff_t abbrlen;
2521 if (supported_abbr)
2522 {
2523 abbrlen = p - (str + 4);
2524 memmove (str + 3, str + 4, abbrlen);
2525 }
2526 else
2527 {
2528 abbrlen = 3;
2529 memset (str + 3, 'Z', abbrlen);
2530 }
2531 memmove (str + 3 + abbrlen, p + 1, strlen (p));
2532 break;
2533 }
2534 }
2535 }
2536
2508 return _putenv (str); 2537 return _putenv (str);
2509} 2538}
2510 2539