summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-07-04 00:39:30 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-07-04 00:39:30 +0000
commitec0421f3c83fae87172498e0665847d1297821fd (patch)
treea440cfa09a45d99ccf6130cd13cb7ba841eb31e6 /lisp
parentc92d602307b7884d948c937c163fa09323dddff0 (diff)
downloademacs-ec0421f3c83fae87172498e0665847d1297821fd.tar.gz
(lisp-indent-maximum-backtracking): Fix typos in docstrings.
(lisp-indent): Finish `defgroup' description with period.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog23
-rw-r--r--lisp/emacs-lisp/cl-indent.el4
2 files changed, 22 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6efafaeace9..4f1a5a4a8be 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,20 @@
+2005-07-04 Juanma Barranquero <lekktu@gmail.com>
+
+ * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
+ Fix typos in docstrings.
+ (lisp-indent): Finish `defgroup' description with period.
+
+ * progmodes/flymake.el (flymake-find-file): Remove.
+ (flymake-float-time): Use `with-no-warnings'.
+ (flymake-check-start-time, flymake-check-was-interrupted)
+ (flymake-err-info, flymake-is-running, flymake-last-change-time)
+ (flymake-new-err-info): `defvar' at compile time.
+
+2005-07-03 Juanma Barranquero <lekktu@gmail.com>
+
+ * replace.el (occur-hook): Doc fix.
+ (occur-1): Don't call `occur-hook' if there are no matches.
+
2005-07-03 Richard M. Stallman <rms@gnu.org>
* emulation/tpu-edt.el (tpu-original-global-map): Don't copy
@@ -93,10 +110,10 @@
and save it to the `custom-theme-directory'. Make this the
default directory of the buffer.
-2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
+2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
- * progmodes/flymake.el (flymake-mode, flymake-mode-off): Fix
- unbalanced parentheses.
+ * progmodes/flymake.el (flymake-mode, flymake-mode-off):
+ Fix unbalanced parentheses.
2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
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)