# HG changeset patch # User Juanma Barranquero # Date 1087430533 0 # Node ID 94e9e6f1f0b337f28f0578cfb914150e7be6794b # Parent fdd6cb3fe998ddb348dcbd5dbddc6d36e679f5b5 (comment-region-internal): Fix docstring. diff -r fdd6cb3fe998 -r 94e9e6f1f0b3 lisp/newcomment.el --- a/lisp/newcomment.el Wed Jun 16 23:56:46 2004 +0000 +++ b/lisp/newcomment.el Thu Jun 17 00:02:13 2004 +0000 @@ -873,17 +873,17 @@ (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)))))))