diff options
| author | Wilfred Hughes | 2017-04-02 19:29:14 +0100 |
|---|---|---|
| committer | Wilfred Hughes | 2017-04-02 19:29:14 +0100 |
| commit | 2b18ecec5e662ac551963b532c43271a6c6434d4 (patch) | |
| tree | a1bf6f1599c557978930639ae39c7bafb1b9d811 | |
| parent | 057d27760a7a186a1851630349e09e6c3c1ff26c (diff) | |
| download | emacs-2b18ecec5e662ac551963b532c43271a6c6434d4.tar.gz emacs-2b18ecec5e662ac551963b532c43271a6c6434d4.zip | |
Fix typo in docstring
* lisp/help.el: Fix typo.
| -rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index d3aaa1e251d..26be3b0e07f 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -1419,7 +1419,7 @@ ARGLIST can also be t or a string of the form \"(FUN ARG1 ARG2 ...)\"." | |||
| 1419 | 1419 | ||
| 1420 | (defun help-function-arglist (def &optional preserve-names) | 1420 | (defun help-function-arglist (def &optional preserve-names) |
| 1421 | "Return a formal argument list for the function DEF. | 1421 | "Return a formal argument list for the function DEF. |
| 1422 | IF PRESERVE-NAMES is non-nil, return a formal arglist that uses | 1422 | If PRESERVE-NAMES is non-nil, return a formal arglist that uses |
| 1423 | the same names as used in the original source code, when possible." | 1423 | the same names as used in the original source code, when possible." |
| 1424 | ;; Handle symbols aliased to other symbols. | 1424 | ;; Handle symbols aliased to other symbols. |
| 1425 | (if (and (symbolp def) (fboundp def)) (setq def (indirect-function def))) | 1425 | (if (and (symbolp def) (fboundp def)) (setq def (indirect-function def))) |