diff options
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/esh-module.el | 4 |
1 files changed, 3 insertions, 1 deletions
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 |