diff options
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/filesets.el | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8d4cdddcd39..93ebfb3d4da 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2002-12-16 Markus Rost <rost@math.ohio-state.edu> | 1 | 2002-12-16 Markus Rost <rost@math.ohio-state.edu> |
| 2 | 2 | ||
| 3 | * filesets.el (filesets-build-menu-now): Don't clear messages. | ||
| 4 | |||
| 3 | * allout.el: Avoid name conflicts with outline.el. Replace | 5 | * allout.el: Avoid name conflicts with outline.el. Replace |
| 4 | globally string "outline-" with string "allout-". Replaced 1446 | 6 | globally string "outline-" with string "allout-". Replaced 1446 |
| 5 | occurrences; there was no string "allout-" before the change and | 7 | occurrences; there was no string "allout-" before the change and |
diff --git a/lisp/filesets.el b/lisp/filesets.el index 10d0d054c5f..e7f0358a739 100644 --- a/lisp/filesets.el +++ b/lisp/filesets.el | |||
| @@ -2346,7 +2346,8 @@ bottom up, set `filesets-submenus' to nil, first.)" | |||
| 2346 | filesets-menu-in-menu) | 2346 | filesets-menu-in-menu) |
| 2347 | (setq filesets-updated-buffers | 2347 | (setq filesets-updated-buffers |
| 2348 | (cons cb filesets-updated-buffers)) | 2348 | (cons cb filesets-updated-buffers)) |
| 2349 | (message nil) | 2349 | ;; This wipes out other messages in the echo area. |
| 2350 | ;; (message nil) | ||
| 2350 | ;;(message "Filesets updated: %s" cb) | 2351 | ;;(message "Filesets updated: %s" cb) |
| 2351 | ))) | 2352 | ))) |
| 2352 | 2353 | ||