diff options
author | Glenn Morris <rgm@gnu.org> | 2019-12-30 09:04:05 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2019-12-30 09:04:05 -0800 |
commit | 99cd8ba7c0d14328d9275e1688ea61099ad3e1ea (patch) | |
tree | b58cb069884805dbd8d35f84e2e04c0827833677 /lisp/emacs-lisp/byte-run.el | |
parent | fab6c20e72be4ea5cfa6bce2630237c41da255eb (diff) | |
parent | 70fe552c61eaf36801c2b8691379315098df13e4 (diff) | |
download | emacs-99cd8ba7c0d14328d9275e1688ea61099ad3e1ea.tar.gz emacs-99cd8ba7c0d14328d9275e1688ea61099ad3e1ea.tar.bz2 emacs-99cd8ba7c0d14328d9275e1688ea61099ad3e1ea.zip |
Merge from origin/emacs-27
70fe552c61 ; xref-references-in-directory: Autoload as well
181f571651 Fix up requires
43f66c3368 Extract xref-matches-in-files from project--find-regexp-in...
65af18d86e Rename xref-collect-references and xref-collect-matches
98788bf976 ; Improve the docstring some more
c190e91a1e Improve docstrings
012c12a05e Fix when expose draws partially visible first glyph (bug#3...
d915b8c3f1 Don't require semantic/fw
50a0126402 Do some renames for clarity
74261ff301 Rearrange NEWS, add missing documentation
6c9571379e Fix interactive spec in netrc-parse
32222fb34c Fix documentation of define-obsolete-* functions
# Conflicts:
# etc/NEWS
Diffstat (limited to 'lisp/emacs-lisp/byte-run.el')
-rw-r--r-- | lisp/emacs-lisp/byte-run.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 1115c096679..3737473b63b 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el @@ -378,8 +378,8 @@ is equivalent to the following two lines of code: \(defalias \\='old-fun \\='new-fun \"old-fun's doc.\") \(make-obsolete \\='old-fun \\='new-fun \"22.1\") -If provided, WHEN should be a string indicating when the function -was first made obsolete, for example a date or a release number. +WHEN should be a string indicating when the function was first +made obsolete, for example a date or a release number. See the docstrings of `defalias' and `make-obsolete' for more details." (declare (doc-string 4) @@ -423,8 +423,8 @@ dumped with Emacs). This is so that any user customizations are applied before the defcustom tries to initialize the variable (this is due to the way `defvaralias' works). -If provided, WHEN should be a string indicating when the variable -was first made obsolete, for example a date or a release number. +WHEN should be a string indicating when the variable was first +made obsolete, for example a date or a release number. For the benefit of Customize, if OBSOLETE-NAME has any of the following properties, they are copied to @@ -450,8 +450,8 @@ CURRENT-NAME, if it does not already have them: ;; It only really affects M-x describe-face output. (defmacro define-obsolete-face-alias (obsolete-face current-face when) "Make OBSOLETE-FACE a face alias for CURRENT-FACE and mark it obsolete. -If provided, WHEN should be a string indicating when the face -was first made obsolete, for example a date or a release number." +WHEN should be a string indicating when the face was first made +obsolete, for example a date or a release number." `(progn (put ,obsolete-face 'face-alias ,current-face) ;; Used by M-x describe-face. |