1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-01 08:17:38 +00:00

(minibuffer-local-must-match-filename-map): Re-instate the varalias that was

accidentally removed by the 2009-11-19 change (bug#5186).
This commit is contained in:
Stefan Monnier 2009-12-12 05:23:54 +00:00
parent 7d943b060d
commit 1d4adede54
2 changed files with 18 additions and 9 deletions

View File

@ -1,3 +1,9 @@
2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
* minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
the varalias that was accidentally removed by the 2009-11-19 change
(bug#5186).
2009-12-12 Kenichi Handa <handa@m17n.org>
* language/indian.el (indian-compose-regexp): New function.
@ -15,19 +21,18 @@
2009-12-11 Michael McNamara <mac@mail.brushroad.com>
* verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re,
verilog-vmm-statement-re, verilog-ovm-statement-re,
verilog-defun-level-not-generate-re, verilog-calculate-indent,
verilog-leap-to-head, verilog-backward-token): Fix
indenting VMM macros. Reported by Jonathan Ashbrook.
* verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
(verilog-vmm-statement-re, verilog-ovm-statement-re)
(verilog-defun-level-not-generate-re, verilog-calculate-indent)
(verilog-leap-to-head, verilog-backward-token):
Fix indenting VMM macros. Reported by Jonathan Ashbrook.
2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
* verilog-mode.el (verilog-auto-lineup, verilog-nameable-item-re):
Cleanup user-visible spelling and documentation errors. One
reported by Gary Delp.
(verilog-submit-bug-report): Mention bug tracking and CC
co-author.
Cleanup user-visible spelling and documentation errors.
One reported by Gary Delp.
(verilog-submit-bug-report): Mention bug tracking and CC co-author.
(verilog-read-decls): Fix AUTOWIRE with types declared in a
package, bug195. Reported by Pierre-David Pfister.

View File

@ -1142,6 +1142,10 @@ Currently supported properties are:
(completion-in-region start end (nth 2 res)
(plist-get plist :predicate)))))))
;;; Key bindings.
(define-obsolete-variable-alias 'minibuffer-local-must-match-filename-map
'minibuffer-local-filename-must-match-map "23.1")
(let ((map minibuffer-local-map))
(define-key map "\C-g" 'abort-recursive-edit)