when using transient-mark-mode.
** Emacs now supports the SVG image format through librsvg2.
+** C-SPC C-SPC in transient-mark-mode pushes a mark without activating it.
+
** transient-mark-mode is now enabled by default.
** If you set find-file-confirm-nonexistent-file to t, then C-x C-f
+2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * simple.el (set-mark-command): Deactivate mark on second C-SPC C-SPC
+ when using transient-mark-mode.
+
2008-02-26 Jan Dj\e$(Q)Z\e(Brv <jan.h.d@swipnet.se>
* progmodes/grep.el (grep-mode-tool-bar-map): Change place on next
mark-active (null transient-mark-mode))
(setq transient-mark-mode 'lambda)
(message "Transient-mark-mode temporarily enabled"))
+ ((and (eq last-command 'set-mark-command)
+ transient-mark-mode)
+ (deactivate-mark))
(t
(push-mark-command nil))))
(princ "." t))
(defvaralias 'indicate-unused-lines 'indicate-empty-lines)
-(defvaralias 'default-indicate-unused-lines 'default-indicate-empty-lines)
(defun toggle-truncate-lines (&optional arg)
"Toggle whether to fold or truncate long lines for the current buffer.