diff options
| author | Glenn Morris | 2018-01-31 07:50:23 -0800 |
|---|---|---|
| committer | Glenn Morris | 2018-01-31 07:50:23 -0800 |
| commit | 4dbc1ef5e6cf55426d023be563ff93d74b675218 (patch) | |
| tree | 1fabaf73b948f9b1d8d28d63e83571b74ad88ce0 /lisp | |
| parent | 84d066a73fc4191a675c87c81ec1a4f531375e95 (diff) | |
| parent | 22922c7c67efdcb42ba4bf35b0ea507cca08f559 (diff) | |
| download | emacs-4dbc1ef5e6cf55426d023be563ff93d74b675218.tar.gz emacs-4dbc1ef5e6cf55426d023be563ff93d74b675218.zip | |
Merge from origin/emacs-26
22922c7 (origin/emacs-26) * doc/emacs/entering.texi (Entering Emacs):...
59657c4 Document 'window-at-side-p' in the Elisp manual
2b35ed0 Document external-debugging-output in the Elisp Manual (Bug#2...
db6564c Fix scroll-margin docstring (Bug#13791)
732d1b9 Clarify that `ansi-term' is almost the same as `term' (Bug#18...
f706c59 Update manual description of locate-file (Bug#23650)
1602262 Clarify effect of print-gensym (Bug#27776)
53e9fa2 * lisp/custom.el (defcustom): Fix docstring (Bug#27891).
607cc4e Define cl-type-definition button type as needed (Bug#28899)
9e6889c Emphasize that GPG passphrase caching is temporary (Bug#29907)
4b5711b Fix @examples in cc-mode.info, where lines were getting glued...
71961f1 Minor change in "Mode Line" section of Emacs manual
55a2b76 More fixes in the Emacs manual
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/custom.el | 3 | ||||
| -rw-r--r-- | lisp/emacs-lisp/eieio-opt.el | 5 | ||||
| -rw-r--r-- | lisp/term.el | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index edbbc8c1449..b7539685a89 100644 --- a/lisp/custom.el +++ b/lisp/custom.el | |||
| @@ -306,7 +306,8 @@ The following common keywords are also meaningful. | |||
| 306 | VALUE should be a list with the form (PACKAGE . VERSION) | 306 | VALUE should be a list with the form (PACKAGE . VERSION) |
| 307 | specifying that the variable was first introduced, or its | 307 | specifying that the variable was first introduced, or its |
| 308 | default value was changed, in PACKAGE version VERSION. This | 308 | default value was changed, in PACKAGE version VERSION. This |
| 309 | keyword takes priority over :version. The PACKAGE and VERSION | 309 | keyword takes priority over :version. For packages which |
| 310 | are bundled with Emacs releases, the PACKAGE and VERSION | ||
| 310 | must appear in the alist `customize-package-emacs-version-alist'. | 311 | must appear in the alist `customize-package-emacs-version-alist'. |
| 311 | Since PACKAGE must be unique and the user might see it in an | 312 | Since PACKAGE must be unique and the user might see it in an |
| 312 | error message, a good choice is the official name of the | 313 | error message, a good choice is the official name of the |
diff --git a/lisp/emacs-lisp/eieio-opt.el b/lisp/emacs-lisp/eieio-opt.el index dbec48d038b..eeb0bc95d68 100644 --- a/lisp/emacs-lisp/eieio-opt.el +++ b/lisp/emacs-lisp/eieio-opt.el | |||
| @@ -142,7 +142,10 @@ are not abstract." | |||
| 142 | (find-lisp-object-file-name ctr def))) | 142 | (find-lisp-object-file-name ctr def))) |
| 143 | (when location | 143 | (when location |
| 144 | (insert (substitute-command-keys " in `")) | 144 | (insert (substitute-command-keys " in `")) |
| 145 | (help-insert-xref-button | 145 | ;; The `cl-type-definition' button type can't be autoloaded |
| 146 | ;; due to circularity during bootstrap (Bug#28899). | ||
| 147 | (require 'cl-extra) | ||
| 148 | (help-insert-xref-button | ||
| 146 | (help-fns-short-filename location) | 149 | (help-fns-short-filename location) |
| 147 | 'cl-type-definition ctr location 'define-type) | 150 | 'cl-type-definition ctr location 'define-type) |
| 148 | (insert (substitute-command-keys "'"))) | 151 | (insert (substitute-command-keys "'"))) |
diff --git a/lisp/term.el b/lisp/term.el index 20719987a06..a0313d88dac 100644 --- a/lisp/term.el +++ b/lisp/term.el | |||
| @@ -4139,7 +4139,9 @@ the process. Any more args are arguments to PROGRAM." | |||
| 4139 | 4139 | ||
| 4140 | ;;;###autoload | 4140 | ;;;###autoload |
| 4141 | (defun ansi-term (program &optional new-buffer-name) | 4141 | (defun ansi-term (program &optional new-buffer-name) |
| 4142 | "Start a terminal-emulator in a new buffer." | 4142 | "Start a terminal-emulator in a new buffer. |
| 4143 | This is almost the same as `term' apart from always creating a new buffer, | ||
| 4144 | and `C-x' being marked as a `term-escape-char'. " | ||
| 4143 | (interactive (list (read-from-minibuffer "Run program: " | 4145 | (interactive (list (read-from-minibuffer "Run program: " |
| 4144 | (or explicit-shell-file-name | 4146 | (or explicit-shell-file-name |
| 4145 | (getenv "ESHELL") | 4147 | (getenv "ESHELL") |