mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
; Auto-commit of loaddefs files.
This commit is contained in:
parent
356413bbf8
commit
2d420fb6b1
1 changed files with 83 additions and 35 deletions
|
|
@ -5444,16 +5444,7 @@ See also `conf-space-mode', `conf-colon-mode', `conf-javaprop-mode',
|
|||
|
||||
(autoload 'conf-unix-mode "conf-mode" "\
|
||||
Conf Mode starter for Unix style Conf files.
|
||||
Comments start with `#'.
|
||||
For details see `conf-mode'. Example:
|
||||
|
||||
# Conf mode font-locks this right on Unix and with \\[conf-unix-mode]
|
||||
|
||||
\[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=The GIMP
|
||||
Name[ca]=El GIMP
|
||||
Name[cs]=GIMP
|
||||
Comments start with `#'. For details see `conf-mode'.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
|
|
@ -5559,6 +5550,32 @@ For details see `conf-mode'. Example:
|
|||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'conf-toml-mode "conf-mode" "\
|
||||
Conf Mode starter for TOML files.
|
||||
Comments start with `#' and \"assignments\" are with `='.
|
||||
For details see `conf-mode'. Example:
|
||||
|
||||
# Conf mode font-locks this right with \\[conf-toml-mode]
|
||||
|
||||
\[entry]
|
||||
value = \"some string\"
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'conf-desktop-mode "conf-mode" "\
|
||||
Conf Mode started for freedesktop.org Desktop files.
|
||||
Comments start with `#' and \"assignments\" are with `='.
|
||||
For details see `conf-mode'.
|
||||
|
||||
# Conf mode font-locks this correctly with \\[conf-desktop-mode]
|
||||
[Desktop Entry]
|
||||
Name=GNU Image Manipulation Program
|
||||
Name[oc]=Editor d'imatge GIMP
|
||||
Exec=gimp-2.8 %U
|
||||
Terminal=false
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "conf-mode" '("conf-")))
|
||||
|
||||
;;;***
|
||||
|
|
@ -6830,9 +6847,12 @@ or call the function `delete-selection-mode'.")
|
|||
|
||||
(autoload 'delete-selection-mode "delsel" "\
|
||||
Toggle Delete Selection mode.
|
||||
With a prefix argument ARG, enable Delete Selection mode if ARG
|
||||
is positive, and disable it otherwise. If called from Lisp,
|
||||
enable the mode if ARG is omitted or nil.
|
||||
Interactively, with a prefix argument, enable
|
||||
Delete Selection mode if the prefix argument is positive,
|
||||
and disable it otherwise. If called from Lisp, toggle
|
||||
the mode if ARG is `toggle', disable the mode if ARG is
|
||||
a non-positive integer, and enable the mode otherwise
|
||||
\(including if ARG is omitted or nil or a positive integer).
|
||||
|
||||
When Delete Selection mode is enabled, typed text replaces the selection
|
||||
if the selection is active. Otherwise, typed text is just inserted at
|
||||
|
|
@ -9700,15 +9720,6 @@ It creates an autoload function for CNAME's constructor.
|
|||
;;;### (autoloads nil "elec-pair" "elec-pair.el" (0 0 0 0))
|
||||
;;; Generated autoloads from elec-pair.el
|
||||
|
||||
(defvar electric-pair-text-pairs '((34 . 34) ((nth 0 electric-quote-chars) nth 1 electric-quote-chars) ((nth 2 electric-quote-chars) nth 3 electric-quote-chars)) "\
|
||||
Alist of pairs that should always be used in comments and strings.
|
||||
|
||||
Pairs of delimiters in this list are a fallback in case they have
|
||||
no syntax relevant to `electric-pair-mode' in the syntax table
|
||||
defined in `electric-pair-text-syntax-table'")
|
||||
|
||||
(custom-autoload 'electric-pair-text-pairs "elec-pair" t)
|
||||
|
||||
(defvar electric-pair-mode nil "\
|
||||
Non-nil if Electric-Pair mode is enabled.
|
||||
See the `electric-pair-mode' command
|
||||
|
|
@ -13061,7 +13072,23 @@ to get the effect of a C-q.
|
|||
;;; Generated autoloads from progmodes/flymake.el
|
||||
(push (purecopy '(flymake 0 3)) package--builtin-versions)
|
||||
|
||||
(autoload 'flymake-mode "flymake" "\
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "flymake-proc" "progmodes/flymake-proc.el"
|
||||
;;;;;; (0 0 0 0))
|
||||
;;; Generated autoloads from progmodes/flymake-proc.el
|
||||
(push (purecopy '(flymake-proc 0 3)) package--builtin-versions)
|
||||
|
||||
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flymake-proc" '("flymake-")))
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "flymake-ui" "progmodes/flymake-ui.el" (0 0
|
||||
;;;;;; 0 0))
|
||||
;;; Generated autoloads from progmodes/flymake-ui.el
|
||||
(push (purecopy '(flymake-ui 0 3)) package--builtin-versions)
|
||||
|
||||
(autoload 'flymake-mode "flymake-ui" "\
|
||||
Toggle Flymake mode on or off.
|
||||
With a prefix argument ARG, enable Flymake mode if ARG is
|
||||
positive, and disable it otherwise. If called from Lisp, enable
|
||||
|
|
@ -13070,22 +13097,22 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'.
|
|||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'flymake-mode-on "flymake" "\
|
||||
(autoload 'flymake-mode-on "flymake-ui" "\
|
||||
Turn flymake mode on.
|
||||
|
||||
\(fn)" nil nil)
|
||||
|
||||
(autoload 'flymake-mode-off "flymake" "\
|
||||
(autoload 'flymake-mode-off "flymake-ui" "\
|
||||
Turn flymake mode off.
|
||||
|
||||
\(fn)" nil nil)
|
||||
|
||||
(autoload 'flymake-find-file-hook "flymake" "\
|
||||
(autoload 'flymake-find-file-hook "flymake-ui" "\
|
||||
|
||||
|
||||
\(fn)" nil nil)
|
||||
|
||||
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flymake" '("flymake-")))
|
||||
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flymake-ui" '("flymake-")))
|
||||
|
||||
;;;***
|
||||
|
||||
|
|
@ -15060,12 +15087,9 @@ List of hook functions run by `grep-process-setup' (see `run-hooks').")
|
|||
|
||||
(custom-autoload 'grep-setup-hook "grep" t)
|
||||
|
||||
(autoload 'grep-regexp-alist "grep" "\
|
||||
Return a regexp alist to match grep hits.
|
||||
The regexp used depends on `grep-use-null-filename-separator'.
|
||||
See `compilation-error-regexp-alist' for format details.
|
||||
|
||||
\(fn)" nil nil)
|
||||
(defconst grep-regexp-alist `((,(concat "^\\(?:" "\\(?1:[^ | ||||