diff options
| author | Stefan Monnier | 2002-07-16 20:53:59 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-07-16 20:53:59 +0000 |
| commit | bc71812e08a49334585d559b06b62821d9cf3f2a (patch) | |
| tree | c116cd967892892feb8032881772e5bb0fe9fdfc | |
| parent | f66a6225b94e499c7c1582204f6de398e5e575ba (diff) | |
| download | emacs-bc71812e08a49334585d559b06b62821d9cf3f2a.tar.gz emacs-bc71812e08a49334585d559b06b62821d9cf3f2a.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 45 |
1 files changed, 40 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index eab5884f6bd..23ac1416653 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,39 @@ | |||
| 1 | 2002-07-16 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * vc.el (vc-default-comment-history): Hard code *vc*. | ||
| 4 | This is because print-log always prints there now. | ||
| 5 | (vc-annotate-font-lock-keywords): New var. | ||
| 6 | (vc-annotate-mode): Use it. Set truncate-lines as well. | ||
| 7 | (vc-annotate-display-select): Unify the two error reports. | ||
| 8 | (vc-annotate-offset): New var. | ||
| 9 | (vc-annotate-lines): New fun extracted from vc-annotate-display. | ||
| 10 | (vc-annotate-display): Use it, via font-lock. | ||
| 11 | |||
| 12 | * help-fns.el (help-split-fundoc, help-function-arglist) | ||
| 13 | (help-make-usage): New funs, extracted from describe-function-1. | ||
| 14 | (describe-function-1): Use them. | ||
| 15 | |||
| 16 | * help.el (help-key-description): Show the untranslated keys | ||
| 17 | when they start with ESC and the ESC was not translated. | ||
| 18 | |||
| 19 | * help-mode.el (view): Always require. | ||
| 20 | (help-xref-mule-regexp): Don't use defconst for variables. | ||
| 21 | (help-setup-xref): Keep the last 10 elements of the stack. | ||
| 22 | (help-xref-override-view-map): New var. | ||
| 23 | (help-make-xrefs): Use it instead of building a new map each time. | ||
| 24 | (help-function-def): Allow help-fun to take a buffer as arg. | ||
| 25 | |||
| 26 | * diff-mode.el (diff-reverse-direction): Simplify. | ||
| 27 | (diff-after-change-function): Fix typo. | ||
| 28 | (diff-post-command-hook): Take care of edge cases. | ||
| 29 | (diff-current-defun): Do `goto-char' after setting the mode. | ||
| 30 | |||
| 31 | * mouse-sel.el (mouse-sel-mode): Use define-minor-mode. | ||
| 32 | Fold mouse-sel-bindings into it. | ||
| 33 | (mouse-sel-bound-events): Turn it into an alist. | ||
| 34 | (mouse-insert-selection): Delegate to mouse-yank-at-click if | ||
| 35 | mouse-sel-default-bindings asks for it. | ||
| 36 | |||
| 1 | 2002-07-16 Andre Spiegel <spiegel@gnu.org> | 37 | 2002-07-16 Andre Spiegel <spiegel@gnu.org> |
| 2 | 38 | ||
| 3 | * files.el: Bind toggle-read-only to C-x C-q. | 39 | * files.el: Bind toggle-read-only to C-x C-q. |
| @@ -10,11 +46,10 @@ | |||
| 10 | (vc-checkout-model): Change doc string to refer to vc-next-action, | 46 | (vc-checkout-model): Change doc string to refer to vc-next-action, |
| 11 | not vc-toggle-read-only. | 47 | not vc-toggle-read-only. |
| 12 | 48 | ||
| 13 | * vc.el (vc-next-action-on-file): Ignore buffer-read-only while | 49 | * vc.el (vc-next-action-on-file): Ignore buffer-read-only while |
| 14 | comparing to file on disk. Fix the case when claiming the lock | 50 | comparing to file on disk. Fix the case when claiming the lock |
| 15 | on a file that has unlocked changes. | 51 | on a file that has unlocked changes. |
| 16 | (vc-log-mode): Don't mention vc-toggle-read-only in the doc | 52 | (vc-log-mode): Don't mention vc-toggle-read-only in the doc string. |
| 17 | string. | ||
| 18 | 53 | ||
| 19 | 2002-07-16 Richard M. Stallman <rms@gnu.org> | 54 | 2002-07-16 Richard M. Stallman <rms@gnu.org> |
| 20 | 55 | ||
| @@ -26,7 +61,7 @@ | |||
| 26 | (custom-variable-standard-value, custom-face-standard-value): New fns. | 61 | (custom-variable-standard-value, custom-face-standard-value): New fns. |
| 27 | (custom-face-save): Don't save a face whose value is standard. | 62 | (custom-face-save): Don't save a face whose value is standard. |
| 28 | (custom-save-faces): Use SYMBOL, not 'default, to set NOW and COMMENT. | 63 | (custom-save-faces): Use SYMBOL, not 'default, to set NOW and COMMENT. |
| 29 | 64 | ||
| 30 | * cus-edit.el (custom-face-edit-fix-value): | 65 | * cus-edit.el (custom-face-edit-fix-value): |
| 31 | If VALUE is not a list, pass it thru. | 66 | If VALUE is not a list, pass it thru. |
| 32 | 67 | ||