diff options
| author | Glenn Morris | 2018-07-02 20:45:00 -0400 |
|---|---|---|
| committer | Glenn Morris | 2018-07-02 20:45:00 -0400 |
| commit | 8c70142ea3a97a5a0241890ec907c76a05fe15ea (patch) | |
| tree | 4773d86cf99ffb8a019eade17b8746d6d0914413 | |
| parent | fc5cae731cede7e00f3f2d40d6577537f872d439 (diff) | |
| download | emacs-8c70142ea3a97a5a0241890ec907c76a05fe15ea.tar.gz emacs-8c70142ea3a97a5a0241890ec907c76a05fe15ea.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 38 |
1 files changed, 25 insertions, 13 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 738ad9e6ea9..5740cdea861 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -5925,6 +5925,9 @@ Use `\\[info-lookup-symbol]' to look up documentation of CSS properties, at-rule | |||
| 5925 | pseudo-classes, and pseudo-elements on the Mozilla Developer | 5925 | pseudo-classes, and pseudo-elements on the Mozilla Developer |
| 5926 | Network (MDN). | 5926 | Network (MDN). |
| 5927 | 5927 | ||
| 5928 | Use `\\[fill-paragraph]' to reformat CSS declaration blocks. It can also | ||
| 5929 | be used to fill comments. | ||
| 5930 | |||
| 5928 | \\{css-mode-map} | 5931 | \\{css-mode-map} |
| 5929 | 5932 | ||
| 5930 | \(fn)" t nil) | 5933 | \(fn)" t nil) |
| @@ -27555,12 +27558,12 @@ than that of a simplified version: | |||
| 27555 | (defun simplified-regexp-opt (strings &optional paren) | 27558 | (defun simplified-regexp-opt (strings &optional paren) |
| 27556 | (let ((parens | 27559 | (let ((parens |
| 27557 | (cond ((stringp paren) (cons paren \"\\\\)\")) | 27560 | (cond ((stringp paren) (cons paren \"\\\\)\")) |
| 27558 | ((eq paren 'words) '(\"\\\\\\=<\\\\(\" . \"\\\\)\\\\>\")) | 27561 | ((eq paren \\='words) \\='(\"\\\\\\=<\\\\(\" . \"\\\\)\\\\>\")) |
| 27559 | ((eq paren 'symbols) '(\"\\\\_<\\\\(\" . \"\\\\)\\\\_>\")) | 27562 | ((eq paren \\='symbols) \\='(\"\\\\_<\\\\(\" . \"\\\\)\\\\_>\")) |
| 27560 | ((null paren) '(\"\\\\(?:\" . \"\\\\)\")) | 27563 | ((null paren) \\='(\"\\\\(?:\" . \"\\\\)\")) |
| 27561 | (t '(\"\\\\(\" . \"\\\\)\"))))) | 27564 | (t \\='(\"\\\\(\" . \"\\\\)\"))))) |
| 27562 | (concat (car paren) | 27565 | (concat (car paren) |
| 27563 | (mapconcat 'regexp-quote strings \"\\\\|\") | 27566 | (mapconcat \\='regexp-quote strings \"\\\\|\") |
| 27564 | (cdr paren)))) | 27567 | (cdr paren)))) |
| 27565 | 27568 | ||
| 27566 | \(fn STRINGS &optional PAREN)" nil nil) | 27569 | \(fn STRINGS &optional PAREN)" nil nil) |
| @@ -28654,12 +28657,14 @@ CHAR | |||
| 28654 | matches whitespace and graphic characters. | 28657 | matches whitespace and graphic characters. |
| 28655 | 28658 | ||
| 28656 | `alphanumeric', `alnum' | 28659 | `alphanumeric', `alnum' |
| 28657 | matches alphabetic characters and digits. (For multibyte characters, | 28660 | matches alphabetic characters and digits. For multibyte characters, |
| 28658 | it matches according to Unicode character properties.) | 28661 | it matches characters whose Unicode `general-category' property |
| 28662 | indicates they are alphabetic or decimal number characters. | ||
| 28659 | 28663 | ||
| 28660 | `letter', `alphabetic', `alpha' | 28664 | `letter', `alphabetic', `alpha' |
| 28661 | matches alphabetic characters. (For multibyte characters, | 28665 | matches alphabetic characters. For multibyte characters, |
| 28662 | it matches according to Unicode character properties.) | 28666 | it matches characters whose Unicode `general-category' property |
| 28667 | indicates they are alphabetic characters. | ||
| 28663 | 28668 | ||
| 28664 | `ascii' | 28669 | `ascii' |
| 28665 | matches ASCII (unibyte) characters. | 28670 | matches ASCII (unibyte) characters. |
| @@ -28668,10 +28673,14 @@ CHAR | |||
| 28668 | matches non-ASCII (multibyte) characters. | 28673 | matches non-ASCII (multibyte) characters. |
| 28669 | 28674 | ||
| 28670 | `lower', `lower-case' | 28675 | `lower', `lower-case' |
| 28671 | matches anything lower-case. | 28676 | matches anything lower-case, as determined by the current case |
| 28677 | table. If `case-fold-search' is non-nil, this also matches any | ||
| 28678 | upper-case letter. | ||
| 28672 | 28679 | ||
| 28673 | `upper', `upper-case' | 28680 | `upper', `upper-case' |
| 28674 | matches anything upper-case. | 28681 | matches anything upper-case, as determined by the current case |
| 28682 | table. If `case-fold-search' is non-nil, this also matches any | ||
| 28683 | lower-case letter. | ||
| 28675 | 28684 | ||
| 28676 | `punctuation', `punct' | 28685 | `punctuation', `punct' |
| 28677 | matches punctuation. (But at present, for multibyte characters, | 28686 | matches punctuation. (But at present, for multibyte characters, |
| @@ -30074,6 +30083,9 @@ argument INHIBIT-PROMPT is non-nil. | |||
| 30074 | To force-start a server, do \\[server-force-delete] and then | 30083 | To force-start a server, do \\[server-force-delete] and then |
| 30075 | \\[server-start]. | 30084 | \\[server-start]. |
| 30076 | 30085 | ||
| 30086 | To check from a Lisp program whether a server is running, use | ||
| 30087 | the `server-process' variable. | ||
| 30088 | |||
| 30077 | \(fn &optional LEAVE-DEAD INHIBIT-PROMPT)" t nil) | 30089 | \(fn &optional LEAVE-DEAD INHIBIT-PROMPT)" t nil) |
| 30078 | 30090 | ||
| 30079 | (autoload 'server-force-delete "server" "\ | 30091 | (autoload 'server-force-delete "server" "\ |
| @@ -30845,7 +30857,7 @@ then `snmpv2-mode-hook'. | |||
| 30845 | 30857 | ||
| 30846 | ;;;### (autoloads nil "soap-client" "net/soap-client.el" (0 0 0 0)) | 30858 | ;;;### (autoloads nil "soap-client" "net/soap-client.el" (0 0 0 0)) |
| 30847 | ;;; Generated autoloads from net/soap-client.el | 30859 | ;;; Generated autoloads from net/soap-client.el |
| 30848 | (push (purecopy '(soap-client 3 1 3)) package--builtin-versions) | 30860 | (push (purecopy '(soap-client 3 1 4)) package--builtin-versions) |
| 30849 | 30861 | ||
| 30850 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "soap-client" '("soap-"))) | 30862 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "soap-client" '("soap-"))) |
| 30851 | 30863 | ||
| @@ -34582,7 +34594,7 @@ Reenable Ange-FTP, when Tramp is unloaded. | |||
| 34582 | 34594 | ||
| 34583 | ;;;### (autoloads nil "trampver" "net/trampver.el" (0 0 0 0)) | 34595 | ;;;### (autoloads nil "trampver" "net/trampver.el" (0 0 0 0)) |
| 34584 | ;;; Generated autoloads from net/trampver.el | 34596 | ;;; Generated autoloads from net/trampver.el |
| 34585 | (push (purecopy '(tramp 2 3 4 -1)) package--builtin-versions) | 34597 | (push (purecopy '(tramp 2 3 4)) package--builtin-versions) |
| 34586 | 34598 | ||
| 34587 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "trampver" '("tramp-"))) | 34599 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "trampver" '("tramp-"))) |
| 34588 | 34600 | ||