diff options
| author | Stefan Monnier | 2004-03-26 15:30:42 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-03-26 15:30:42 +0000 |
| commit | e1fbd956b0d9e4c91ef72fb7d9f18018c2719677 (patch) | |
| tree | 461d59e8c2bf3b47b54d7050687fd4fb725e8afc | |
| parent | 6a3ed0641cd34e10ab5e13e4accb5a19546cf644 (diff) | |
| download | emacs-e1fbd956b0d9e4c91ef72fb7d9f18018c2719677.tar.gz emacs-e1fbd956b0d9e4c91ef72fb7d9f18018c2719677.zip | |
Add comment.
| -rw-r--r-- | lisp/ChangeLog | 47 | ||||
| -rw-r--r-- | lisp/calc/calc-ext.el | 3 |
2 files changed, 49 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 95f0d83a6f9..b5020ef0da4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,48 @@ | |||
| 1 | 2004-03-26 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * calc/calc.el (calc-mode-map): Use mapc. | ||
| 4 | |||
| 5 | * apropos.el (apropos-mode): Don't autoload. | ||
| 6 | (apropos-symbols-internal): New fun. Extracted from `apropos'. | ||
| 7 | (apropos): Use it. | ||
| 8 | (apropos-print): Add optional `text' argument. | ||
| 9 | (apropos-describe-plist): Use help-buffer and hexlp-setup-xref. | ||
| 10 | Don't assume point-min == 1. | ||
| 11 | |||
| 12 | * bs.el (bs-buffer-list): Use buffer-local-value. | ||
| 13 | (bs--set-toggle-to-show): Use with-current-buffer. | ||
| 14 | |||
| 15 | * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button): | ||
| 16 | New funs. | ||
| 17 | (list-buffers-noselect): Use them. Adjust :align-to to new style. | ||
| 18 | |||
| 19 | * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p. | ||
| 20 | |||
| 21 | * dabbrev.el (dabbrev-expand): Fix regexp construction. | ||
| 22 | (dabbrev--find-expansion): Use pop. | ||
| 23 | (dabbrev--search): Use match-string-no-properties. | ||
| 24 | |||
| 25 | * dired.el (dired-mode): Use run-mode-hooks. | ||
| 26 | (dired-move-to-end-of-filename): Use match-string. | ||
| 27 | |||
| 28 | * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces | ||
| 29 | is bound before using it. | ||
| 30 | (ediff-verbose-p): Make it into a var since it's not constant. | ||
| 31 | |||
| 32 | * electric.el (Electric-pop-up-window): Avoid popping up a new frame. | ||
| 33 | |||
| 34 | * faces.el (read-face-font): Don't cons up unnecessarily. | ||
| 35 | (header-line, tool-bar): Share common parts. | ||
| 36 | |||
| 37 | * files.el (file-relative-name): Use compare-strings. | ||
| 38 | |||
| 39 | * finder.el (finder-mode): Follow coding convention. | ||
| 40 | |||
| 41 | * subr.el (read-number): New function. | ||
| 42 | |||
| 43 | * ses.el (ses-read-number): Move to subr.el. | ||
| 44 | (ses-set-header-row): Use read-number. | ||
| 45 | |||
| 1 | 2004-03-26 Andre Spiegel <spiegel@gnu.org> | 46 | 2004-03-26 Andre Spiegel <spiegel@gnu.org> |
| 2 | 47 | ||
| 3 | * vc-hooks.el (vc-arg-list): New function, which handles both | 48 | * vc-hooks.el (vc-arg-list): New function, which handles both |
| @@ -22,7 +67,7 @@ | |||
| 22 | 67 | ||
| 23 | 2004-03-25 Sam Steingold <sds@gnu.org> | 68 | 2004-03-25 Sam Steingold <sds@gnu.org> |
| 24 | 69 | ||
| 25 | * vc.el (vc-print-log): Fixed a bug in the last patch: | 70 | * vc.el (vc-print-log): Fix a bug in the last patch: |
| 26 | backend-function may be a byte-compiled object, not a lambda. | 71 | backend-function may be a byte-compiled object, not a lambda. |
| 27 | 72 | ||
| 28 | 2004-03-25 Juri Linkov <juri@jurta.org> | 73 | 2004-03-25 Juri Linkov <juri@jurta.org> |
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 @@ | |||
| 591 | (define-key calc-mode-map "v}" 'calc-matrix-brackets) | 591 | (define-key calc-mode-map "v}" 'calc-matrix-brackets) |
| 592 | (define-key calc-mode-map "v(" 'calc-vector-parens) | 592 | (define-key calc-mode-map "v(" 'calc-vector-parens) |
| 593 | (define-key calc-mode-map "v)" 'calc-matrix-brackets) | 593 | (define-key calc-mode-map "v)" 'calc-matrix-brackets) |
| 594 | ;; We can't rely on the automatic upper->lower conversion because | ||
| 595 | ;; in the global map V is explicitly bound, so we need to bind it | ||
| 596 | ;; explicitly as well :-( --stef | ||
| 594 | (define-key calc-mode-map "V" (lookup-key calc-mode-map "v")) | 597 | (define-key calc-mode-map "V" (lookup-key calc-mode-map "v")) |
| 595 | 598 | ||
| 596 | (define-key calc-mode-map "z" 'nil) | 599 | (define-key calc-mode-map "z" 'nil) |