aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-04-01 06:25:39 -0400
committerGlenn Morris2018-04-01 06:25:39 -0400
commitb87bd584a2dd0617ce5278db31d98339d1119d8e (patch)
treefe76a4407df2ffc4b665dc63d170049f42e3ab66
parent9fee1b8fb3395bde2d2e28e46c6690c36f730780 (diff)
downloademacs-b87bd584a2dd0617ce5278db31d98339d1119d8e.tar.gz
emacs-b87bd584a2dd0617ce5278db31d98339d1119d8e.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el11
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 95d5be7734b..c01d17a50e9 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -22224,7 +22224,7 @@ QUALITY can be:
22224;;;### (autoloads nil "mwheel" "mwheel.el" (0 0 0 0)) 22224;;;### (autoloads nil "mwheel" "mwheel.el" (0 0 0 0))
22225;;; Generated autoloads from mwheel.el 22225;;; Generated autoloads from mwheel.el
22226 22226
22227(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mwheel" '("mwheel-" "mouse-wheel-"))) 22227(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mwheel" '("mouse-wheel-" "mwheel-")))
22228 22228
22229;;;*** 22229;;;***
22230 22230
@@ -23458,7 +23458,7 @@ Coloring:
23458 23458
23459;;;### (autoloads nil "org" "org/org.el" (0 0 0 0)) 23459;;;### (autoloads nil "org" "org/org.el" (0 0 0 0))
23460;;; Generated autoloads from org/org.el 23460;;; Generated autoloads from org/org.el
23461(push (purecopy '(org 9 1 6)) package--builtin-versions) 23461(push (purecopy '(org 9 1 9)) package--builtin-versions)
23462 23462
23463(autoload 'org-babel-do-load-languages "org" "\ 23463(autoload 'org-babel-do-load-languages "org" "\
23464Load the languages defined in `org-babel-load-languages'. 23464Load the languages defined in `org-babel-load-languages'.
@@ -23667,7 +23667,7 @@ information about your Org version and configuration.
23667\(fn)" t nil) 23667\(fn)" t nil)
23668 23668
23669(autoload 'org-reload "org" "\ 23669(autoload 'org-reload "org" "\
23670Reload all org lisp files. 23670Reload all Org Lisp files.
23671With prefix arg UNCOMPILED, load the uncompiled versions. 23671With prefix arg UNCOMPILED, load the uncompiled versions.
23672 23672
23673\(fn &optional UNCOMPILED)" t nil) 23673\(fn &optional UNCOMPILED)" t nil)
@@ -24877,7 +24877,9 @@ two element list, binding its elements to symbols named `foo' and
24877 24877
24878A significant difference from `cl-destructuring-bind' is that, if 24878A significant difference from `cl-destructuring-bind' is that, if
24879a pattern match fails, the next case is tried until either a 24879a pattern match fails, the next case is tried until either a
24880successful match is found or there are no more cases. 24880successful match is found or there are no more cases. The CODE
24881expression corresponding to the matching pattern determines the
24882return value. If there is no match the returned value is nil.
24881 24883
24882Another difference is that pattern elements may be quoted, 24884Another difference is that pattern elements may be quoted,
24883meaning they must match exactly: The pattern \\='(foo bar) 24885meaning they must match exactly: The pattern \\='(foo bar)
@@ -24925,6 +24927,7 @@ Emacs Lisp manual for more information and examples.
24925 24927
24926(autoload 'pcase-exhaustive "pcase" "\ 24928(autoload 'pcase-exhaustive "pcase" "\
24927The exhaustive version of `pcase' (which see). 24929The exhaustive version of `pcase' (which see).
24930If EXP fails to match any of the patterns in CASES, an error is signaled.
24928 24931
24929\(fn EXP &rest CASES)" nil t) 24932\(fn EXP &rest CASES)" nil t)
24930 24933