diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2005-02-01 15:02:50 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2005-02-01 15:02:50 +0000 |
commit | b961eb0e9896443e57a18e5d59d7227ce158079c (patch) | |
tree | fee265345a0385bcc09ecc76a82980e95adacd14 /lisp/emacs-lisp | |
parent | 489632ba4fd4e909e91897dde14d15fca0d0ff74 (diff) | |
download | emacs-b961eb0e9896443e57a18e5d59d7227ce158079c.tar.gz |
(lisp-indent-function): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
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', that specifies how to do the indentation. The property value can be * `defun', meaning indent `defun'-style; * an integer N, meaning indent the first N arguments specially -like ordinary function arguments and then indent any further -aruments like a body; + like ordinary function arguments and then indent any further + arguments like a body; * a function to call just as this function was called. If that function returns nil, that means it doesn't specify the indentation. |