diff options
| author | Glenn Morris | 2020-04-01 06:12:36 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-04-01 06:12:36 -0700 |
| commit | b2f2d0d2c435e37a2823caef2090335bb7d27d5a (patch) | |
| tree | a828eaa943c61fcfbf5b0afbecac1947965374a0 | |
| parent | ac3da1dd9626bc475e78b18c0b438435790e8926 (diff) | |
| download | emacs-b2f2d0d2c435e37a2823caef2090335bb7d27d5a.tar.gz emacs-b2f2d0d2c435e37a2823caef2090335bb7d27d5a.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 4bf87aae1f8..f607f6cd061 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -24577,7 +24577,7 @@ Mark the installed package as selected by adding it to | |||
| 24577 | 24577 | ||
| 24578 | When called from Lisp and optional argument DONT-SELECT is | 24578 | When called from Lisp and optional argument DONT-SELECT is |
| 24579 | non-nil, install the package but do not add it to | 24579 | non-nil, install the package but do not add it to |
| 24580 | `package-select-packages'. | 24580 | `package-selected-packages'. |
| 24581 | 24581 | ||
| 24582 | If PKG is a `package-desc' and it is already installed, don't try | 24582 | If PKG is a `package-desc' and it is already installed, don't try |
| 24583 | to install it but still mark it as selected. | 24583 | to install it but still mark it as selected. |
| @@ -26145,14 +26145,16 @@ recognized." t nil) | |||
| 26145 | (autoload 'project-search "project" "\ | 26145 | (autoload 'project-search "project" "\ |
| 26146 | Search for REGEXP in all the files of the project. | 26146 | Search for REGEXP in all the files of the project. |
| 26147 | Stops when a match is found. | 26147 | Stops when a match is found. |
| 26148 | To continue searching for next match, use command \\[fileloop-continue]. | 26148 | To continue searching for the next match, use the |
| 26149 | command \\[fileloop-continue]. | ||
| 26149 | 26150 | ||
| 26150 | \(fn REGEXP)" t nil) | 26151 | \(fn REGEXP)" t nil) |
| 26151 | 26152 | ||
| 26152 | (autoload 'project-query-replace-regexp "project" "\ | 26153 | (autoload 'project-query-replace-regexp "project" "\ |
| 26153 | Search for REGEXP in all the files of the project. | 26154 | Query-replace REGEXP in all the files of the project. |
| 26154 | Stops when a match is found. | 26155 | Stops when a match is found and prompts for whether to replace it. |
| 26155 | To continue searching for next match, use command \\[fileloop-continue]. | 26156 | If you exit the query-replace, you can later continue the query-replace |
| 26157 | loop using the command \\[fileloop-continue]. | ||
| 26156 | 26158 | ||
| 26157 | \(fn FROM TO)" t nil) | 26159 | \(fn FROM TO)" t nil) |
| 26158 | 26160 | ||
| @@ -32664,16 +32666,17 @@ WHERE is provided the cell and table at that location is reported. | |||
| 32664 | (autoload 'table-generate-source "table" "\ | 32666 | (autoload 'table-generate-source "table" "\ |
| 32665 | Generate source of the current table in the specified language. | 32667 | Generate source of the current table in the specified language. |
| 32666 | LANGUAGE is a symbol that specifies the language to describe the | 32668 | LANGUAGE is a symbol that specifies the language to describe the |
| 32667 | structure of the table. It must be either `html', `latex' or `cals'. | 32669 | structure of the table. It must be either `html', `latex', `cals', |
| 32668 | The resulted source text is inserted into DEST-BUFFER and the buffer | 32670 | `wiki', or `mediawiki'. |
| 32669 | object is returned. When DEST-BUFFER is omitted or nil the default | 32671 | The function inserts the resulting source text into DEST-BUFFER, and |
| 32670 | buffer specified in `table-dest-buffer-name' is used. In this case | 32672 | returns the buffer object. When DEST-BUFFER is omitted or nil, the |
| 32671 | the content of the default buffer is erased prior to the generation. | 32673 | function uses the default buffer specified in `table-dest-buffer-name'. |
| 32672 | When DEST-BUFFER is non-nil it is expected to be either a destination | 32674 | In this case, the function erases the default buffer prior to the |
| 32673 | buffer or a name of the destination buffer. In this case the | 32675 | source generation. |
| 32674 | generated result is inserted at the current point in the destination | 32676 | When DEST-BUFFER is non-nil, it should be either a destination |
| 32675 | buffer and the previously existing contents in the buffer are | 32677 | buffer or a name of the destination buffer. In that case, the |
| 32676 | untouched. | 32678 | function inserts the generated result at point in the destination |
| 32679 | buffer, and leaves the previous contents of the buffer untouched. | ||
| 32677 | 32680 | ||
| 32678 | References used for this implementation: | 32681 | References used for this implementation: |
| 32679 | 32682 | ||