emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 fb45125: Documentation improvements in newcomment


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-26 fb45125: Documentation improvements in newcomment.el
Date: Sat, 2 Jun 2018 06:44:30 -0400 (EDT)

branch: emacs-26
commit fb45125c80313b85a7ee56417e746eeac5eecb05
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Documentation improvements in newcomment.el
    
    * lisp/newcomment.el (uncomment-region)
    (uncomment-region-default): Doc fixes.  (Bug#31615)
---
 lisp/newcomment.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lisp/newcomment.el b/lisp/newcomment.el
index f5615d9..9827a5d 100644
--- a/lisp/newcomment.el
+++ b/lisp/newcomment.el
@@ -887,7 +887,7 @@ If N is `re', a regexp is returned instead, that would match
 (defun uncomment-region (beg end &optional arg)
   "Uncomment each line in the BEG .. END region.
 The numeric prefix ARG can specify a number of chars to remove from the
-comment markers."
+comment delimiters."
   (interactive "*r\nP")
   (comment-normalize-vars)
   (when (> beg end) (setq beg (prog1 end (setq end beg))))
@@ -901,7 +901,8 @@ comment markers."
 (defun uncomment-region-default (beg end &optional arg)
   "Uncomment each line in the BEG .. END region.
 The numeric prefix ARG can specify a number of chars to remove from the
-comment markers."
+comment delimiters.
+This function is the default value of `uncomment-region-function'."
   (goto-char beg)
   (setq end (copy-marker end))
   (let* ((numarg (prefix-numeric-value arg))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]