From: Stefan Monnier Date: Fri, 26 Mar 2004 15:30:42 +0000 (+0000) Subject: Add comment. X-Git-Tag: ttn-vms-21-2-B4~7077 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e1fbd956b0d9e4c91ef72fb7d9f18018c2719677;p=emacs.git Add comment. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 95f0d83a6f9..b5020ef0da4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,48 @@ +2004-03-26 Stefan Monnier + + * calc/calc.el (calc-mode-map): Use mapc. + + * apropos.el (apropos-mode): Don't autoload. + (apropos-symbols-internal): New fun. Extracted from `apropos'. + (apropos): Use it. + (apropos-print): Add optional `text' argument. + (apropos-describe-plist): Use help-buffer and hexlp-setup-xref. + Don't assume point-min == 1. + + * bs.el (bs-buffer-list): Use buffer-local-value. + (bs--set-toggle-to-show): Use with-current-buffer. + + * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button): + New funs. + (list-buffers-noselect): Use them. Adjust :align-to to new style. + + * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p. + + * dabbrev.el (dabbrev-expand): Fix regexp construction. + (dabbrev--find-expansion): Use pop. + (dabbrev--search): Use match-string-no-properties. + + * dired.el (dired-mode): Use run-mode-hooks. + (dired-move-to-end-of-filename): Use match-string. + + * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces + is bound before using it. + (ediff-verbose-p): Make it into a var since it's not constant. + + * electric.el (Electric-pop-up-window): Avoid popping up a new frame. + + * faces.el (read-face-font): Don't cons up unnecessarily. + (header-line, tool-bar): Share common parts. + + * files.el (file-relative-name): Use compare-strings. + + * finder.el (finder-mode): Follow coding convention. + + * subr.el (read-number): New function. + + * ses.el (ses-read-number): Move to subr.el. + (ses-set-header-row): Use read-number. + 2004-03-26 Andre Spiegel * vc-hooks.el (vc-arg-list): New function, which handles both @@ -22,7 +67,7 @@ 2004-03-25 Sam Steingold - * vc.el (vc-print-log): Fixed a bug in the last patch: + * vc.el (vc-print-log): Fix a bug in the last patch: backend-function may be a byte-compiled object, not a lambda. 2004-03-25 Juri Linkov diff --git a/lisp/calc/calc-ext.el b/lisp/calc/calc-ext.el index eafcc0766c2..47c02bc285c 100644 --- a/lisp/calc/calc-ext.el +++ b/lisp/calc/calc-ext.el @@ -591,6 +591,9 @@ (define-key calc-mode-map "v}" 'calc-matrix-brackets) (define-key calc-mode-map "v(" 'calc-vector-parens) (define-key calc-mode-map "v)" 'calc-matrix-brackets) + ;; We can't rely on the automatic upper->lower conversion because + ;; in the global map V is explicitly bound, so we need to bind it + ;; explicitly as well :-( --stef (define-key calc-mode-map "V" (lookup-key calc-mode-map "v")) (define-key calc-mode-map "z" 'nil)