diff options
| author | Miles Bader | 2000-11-21 08:49:33 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-11-21 08:49:33 +0000 |
| commit | ef860850335cbc413fe3c9f71dd8deca7b400fdb (patch) | |
| tree | 89a22fefe526165fa0f0a7b390b1d37d931fb4eb | |
| parent | e1e539ed8f3e9fe65ab242d3b38fab36ea6fb3d8 (diff) | |
| download | emacs-ef860850335cbc413fe3c9f71dd8deca7b400fdb.tar.gz emacs-ef860850335cbc413fe3c9f71dd8deca7b400fdb.zip | |
(ad-special-forms): Correct the conditional inclusion of `track-mouse'.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/emacs-lisp/advice.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ebbe543adf1..21f22693f66 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2000-11-21 Miles Bader <miles@gnu.org> | 1 | 2000-11-21 Miles Bader <miles@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/advice.el (ad-special-forms): Correct the conditional | ||
| 4 | inclusion of `track-mouse'. | ||
| 5 | |||
| 3 | * textmodes/refill.el (refill-ignorable-overlay): New variable. | 6 | * textmodes/refill.el (refill-ignorable-overlay): New variable. |
| 4 | (refill-adjust-ignorable-overlay): New function. | 7 | (refill-adjust-ignorable-overlay): New function. |
| 5 | (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill | 8 | (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill |
diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el index c8f7be749f0..4d32929ee9b 100644 --- a/lisp/emacs-lisp/advice.el +++ b/lisp/emacs-lisp/advice.el | |||
| @@ -2471,7 +2471,7 @@ will clear the cache." | |||
| 2471 | defun defvar function if interactive let let* | 2471 | defun defvar function if interactive let let* |
| 2472 | or prog1 prog2 progn quote save-current-buffer | 2472 | or prog1 prog2 progn quote save-current-buffer |
| 2473 | save-excursion save-restriction save-window-excursion | 2473 | save-excursion save-restriction save-window-excursion |
| 2474 | setq setq-default track-mouse unwind-protect while | 2474 | setq setq-default unwind-protect while |
| 2475 | with-output-to-temp-buffer))) | 2475 | with-output-to-temp-buffer))) |
| 2476 | ;; track-mouse could be void in some configurations. | 2476 | ;; track-mouse could be void in some configurations. |
| 2477 | (if (fboundp 'track-mouse) | 2477 | (if (fboundp 'track-mouse) |