diff options
| author | Thien-Thi Nguyen | 2005-02-01 15:02:50 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2005-02-01 15:02:50 +0000 |
| commit | b961eb0e9896443e57a18e5d59d7227ce158079c (patch) | |
| tree | fee265345a0385bcc09ecc76a82980e95adacd14 | |
| parent | 489632ba4fd4e909e91897dde14d15fca0d0ff74 (diff) | |
| download | emacs-b961eb0e9896443e57a18e5d59d7227ce158079c.tar.gz emacs-b961eb0e9896443e57a18e5d59d7227ce158079c.zip | |
(lisp-indent-function): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7ce12a475f3..e444165a8d6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix. | ||
| 4 | |||
| 1 | 2005-02-01 Carsten Dominik <dominik@science.uva.nl> | 5 | 2005-02-01 Carsten Dominik <dominik@science.uva.nl> |
| 2 | 6 | ||
| 3 | * textmodes/reftex.el (reftex-access-scan-info): Error out in a | 7 | * textmodes/reftex.el (reftex-access-scan-info): Error out in a |
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 86c3ac1bab4..6548a70f7d8 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -881,8 +881,8 @@ which has a non-nil property `lisp-indent-function', | |||
| 881 | that specifies how to do the indentation. The property value can be | 881 | that specifies how to do the indentation. The property value can be |
| 882 | * `defun', meaning indent `defun'-style; | 882 | * `defun', meaning indent `defun'-style; |
| 883 | * an integer N, meaning indent the first N arguments specially | 883 | * an integer N, meaning indent the first N arguments specially |
| 884 | like ordinary function arguments and then indent any further | 884 | like ordinary function arguments and then indent any further |
| 885 | aruments like a body; | 885 | arguments like a body; |
| 886 | * a function to call just as this function was called. | 886 | * a function to call just as this function was called. |
| 887 | If that function returns nil, that means it doesn't specify | 887 | If that function returns nil, that means it doesn't specify |
| 888 | the indentation. | 888 | the indentation. |