diff options
| author | Eli Zaretskii | 2007-11-17 10:53:32 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-11-17 10:53:32 +0000 |
| commit | 4e60b1b66c943ba03bb36897c4df5012c068ffd4 (patch) | |
| tree | 8f8c3539acb9d252362e22f60b3a0909b745aa51 | |
| parent | 221bb7f6773602465933b7702bc0e0032410cd40 (diff) | |
| download | emacs-4e60b1b66c943ba03bb36897c4df5012c068ffd4.tar.gz emacs-4e60b1b66c943ba03bb36897c4df5012c068ffd4.zip | |
(eshell-load-defgroups): Don't make backups when saving esh-groups.el.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/eshell/esh-module.el | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 285a69d66a5..635ec685fdc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-11-17 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * eshell/esh-module.el (eshell-load-defgroups): Don't make backups | ||
| 4 | when saving esh-groups.el. | ||
| 5 | |||
| 1 | 2007-11-17 Martin Rudalics <rudalics@gmx.at> | 6 | 2007-11-17 Martin Rudalics <rudalics@gmx.at> |
| 2 | 7 | ||
| 3 | * wid-edit.el (widget-default-complete): | 8 | * wid-edit.el (widget-default-complete): |
diff --git a/lisp/eshell/esh-module.el b/lisp/eshell/esh-module.el index 17067197909..4ae741a9e66 100644 --- a/lisp/eshell/esh-module.el +++ b/lisp/eshell/esh-module.el | |||
| @@ -68,7 +68,9 @@ customizing the variable `eshell-modules-list'." | |||
| 68 | (if defgroup | 68 | (if defgroup |
| 69 | (insert defgroup "\n\n"))) | 69 | (insert defgroup "\n\n"))) |
| 70 | (setq files (cdr files)))) | 70 | (setq files (cdr files)))) |
| 71 | (save-buffer)))) | 71 | ;; Don't make backups, to avoid prompting the user if there are |
| 72 | ;; excess backup versions. | ||
| 73 | (save-buffer 0)))) | ||
| 72 | 74 | ||
| 73 | ;; load the defgroup's for the standard extension modules, so that | 75 | ;; load the defgroup's for the standard extension modules, so that |
| 74 | ;; documentation can be provided when the user customize's | 76 | ;; documentation can be provided when the user customize's |