diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-07-04 00:39:30 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-07-04 00:39:30 +0000 |
commit | ec0421f3c83fae87172498e0665847d1297821fd (patch) | |
tree | a440cfa09a45d99ccf6130cd13cb7ba841eb31e6 /lisp/emacs-lisp | |
parent | c92d602307b7884d948c937c163fa09323dddff0 (diff) | |
download | emacs-ec0421f3c83fae87172498e0665847d1297821fd.tar.gz emacs-ec0421f3c83fae87172498e0665847d1297821fd.tar.bz2 emacs-ec0421f3c83fae87172498e0665847d1297821fd.zip |
(lisp-indent-maximum-backtracking): Fix typos in docstrings.
(lisp-indent): Finish `defgroup' description with period.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-indent.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el index a203155673c..22c2460c16f 100644 --- a/lisp/emacs-lisp/cl-indent.el +++ b/lisp/emacs-lisp/cl-indent.el @@ -49,13 +49,13 @@ ;;; Code: (defgroup lisp-indent nil - "Indentation in Lisp" + "Indentation in Lisp." :group 'lisp) (defcustom lisp-indent-maximum-backtracking 3 "*Maximum depth to backtrack out from a sublist for structured indentation. -If this variable is 0, no backtracking will occur and forms such as flet +If this variable is 0, no backtracking will occur and forms such as `flet' may not be correctly indented." :type 'integer :group 'lisp-indent) |