summaryrefslogtreecommitdiff
path: root/lisp/newcomment.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2004-06-17 00:02:13 +0000
committerJuanma Barranquero <lekktu@gmail.com>2004-06-17 00:02:13 +0000
commit5d9e9801a7669ec666a684eba69fa63bb629544b (patch)
tree612554cbacead0d8af6eebc1284433932ed88f4e /lisp/newcomment.el
parentc8d21e698b9ee3b6c5bfb7e87cc220c8ef14b298 (diff)
downloademacs-5d9e9801a7669ec666a684eba69fa63bb629544b.tar.gz
(comment-region-internal): Fix docstring.
Diffstat (limited to 'lisp/newcomment.el')
-rw-r--r--lisp/newcomment.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/newcomment.el b/lisp/newcomment.el
index 2b9122a8eb9..22713f87a96 100644
--- a/lisp/newcomment.el
+++ b/lisp/newcomment.el
@@ -873,17 +873,17 @@ indentation to be kept as it was before narrowing."
(setq ,bindent (- ,bindent n)))))))))))
(defun comment-region-internal (beg end cs ce
- &optional ccs cce block lines indent)
+ &optional ccs cce block lines indent)
"Comment region BEG .. END.
-CS and CE are the comment start resp end string.
-CCS and CCE are the comment continuation strings for the start resp end
-of lines (default to CS and CE).
-BLOCK indicates that end of lines should be marked with either CCE, CE or CS
-\(if CE is empty) and that those markers should be aligned.
-LINES indicates that an extra lines will be used at the beginning and end
-of the region for CE and CS.
-INDENT indicates to put CS and CCS at the current indentation of the region
-rather than at left margin."
+CS and CE are the comment start string and comment end string,
+respectively. CCS and CCE are the comment continuation strings
+for the start and end of lines, respectively (default to CS and CE).
+BLOCK indicates that end of lines should be marked with either CCE,
+CE or CS \(if CE is empty) and that those markers should be aligned.
+LINES indicates that an extra lines will be used at the beginning
+and end of the region for CE and CS.
+INDENT indicates to put CS and CCS at the current indentation of
+the region rather than at left margin."
;;(assert (< beg end))
(let ((no-empty (not (or (eq comment-empty-lines t)
(and comment-empty-lines (zerop (length ce)))))))