aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorStefan Monnier2013-12-15 21:24:08 -0500
committerStefan Monnier2013-12-15 21:24:08 -0500
commit2013a2f955e4dc6edf9869767e9f5d70fbf9d69c (patch)
treed641c6fe8fc0b763645a5447f1fda75987cc4ac0 /etc
parentdb50ad5f11cc5809c27091181a13ee7aa34ec5ed (diff)
downloademacs-2013a2f955e4dc6edf9869767e9f5d70fbf9d69c.tar.gz
emacs-2013a2f955e4dc6edf9869767e9f5d70fbf9d69c.zip
* lisp/emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
(cua--deactivate-rectangle): Don't deactivate the mark. (cua-set-rectangle-mark): Don't set mark-active since cua--activate-rectangle already does it for us. (cua--rectangle-highlight-for-redisplay): Unhighlight a previous non-rectangular region. * lisp/emulation/cua-base.el (cua-repeat-replace-region): Use with-current-buffer. * lisp/net/gnutls.el: Use cl-lib. (gnutls-negotiate): `mapcan' -> cl-mapcan.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index cfb883e445b..ad385f4d373 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -254,11 +254,12 @@ You can pick the name of the function and the variables with `C-x 4 a'.
254* Changes in Specialized Modes and Packages in Emacs 24.4 254* Changes in Specialized Modes and Packages in Emacs 24.4
255 255
256** CUA-mode 256** CUA-mode
257CUA-mode was changed to make use of delete-selection-mode and 257*** CUA-mode was changed to make use of delete-selection-mode and
258shift-select-mode. So you can now enable it independently from 258shift-select-mode. So you can now enable it independently from
259transient-mark-mode, delete-selection-mode, and shift-select-mode. 259transient-mark-mode, delete-selection-mode, and shift-select-mode.
260As a result, cua-highlight-region-shift-only is obsolete 260As a result, cua-highlight-region-shift-only is obsolete
261(you can disable transient-mark-mode to get the same result). 261(you can disable transient-mark-mode to get the same result).
262*** CUA's rectangles can now be used via `cua-rectangle-mark-mode'.
262 263
263** `delete-selection-mode' can be used without transient-mark-mode. 264** `delete-selection-mode' can be used without transient-mark-mode.
264 265