diff options
| author | Glenn Morris | 2017-06-01 06:26:41 -0400 |
|---|---|---|
| committer | Glenn Morris | 2017-06-01 06:26:41 -0400 |
| commit | 9bc4c90d0731b309ca78eb65750da25e0b57b102 (patch) | |
| tree | cd41c19a60ed71ecc23cff98f1729997617813c3 | |
| parent | 877e808440d4bc2e62d6fb509defee91a3fdc895 (diff) | |
| download | emacs-9bc4c90d0731b309ca78eb65750da25e0b57b102.tar.gz emacs-9bc4c90d0731b309ca78eb65750da25e0b57b102.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 187 |
1 files changed, 132 insertions, 55 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index a5c6bc89d57..ae28ba93e61 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; loaddefs.tmp --- automatically extracted autoloads | 1 | ;;; loaddefs.el --- automatically extracted autoloads |
| 2 | ;; | 2 | ;; |
| 3 | ;;; Code: | 3 | ;;; Code: |
| 4 | 4 | ||
| @@ -4899,15 +4899,6 @@ printer proceeds to the next function on the list. | |||
| 4899 | This variable is not used at present, but it is defined in hopes that | 4899 | This variable is not used at present, but it is defined in hopes that |
| 4900 | a future Emacs interpreter will be able to use it.") | 4900 | a future Emacs interpreter will be able to use it.") |
| 4901 | 4901 | ||
| 4902 | (autoload 'cl-mapcar "cl-lib" "\ | ||
| 4903 | Apply FUNCTION to each element of SEQ, and make a list of the results. | ||
| 4904 | If there are several SEQs, FUNCTION is called with that many arguments, | ||
| 4905 | and mapping stops as soon as the shortest list runs out. With just one | ||
| 4906 | SEQ, this is like `mapcar'. With several, it is like the Common Lisp | ||
| 4907 | `mapcar' function extended to arbitrary sequence types. | ||
| 4908 | |||
| 4909 | \(fn FUNCTION SEQ...)" nil nil) | ||
| 4910 | |||
| 4911 | (defvar cl-old-struct-compat-mode nil "\ | 4902 | (defvar cl-old-struct-compat-mode nil "\ |
| 4912 | Non-nil if Cl-Old-Struct-Compat mode is enabled. | 4903 | Non-nil if Cl-Old-Struct-Compat mode is enabled. |
| 4913 | See the `cl-old-struct-compat-mode' command | 4904 | See the `cl-old-struct-compat-mode' command |
| @@ -5878,7 +5869,22 @@ with empty strings removed. | |||
| 5878 | ;;; Generated autoloads from textmodes/css-mode.el | 5869 | ;;; Generated autoloads from textmodes/css-mode.el |
| 5879 | 5870 | ||
| 5880 | (autoload 'css-mode "css-mode" "\ | 5871 | (autoload 'css-mode "css-mode" "\ |
| 5881 | Major mode to edit Cascading Style Sheets. | 5872 | Major mode to edit Cascading Style Sheets (CSS). |
| 5873 | \\<css-mode-map> | ||
| 5874 | This mode provides syntax highlighting, indentation, completion, | ||
| 5875 | and documentation lookup for CSS. | ||
| 5876 | |||
| 5877 | Use `\\[complete-symbol]' to complete CSS properties, property values, | ||
| 5878 | pseudo-elements, pseudo-classes, at-rules, bang-rules, and HTML | ||
| 5879 | tags, classes and IDs. Completion candidates for HTML class | ||
| 5880 | names and IDs are found by looking through open HTML mode | ||
| 5881 | buffers. | ||
| 5882 | |||
| 5883 | Use `\\[info-lookup-symbol]' to look up documentation of CSS properties, at-rules, | ||
| 5884 | pseudo-classes, and pseudo-elements on the Mozilla Developer | ||
| 5885 | Network (MDN). | ||
| 5886 | |||
| 5887 | \\{css-mode-map} | ||
| 5882 | 5888 | ||
| 5883 | \(fn)" t nil) | 5889 | \(fn)" t nil) |
| 5884 | (add-to-list 'auto-mode-alist '("\\.scss\\'" . scss-mode)) | 5890 | (add-to-list 'auto-mode-alist '("\\.scss\\'" . scss-mode)) |
| @@ -12721,12 +12727,24 @@ Visit the file you click on in another window. | |||
| 12721 | 12727 | ||
| 12722 | (autoload 'find-library "find-func" "\ | 12728 | (autoload 'find-library "find-func" "\ |
| 12723 | Find the Emacs Lisp source of LIBRARY. | 12729 | Find the Emacs Lisp source of LIBRARY. |
| 12724 | LIBRARY should be a string (the name of the library). If the | ||
| 12725 | optional OTHER-WINDOW argument (i.e., the command argument) is | ||
| 12726 | specified, pop to a different window before displaying the | ||
| 12727 | buffer. | ||
| 12728 | 12730 | ||
| 12729 | \(fn LIBRARY &optional OTHER-WINDOW)" t nil) | 12731 | Interactively, prompt for LIBRARY using the one at or near point. |
| 12732 | |||
| 12733 | \(fn LIBRARY)" t nil) | ||
| 12734 | |||
| 12735 | (autoload 'find-library-other-window "find-func" "\ | ||
| 12736 | Find the Emacs Lisp source of LIBRARY in another window. | ||
| 12737 | |||
| 12738 | See `find-library' for more details. | ||
| 12739 | |||
| 12740 | \(fn LIBRARY)" t nil) | ||
| 12741 | |||
| 12742 | (autoload 'find-library-other-frame "find-func" "\ | ||
| 12743 | Find the Emacs Lisp source of LIBRARY in another frame. | ||
| 12744 | |||
| 12745 | See `find-library' for more details. | ||
| 12746 | |||
| 12747 | \(fn LIBRARY)" t nil) | ||
| 12730 | 12748 | ||
| 12731 | (autoload 'find-function-search-for-symbol "find-func" "\ | 12749 | (autoload 'find-function-search-for-symbol "find-func" "\ |
| 12732 | Search for SYMBOL's definition of type TYPE in LIBRARY. | 12750 | Search for SYMBOL's definition of type TYPE in LIBRARY. |
| @@ -12887,7 +12905,7 @@ Define some key bindings for the find-function family of functions. | |||
| 12887 | 12905 | ||
| 12888 | \(fn)" nil nil) | 12906 | \(fn)" nil nil) |
| 12889 | 12907 | ||
| 12890 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "find-func" '("find-"))) | 12908 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "find-func" '("find-" "read-library-name"))) |
| 12891 | 12909 | ||
| 12892 | ;;;*** | 12910 | ;;;*** |
| 12893 | 12911 | ||
| @@ -15889,6 +15907,14 @@ This discards the buffer's undo information. | |||
| 15889 | 15907 | ||
| 15890 | ;;;*** | 15908 | ;;;*** |
| 15891 | 15909 | ||
| 15910 | ;;;### (autoloads "actual autoloads are elsewhere" "hfy-cmap" "hfy-cmap.el" | ||
| 15911 | ;;;;;; (0 0 0 0)) | ||
| 15912 | ;;; Generated autoloads from hfy-cmap.el | ||
| 15913 | |||
| 15914 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hfy-cmap" '("hfy-" "htmlfontify-unload-rgb-file"))) | ||
| 15915 | |||
| 15916 | ;;;*** | ||
| 15917 | |||
| 15892 | ;;;### (autoloads nil "hi-lock" "hi-lock.el" (0 0 0 0)) | 15918 | ;;;### (autoloads nil "hi-lock" "hi-lock.el" (0 0 0 0)) |
| 15893 | ;;; Generated autoloads from hi-lock.el | 15919 | ;;; Generated autoloads from hi-lock.el |
| 15894 | 15920 | ||
| @@ -21971,32 +21997,32 @@ QUALITY can be: | |||
| 21971 | ;;; Generated autoloads from net/net-utils.el | 21997 | ;;; Generated autoloads from net/net-utils.el |
| 21972 | 21998 | ||
| 21973 | (autoload 'ifconfig "net-utils" "\ | 21999 | (autoload 'ifconfig "net-utils" "\ |
| 21974 | Run ifconfig and display diagnostic output. | 22000 | Run `ifconfig-program' and display diagnostic output. |
| 21975 | 22001 | ||
| 21976 | \(fn)" t nil) | 22002 | \(fn)" t nil) |
| 21977 | 22003 | ||
| 21978 | (autoload 'iwconfig "net-utils" "\ | 22004 | (autoload 'iwconfig "net-utils" "\ |
| 21979 | Run iwconfig and display diagnostic output. | 22005 | Run `iwconfig-program' and display diagnostic output. |
| 21980 | 22006 | ||
| 21981 | \(fn)" t nil) | 22007 | \(fn)" t nil) |
| 21982 | 22008 | ||
| 21983 | (autoload 'netstat "net-utils" "\ | 22009 | (autoload 'netstat "net-utils" "\ |
| 21984 | Run netstat and display diagnostic output. | 22010 | Run `netstat-program' and display diagnostic output. |
| 21985 | 22011 | ||
| 21986 | \(fn)" t nil) | 22012 | \(fn)" t nil) |
| 21987 | 22013 | ||
| 21988 | (autoload 'arp "net-utils" "\ | 22014 | (autoload 'arp "net-utils" "\ |
| 21989 | Run arp and display diagnostic output. | 22015 | Run `arp-program' and display diagnostic output. |
| 21990 | 22016 | ||
| 21991 | \(fn)" t nil) | 22017 | \(fn)" t nil) |
| 21992 | 22018 | ||
| 21993 | (autoload 'route "net-utils" "\ | 22019 | (autoload 'route "net-utils" "\ |
| 21994 | Run route and display diagnostic output. | 22020 | Run `route-program' and display diagnostic output. |
| 21995 | 22021 | ||
| 21996 | \(fn)" t nil) | 22022 | \(fn)" t nil) |
| 21997 | 22023 | ||
| 21998 | (autoload 'traceroute "net-utils" "\ | 22024 | (autoload 'traceroute "net-utils" "\ |
| 21999 | Run traceroute program for TARGET. | 22025 | Run `traceroute-program' for TARGET. |
| 22000 | 22026 | ||
| 22001 | \(fn TARGET)" t nil) | 22027 | \(fn TARGET)" t nil) |
| 22002 | 22028 | ||
| @@ -22008,32 +22034,49 @@ If your system's ping continues until interrupted, you can try setting | |||
| 22008 | \(fn HOST)" t nil) | 22034 | \(fn HOST)" t nil) |
| 22009 | 22035 | ||
| 22010 | (autoload 'nslookup-host "net-utils" "\ | 22036 | (autoload 'nslookup-host "net-utils" "\ |
| 22011 | Lookup the DNS information for HOST. | 22037 | Look up the DNS information for HOST (name or IP address). |
| 22038 | Optional argument NAME-SERVER says which server to use for | ||
| 22039 | DNS resolution. | ||
| 22040 | Interactively, prompt for NAME-SERVER if invoked with prefix argument. | ||
| 22012 | 22041 | ||
| 22013 | \(fn HOST)" t nil) | 22042 | This command uses `nslookup-program' for looking up the DNS information. |
| 22043 | |||
| 22044 | \(fn HOST &optional NAME-SERVER)" t nil) | ||
| 22014 | 22045 | ||
| 22015 | (autoload 'nslookup "net-utils" "\ | 22046 | (autoload 'nslookup "net-utils" "\ |
| 22016 | Run nslookup program. | 22047 | Run `nslookup-program'. |
| 22017 | 22048 | ||
| 22018 | \(fn)" t nil) | 22049 | \(fn)" t nil) |
| 22019 | 22050 | ||
| 22020 | (autoload 'dns-lookup-host "net-utils" "\ | 22051 | (autoload 'dns-lookup-host "net-utils" "\ |
| 22021 | Lookup the DNS information for HOST (name or IP address). | 22052 | Look up the DNS information for HOST (name or IP address). |
| 22053 | Optional argument NAME-SERVER says which server to use for | ||
| 22054 | DNS resolution. | ||
| 22055 | Interactively, prompt for NAME-SERVER if invoked with prefix argument. | ||
| 22022 | 22056 | ||
| 22023 | \(fn HOST)" t nil) | 22057 | This command uses `dns-lookup-program' for looking up the DNS information. |
| 22058 | |||
| 22059 | \(fn HOST &optional NAME-SERVER)" t nil) | ||
| 22024 | 22060 | ||
| 22025 | (autoload 'run-dig "net-utils" "\ | 22061 | (autoload 'run-dig "net-utils" "\ |
| 22026 | Run dig program. | 22062 | Look up DNS information for HOST (name or IP address). |
| 22063 | Optional argument NAME-SERVER says which server to use for | ||
| 22064 | DNS resolution. | ||
| 22065 | Interactively, prompt for NAME-SERVER if invoked with prefix argument. | ||
| 22027 | 22066 | ||
| 22028 | \(fn HOST)" t nil) | 22067 | This command uses `dig-program' for looking up the DNS information. |
| 22068 | |||
| 22069 | \(fn HOST &optional NAME-SERVER)" t nil) | ||
| 22029 | 22070 | ||
| 22030 | (autoload 'ftp "net-utils" "\ | 22071 | (autoload 'ftp "net-utils" "\ |
| 22031 | Run ftp program. | 22072 | Run `ftp-program' to connect to HOST. |
| 22032 | 22073 | ||
| 22033 | \(fn HOST)" t nil) | 22074 | \(fn HOST)" t nil) |
| 22034 | 22075 | ||
| 22035 | (autoload 'finger "net-utils" "\ | 22076 | (autoload 'finger "net-utils" "\ |
| 22036 | Finger USER on HOST. | 22077 | Finger USER on HOST. |
| 22078 | This command uses `finger-X.500-host-regexps' | ||
| 22079 | and `network-connection-service-alist', which see. | ||
| 22037 | 22080 | ||
| 22038 | \(fn USER HOST)" t nil) | 22081 | \(fn USER HOST)" t nil) |
| 22039 | 22082 | ||
| @@ -22041,6 +22084,7 @@ Finger USER on HOST. | |||
| 22041 | Send SEARCH-STRING to server defined by the `whois-server-name' variable. | 22084 | Send SEARCH-STRING to server defined by the `whois-server-name' variable. |
| 22042 | If `whois-guess-server' is non-nil, then try to deduce the correct server | 22085 | If `whois-guess-server' is non-nil, then try to deduce the correct server |
| 22043 | from SEARCH-STRING. With argument, prompt for whois server. | 22086 | from SEARCH-STRING. With argument, prompt for whois server. |
| 22087 | The port is deduced from `network-connection-service-alist'. | ||
| 22044 | 22088 | ||
| 22045 | \(fn ARG SEARCH-STRING)" t nil) | 22089 | \(fn ARG SEARCH-STRING)" t nil) |
| 22046 | 22090 | ||
| @@ -22051,6 +22095,7 @@ from SEARCH-STRING. With argument, prompt for whois server. | |||
| 22051 | 22095 | ||
| 22052 | (autoload 'network-connection-to-service "net-utils" "\ | 22096 | (autoload 'network-connection-to-service "net-utils" "\ |
| 22053 | Open a network connection to SERVICE on HOST. | 22097 | Open a network connection to SERVICE on HOST. |
| 22098 | This command uses `network-connection-service-alist', which see. | ||
| 22054 | 22099 | ||
| 22055 | \(fn HOST SERVICE)" t nil) | 22100 | \(fn HOST SERVICE)" t nil) |
| 22056 | 22101 | ||
| @@ -24195,13 +24240,13 @@ downloads in the background. | |||
| 24195 | 24240 | ||
| 24196 | (autoload 'package-install "package" "\ | 24241 | (autoload 'package-install "package" "\ |
| 24197 | Install the package PKG. | 24242 | Install the package PKG. |
| 24198 | PKG can be a package-desc or a symbol naming one of the available packages | 24243 | PKG can be a `package-desc' or a symbol naming one of the available packages |
| 24199 | in an archive in `package-archives'. Interactively, prompt for its name. | 24244 | in an archive in `package-archives'. Interactively, prompt for its name. |
| 24200 | 24245 | ||
| 24201 | If called interactively or if DONT-SELECT nil, add PKG to | 24246 | If called interactively or if DONT-SELECT nil, add PKG to |
| 24202 | `package-selected-packages'. | 24247 | `package-selected-packages'. |
| 24203 | 24248 | ||
| 24204 | If PKG is a package-desc and it is already installed, don't try | 24249 | If PKG is a `package-desc' and it is already installed, don't try |
| 24205 | to install it but still mark it as selected. | 24250 | to install it but still mark it as selected. |
| 24206 | 24251 | ||
| 24207 | \(fn PKG &optional DONT-SELECT)" t nil) | 24252 | \(fn PKG &optional DONT-SELECT)" t nil) |
| @@ -24235,7 +24280,7 @@ If some packages are not installed propose to install them. | |||
| 24235 | 24280 | ||
| 24236 | (autoload 'package-reinstall "package" "\ | 24281 | (autoload 'package-reinstall "package" "\ |
| 24237 | Reinstall package PKG. | 24282 | Reinstall package PKG. |
| 24238 | PKG should be either a symbol, the package name, or a package-desc | 24283 | PKG should be either a symbol, the package name, or a `package-desc' |
| 24239 | object. | 24284 | object. |
| 24240 | 24285 | ||
| 24241 | \(fn PKG)" t nil) | 24286 | \(fn PKG)" t nil) |
| @@ -25024,6 +25069,31 @@ will not be shown. | |||
| 25024 | 25069 | ||
| 25025 | ;;;*** | 25070 | ;;;*** |
| 25026 | 25071 | ||
| 25072 | ;;;### (autoloads nil "pixel-scroll" "pixel-scroll.el" (0 0 0 0)) | ||
| 25073 | ;;; Generated autoloads from pixel-scroll.el | ||
| 25074 | |||
| 25075 | (defvar pixel-scroll-mode nil "\ | ||
| 25076 | Non-nil if Pixel-Scroll mode is enabled. | ||
| 25077 | See the `pixel-scroll-mode' command | ||
| 25078 | for a description of this minor mode. | ||
| 25079 | Setting this variable directly does not take effect; | ||
| 25080 | either customize it (see the info node `Easy Customization') | ||
| 25081 | or call the function `pixel-scroll-mode'.") | ||
| 25082 | |||
| 25083 | (custom-autoload 'pixel-scroll-mode "pixel-scroll" nil) | ||
| 25084 | |||
| 25085 | (autoload 'pixel-scroll-mode "pixel-scroll" "\ | ||
| 25086 | A minor mode to scroll text pixel-by-pixel. | ||
| 25087 | With a prefix argument ARG, enable Pixel Scroll mode if ARG is positive, | ||
| 25088 | and disable it otherwise. If called from Lisp, enable Pixel Scroll mode | ||
| 25089 | if ARG is omitted or nil. | ||
| 25090 | |||
| 25091 | \(fn &optional ARG)" t nil) | ||
| 25092 | |||
| 25093 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pixel-scroll" '("pixel-"))) | ||
| 25094 | |||
| 25095 | ;;;*** | ||
| 25096 | |||
| 25027 | ;;;### (autoloads nil "plstore" "plstore.el" (0 0 0 0)) | 25097 | ;;;### (autoloads nil "plstore" "plstore.el" (0 0 0 0)) |
| 25028 | ;;; Generated autoloads from plstore.el | 25098 | ;;; Generated autoloads from plstore.el |
| 25029 | 25099 | ||
| @@ -27460,7 +27530,7 @@ explicitly.") | |||
| 27460 | 27530 | ||
| 27461 | (make-obsolete-variable 'rmail-default-dont-reply-to-names 'mail-dont-reply-to-names "24.1") | 27531 | (make-obsolete-variable 'rmail-default-dont-reply-to-names 'mail-dont-reply-to-names "24.1") |
| 27462 | 27532 | ||
| 27463 | (defvar rmail-ignored-headers (purecopy (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:" "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" "\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:" "\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:" "\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:\\|^face:" "\\|^x-mailer:\\|^delivered-to:\\|^lines:" "\\|^content-transfer-encoding:\\|^x-coding-system:" "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:" "\\|^precedence:\\|^mime-version:" "\\|^list-owner:\\|^list-help:\\|^list-post:\\|^list-subscribe:" "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:" "\\|^content-length:\\|^nntp-posting-date:\\|^user-agent" "\\|^importance:\\|^envelope-to:\\|^delivery-date\\|^openpgp:" "\\|^mbox-line:\\|^cancel-lock:" "\\|^DomainKey-Signature:\\|^dkim-signature:" "\\|^resent-face:\\|^resent-x.*:\\|^resent-organization:\\|^resent-openpgp:" "\\|^x-.*:")) "\ | 27533 | (defvar rmail-ignored-headers (purecopy (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:" "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" "\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:" "\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:" "\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:\\|^face:" "\\|^x-mailer:\\|^delivered-to:\\|^lines:" "\\|^content-transfer-encoding:\\|^x-coding-system:" "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:" "\\|^precedence:\\|^mime-version:" "\\|^list-owner:\\|^list-help:\\|^list-post:\\|^list-subscribe:" "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:" "\\|^content-length:\\|^nntp-posting-date:\\|^user-agent" "\\|^importance:\\|^envelope-to:\\|^delivery-date\\|^openpgp:" "\\|^mbox-line:\\|^cancel-lock:" "\\|^DomainKey-Signature:\\|^dkim-signature:" "\\|^ARC-.*:" "\\|^Received-SPF:" "\\|^Authentication-Results:" "\\|^resent-face:\\|^resent-x.*:\\|^resent-organization:\\|^resent-openpgp:" "\\|^x-.*:")) "\ |
| 27464 | Regexp to match header fields that Rmail should normally hide. | 27534 | Regexp to match header fields that Rmail should normally hide. |
| 27465 | \(See also `rmail-nonignored-headers', which overrides this regexp.) | 27535 | \(See also `rmail-nonignored-headers', which overrides this regexp.) |
| 27466 | This variable is used for reformatting the message header, | 27536 | This variable is used for reformatting the message header, |
| @@ -29519,7 +29589,7 @@ Like `mail' command, but display mail buffer in another frame. | |||
| 29519 | 29589 | ||
| 29520 | ;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (0 0 0 0)) | 29590 | ;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (0 0 0 0)) |
| 29521 | ;;; Generated autoloads from emacs-lisp/seq.el | 29591 | ;;; Generated autoloads from emacs-lisp/seq.el |
| 29522 | (push (purecopy '(seq 2 19)) package--builtin-versions) | 29592 | (push (purecopy '(seq 2 20)) package--builtin-versions) |
| 29523 | 29593 | ||
| 29524 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "seq" '("seq-"))) | 29594 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "seq" '("seq-"))) |
| 29525 | 29595 | ||
| @@ -30178,6 +30248,23 @@ twice for the others. | |||
| 30178 | ;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (0 0 0 0)) | 30248 | ;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (0 0 0 0)) |
| 30179 | ;;; Generated autoloads from vc/smerge-mode.el | 30249 | ;;; Generated autoloads from vc/smerge-mode.el |
| 30180 | 30250 | ||
| 30251 | (autoload 'smerge-refine-regions "smerge-mode" "\ | ||
| 30252 | Show fine differences in the two regions BEG1..END1 and BEG2..END2. | ||
| 30253 | PROPS-C is an alist of properties to put (via overlays) on the changes. | ||
| 30254 | PROPS-R is an alist of properties to put on removed characters. | ||
| 30255 | PROPS-A is an alist of properties to put on added characters. | ||
| 30256 | If PROPS-R and PROPS-A are nil, put PROPS-C on all changes. | ||
| 30257 | If PROPS-C is nil, but PROPS-R and PROPS-A are non-nil, | ||
| 30258 | put PROPS-A on added characters, PROPS-R on removed characters. | ||
| 30259 | If PROPS-C, PROPS-R and PROPS-A are non-nil, put PROPS-C on changed characters, | ||
| 30260 | PROPS-A on added characters, and PROPS-R on removed characters. | ||
| 30261 | |||
| 30262 | If non-nil, PREPROC is called with no argument in a buffer that contains | ||
| 30263 | a copy of a region, just before preparing it to for `diff'. It can be | ||
| 30264 | used to replace chars to try and eliminate some spurious differences. | ||
| 30265 | |||
| 30266 | \(fn BEG1 END1 BEG2 END2 PROPS-C &optional PREPROC PROPS-R PROPS-A)" nil nil) | ||
| 30267 | |||
| 30181 | (autoload 'smerge-ediff "smerge-mode" "\ | 30268 | (autoload 'smerge-ediff "smerge-mode" "\ |
| 30182 | Invoke ediff to resolve the conflicts. | 30269 | Invoke ediff to resolve the conflicts. |
| 30183 | NAME-UPPER, NAME-LOWER, and NAME-BASE, if non-nil, are used for the | 30270 | NAME-UPPER, NAME-LOWER, and NAME-BASE, if non-nil, are used for the |
| @@ -30312,7 +30399,7 @@ then `snmpv2-mode-hook'. | |||
| 30312 | 30399 | ||
| 30313 | ;;;### (autoloads nil "soap-client" "net/soap-client.el" (0 0 0 0)) | 30400 | ;;;### (autoloads nil "soap-client" "net/soap-client.el" (0 0 0 0)) |
| 30314 | ;;; Generated autoloads from net/soap-client.el | 30401 | ;;; Generated autoloads from net/soap-client.el |
| 30315 | (push (purecopy '(soap-client 3 1 1)) package--builtin-versions) | 30402 | (push (purecopy '(soap-client 3 1 2)) package--builtin-versions) |
| 30316 | 30403 | ||
| 30317 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "soap-client" '("soap-"))) | 30404 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "soap-client" '("soap-"))) |
| 30318 | 30405 | ||
| @@ -33976,20 +34063,17 @@ Used for file names matching `tramp-completion-file-name-regexp'. | |||
| 33976 | Operations not mentioned here will be handled by Tramp's file | 34063 | Operations not mentioned here will be handled by Tramp's file |
| 33977 | name handler functions, or the normal Emacs functions.") | 34064 | name handler functions, or the normal Emacs functions.") |
| 33978 | 34065 | ||
| 33979 | (autoload 'tramp-file-name-handler "tramp" "\ | ||
| 33980 | Invoke Tramp file name handler. | ||
| 33981 | Falls back to normal file name handler if no Tramp file name handler exists. | ||
| 33982 | |||
| 33983 | \(fn OPERATION &rest ARGS)" nil nil) | ||
| 33984 | |||
| 33985 | (autoload 'tramp-completion-file-name-handler "tramp" "\ | 34066 | (autoload 'tramp-completion-file-name-handler "tramp" "\ |
| 33986 | Invoke Tramp file name completion handler. | 34067 | Invoke Tramp file name completion handler. |
| 33987 | Falls back to normal file name handler if no Tramp file name handler exists. | 34068 | Falls back to normal file name handler if no Tramp file name handler exists. |
| 33988 | 34069 | ||
| 33989 | \(fn OPERATION &rest ARGS)" nil nil) | 34070 | \(fn OPERATION &rest ARGS)" nil nil) |
| 33990 | 34071 | ||
| 34072 | (defun tramp-autoload-file-name-handler (operation &rest args) "\ | ||
| 34073 | Load Tramp file name handler, and perform OPERATION." (let ((default-directory temporary-file-directory)) (load "tramp" (quote noerror) (quote nomessage))) (apply operation args)) | ||
| 34074 | |||
| 33991 | (defun tramp-register-autoload-file-name-handlers nil "\ | 34075 | (defun tramp-register-autoload-file-name-handlers nil "\ |
| 33992 | Add Tramp file name handlers to `file-name-handler-alist' during autoload." (add-to-list (quote file-name-handler-alist) (cons tramp-initial-file-name-regexp (quote tramp-file-name-handler))) (put (quote tramp-file-name-handler) (quote safe-magic) t) (put (quote tramp-file-name-handler) (quote operations) (quote (file-name-all-completions file-name-completion file-remote-p))) (add-to-list (quote file-name-handler-alist) (cons tramp-initial-completion-file-name-regexp (quote tramp-completion-file-name-handler))) (put (quote tramp-completion-file-name-handler) (quote safe-magic) t) (put (quote tramp-completion-file-name-handler) (quote operations) (mapcar (quote car) tramp-completion-file-name-handler-alist))) | 34076 | Add Tramp file name handlers to `file-name-handler-alist' during autoload." (add-to-list (quote file-name-handler-alist) (cons tramp-initial-file-name-regexp (quote tramp-autoload-file-name-handler))) (put (quote tramp-autoload-file-name-handler) (quote safe-magic) t) (add-to-list (quote file-name-handler-alist) (cons tramp-initial-completion-file-name-regexp (quote tramp-completion-file-name-handler))) (put (quote tramp-completion-file-name-handler) (quote safe-magic) t) (put (quote tramp-completion-file-name-handler) (quote operations) (mapcar (quote car) tramp-completion-file-name-handler-alist))) |
| 33993 | 34077 | ||
| 33994 | (tramp-register-autoload-file-name-handlers) | 34078 | (tramp-register-autoload-file-name-handlers) |
| 33995 | 34079 | ||
| @@ -34027,13 +34111,6 @@ Discard Tramp from loading remote files. | |||
| 34027 | ;;;### (autoloads nil "tramp-cmds" "net/tramp-cmds.el" (0 0 0 0)) | 34111 | ;;;### (autoloads nil "tramp-cmds" "net/tramp-cmds.el" (0 0 0 0)) |
| 34028 | ;;; Generated autoloads from net/tramp-cmds.el | 34112 | ;;; Generated autoloads from net/tramp-cmds.el |
| 34029 | 34113 | ||
| 34030 | (autoload 'tramp-change-syntax "tramp-cmds" "\ | ||
| 34031 | Change Tramp syntax. | ||
| 34032 | SYNTAX can be one of the symbols `default' (default), | ||
| 34033 | `simplified' (ange-ftp like) or `separate' (XEmacs like). | ||
| 34034 | |||
| 34035 | \(fn &optional SYNTAX)" t nil) | ||
| 34036 | |||
| 34037 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-cmds" '("tramp-"))) | 34114 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-cmds" '("tramp-"))) |
| 34038 | 34115 | ||
| 34039 | ;;;*** | 34116 | ;;;*** |
| @@ -38161,9 +38238,9 @@ Zone out, completely. | |||
| 38161 | ;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el" | 38238 | ;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el" |
| 38162 | ;;;;;; "eshell/em-xtra.el" "facemenu.el" "faces.el" "files.el" "font-core.el" | 38239 | ;;;;;; "eshell/em-xtra.el" "facemenu.el" "faces.el" "files.el" "font-core.el" |
| 38163 | ;;;;;; "font-lock.el" "format.el" "frame.el" "help.el" "hfy-cmap.el" | 38240 | ;;;;;; "font-lock.el" "format.el" "frame.el" "help.el" "hfy-cmap.el" |
| 38164 | ;;;;;; "htmlfontify-loaddefs.el" "ibuf-ext.el" "indent.el" "international/characters.el" | 38241 | ;;;;;; "ibuf-ext.el" "indent.el" "international/characters.el" "international/charprop.el" |
| 38165 | ;;;;;; "international/charprop.el" "international/charscript.el" | 38242 | ;;;;;; "international/charscript.el" "international/cp51932.el" |
| 38166 | ;;;;;; "international/cp51932.el" "international/eucjp-ms.el" "international/mule-cmds.el" | 38243 | ;;;;;; "international/eucjp-ms.el" "international/mule-cmds.el" |
| 38167 | ;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el" | 38244 | ;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el" |
| 38168 | ;;;;;; "international/uni-brackets.el" "international/uni-category.el" | 38245 | ;;;;;; "international/uni-brackets.el" "international/uni-category.el" |
| 38169 | ;;;;;; "international/uni-combining.el" "international/uni-comment.el" | 38246 | ;;;;;; "international/uni-combining.el" "international/uni-comment.el" |
| @@ -38233,4 +38310,4 @@ Zone out, completely. | |||
| 38233 | ;; no-update-autoloads: t | 38310 | ;; no-update-autoloads: t |
| 38234 | ;; coding: utf-8 | 38311 | ;; coding: utf-8 |
| 38235 | ;; End: | 38312 | ;; End: |
| 38236 | ;;; loaddefs.tmp ends here | 38313 | ;;; loaddefs.el ends here |