1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00

* 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.
This commit is contained in:
Stefan Monnier 2013-12-15 21:24:08 -05:00
parent db50ad5f11
commit 2013a2f955
6 changed files with 45 additions and 15 deletions

View file

@ -35,7 +35,7 @@
;;; Code:
(eval-when-compile (require 'cl-lib))
(require 'cl-lib)
(defgroup gnutls nil
"Emacs interface to the GnuTLS library."
@ -210,7 +210,7 @@ defaults to GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT."
t)
;; if a list, look for hostname matches
((listp gnutls-verify-error)
(mapcan
(cl-mapcan
(lambda (check)
(when (string-match (car check) hostname)
(cdr check)))