]> git.eshelyaron.com Git - emacs.git/commitdiff
(indent-relative-maybe, indent-relative): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Fri, 22 Jun 2001 11:49:18 +0000 (11:49 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 22 Jun 2001 11:49:18 +0000 (11:49 +0000)
lisp/ChangeLog
lisp/indent.el

index 450f5b28298b4a281537ff80ca338c5202c04790..9ff4682c2317f4c89b75eb049f3ffc22bd617d02 100644 (file)
@@ -1,5 +1,7 @@
 2001-06-22  Eli Zaretskii  <eliz@is.elta.co.il>
 
+       * indent.el (indent-relative-maybe, indent-relative): Doc fix.
+
        * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error): Doc
        fix.
 
index a558ff26d5b83c884e049abf00be68963f8a0c4d..d097a02c83392237836c9bb72db03be947c9cdea 100644 (file)
@@ -345,7 +345,11 @@ If COLUMN is nil, then indent each line according to the mode."
       (move-marker end nil))))
 
 (defun indent-relative-maybe ()
-  "Indent a new line like previous nonblank line."
+  "Indent a new line like previous nonblank line.
+If the previous nonblank line has no indent points beyond the
+column point starts at, this command does nothing.
+
+See also `indent-relative'."
   (interactive)
   (indent-relative t))
 
@@ -355,7 +359,11 @@ An indent point is a non-whitespace character following whitespace.
 The following line shows the indentation points in this line.
     ^         ^    ^     ^   ^           ^      ^  ^    ^
 If the previous nonblank line has no indent points beyond the
-column point starts at, `tab-to-tab-stop' is done instead."
+column point starts at, `tab-to-tab-stop' is done instead, unless
+this command is invoked with a numeric argument, in which case it
+does nothing.
+
+See also `indent-relative-maybe'."
   (interactive "P")
   (if (and abbrev-mode
           (eq (char-syntax (preceding-char)) ?w))