mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-07 23:10:28 -08:00
Merge from origin/emacs-25
e6a3819Update HISTORY section in readme for the NextStep interface.f67f1ed; * doc/lispref/modes.texi (Font Lock Basics): Minor rewording.7c81a0bImprove documentation of 'save-place-mode'cab3f0aAllocate glyph matrices for the initial framee01c72fFix white space in last checkin370eb67Make `insert-pair' always leave the cursor where documentedb594393etc/NEWS: Mention the new second parameter to `package-install'
This commit is contained in:
commit
68fa05fd93
7 changed files with 40 additions and 18 deletions
|
|
@ -618,8 +618,11 @@ This command assumes point is not in a string or comment."
|
|||
(if (and open close)
|
||||
(if (and transient-mark-mode mark-active)
|
||||
(progn
|
||||
(save-excursion (goto-char (region-end)) (insert close))
|
||||
(save-excursion (goto-char (region-beginning)) (insert open)))
|
||||
(save-excursion
|
||||
(goto-char (region-end))
|
||||
(insert close))
|
||||
(goto-char (region-beginning))
|
||||
(insert open))
|
||||
(if arg (setq arg (prefix-numeric-value arg))
|
||||
(setq arg 0))
|
||||
(cond ((> arg 0) (skip-chars-forward " \t"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue