1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-07 15:21:46 +00:00

* subr.el (read-passwd): Disable show-paren-mode.

Fixes: debbugs:16091
This commit is contained in:
Leo Liu 2013-12-09 10:38:42 +08:00
parent 1b9b6fbb5c
commit d64643b40f
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-12-09 Leo Liu <sdl.web@gmail.com>
* subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
* progmodes/js.el (js-auto-indent-flag): Remove, was unused.

View File

@ -2038,6 +2038,7 @@ by doing (clear-string STRING)."
(setq-local select-active-regions nil)
(use-local-map read-passwd-map)
(setq-local inhibit-modification-hooks nil) ;bug#15501.
(setq-local show-paren-mode nil) ;bug#16091.
(add-hook 'after-change-functions hide-chars-fun nil 'local))
(unwind-protect
(let ((enable-recursive-minibuffers t))