diff options
| author | Nicolas Petton | 2020-02-29 22:25:38 +0100 |
|---|---|---|
| committer | Nicolas Petton | 2020-02-29 22:25:38 +0100 |
| commit | c5f255d68156926923232b1edadf50faac527861 (patch) | |
| tree | 3034ef8f931610c4b66279e7406cf98c18649f69 | |
| parent | 60c84ad9922a0299cde76f7671250d9d13eee536 (diff) | |
| download | emacs-27.0.90.tar.gz emacs-27.0.90.zip | |
; Update lisp/ldefs-boot.elemacs-27.0.90
| -rw-r--r-- | lisp/ldefs-boot.el | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 240e02e72f9..4bf87aae1f8 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -27423,11 +27423,8 @@ nil | |||
| 27423 | necessary to ensure that a postfix operator appended to it will | 27423 | necessary to ensure that a postfix operator appended to it will |
| 27424 | apply to the whole expression. | 27424 | apply to the whole expression. |
| 27425 | 27425 | ||
| 27426 | The optional argument KEEP-ORDER, if non-nil, forces the match to | 27426 | The returned regexp is ordered in such a way that it will always |
| 27427 | be performed in the order given, as if the strings were made into | 27427 | match the longest string possible. |
| 27428 | a regexp by joining them with the `\\|' operator. If nil or | ||
| 27429 | omitted, the returned regexp is will always match the longest | ||
| 27430 | string possible. | ||
| 27431 | 27428 | ||
| 27432 | Up to reordering, the resulting regexp is equivalent to but | 27429 | Up to reordering, the resulting regexp is equivalent to but |
| 27433 | usually more efficient than that of a simplified version: | 27430 | usually more efficient than that of a simplified version: |
| @@ -27443,7 +27440,7 @@ usually more efficient than that of a simplified version: | |||
| 27443 | (mapconcat \\='regexp-quote strings \"\\\\|\") | 27440 | (mapconcat \\='regexp-quote strings \"\\\\|\") |
| 27444 | (cdr parens)))) | 27441 | (cdr parens)))) |
| 27445 | 27442 | ||
| 27446 | \(fn STRINGS &optional PAREN KEEP-ORDER)" nil nil) | 27443 | \(fn STRINGS &optional PAREN)" nil nil) |
| 27447 | 27444 | ||
| 27448 | (autoload 'regexp-opt-depth "regexp-opt" "\ | 27445 | (autoload 'regexp-opt-depth "regexp-opt" "\ |
| 27449 | Return the depth of REGEXP. | 27446 | Return the depth of REGEXP. |
| @@ -31063,7 +31060,11 @@ Use \\[untabify] to convert tabs to spaces before sorting. | |||
| 31063 | 31060 | ||
| 31064 | (autoload 'reverse-region "sort" "\ | 31061 | (autoload 'reverse-region "sort" "\ |
| 31065 | Reverse the order of lines in a region. | 31062 | Reverse the order of lines in a region. |
| 31066 | From a program takes two point or marker arguments, BEG and END. | 31063 | When called from Lisp, takes two point or marker arguments, BEG and END. |
| 31064 | If BEG is not at the beginning of a line, the first line of those | ||
| 31065 | to be reversed is the line starting after BEG. | ||
| 31066 | If END is not at the end of a line, the last line to be reversed | ||
| 31067 | is the one that ends before END. | ||
| 31067 | 31068 | ||
| 31068 | \(fn BEG END)" t nil) | 31069 | \(fn BEG END)" t nil) |
| 31069 | 31070 | ||