]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge from origin/emacs-26
authorGlenn Morris <rgm@gnu.org>
Sat, 2 Jun 2018 17:29:38 +0000 (10:29 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 2 Jun 2018 17:29:38 +0000 (10:29 -0700)
4cfe531 (origin/emacs-26) Improve ELisp documentation of 'clone-indir...
9089b02 Improve documentation of 'inhibit-message'
6107e12 Improve documentation of comment styles
fb45125 Documentation improvements in newcomment.el
641c94c Imp[rove documentation of 'with-silent-modifications'

1  2 
doc/lispref/buffers.texi
doc/lispref/text.texi
lisp/newcomment.el
src/xdisp.c

Simple merge
Simple merge
index 0e983fd916461dc6f30a84f8d0189bf161f8e4c0,9827a5d1d9c86bce9898a9b655aff3def2a8ef58..cd722663dad2f39f7768651c0e1239fd7585dfe4
@@@ -906,10 -898,11 +906,11 @@@ comment delimiters.
      (save-excursion
        (funcall uncomment-region-function beg end arg))))
  
 -(defun uncomment-region-default (beg end &optional arg)
 +(defun uncomment-region-default-1 (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))
diff --cc src/xdisp.c
Simple merge