diff options
| -rw-r--r-- | lisp/type-break.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/type-break.el b/lisp/type-break.el index 3a0b8b5adcc..0585e5bc61d 100644 --- a/lisp/type-break.el +++ b/lisp/type-break.el | |||
| @@ -390,8 +390,9 @@ problems." | |||
| 390 | (and (interactive-p) | 390 | (and (interactive-p) |
| 391 | (message "Type Break mode is already enabled"))) | 391 | (message "Type Break mode is already enabled"))) |
| 392 | (type-break-mode | 392 | (type-break-mode |
| 393 | (with-current-buffer (find-file-noselect type-break-file-name 'nowarn) | 393 | (when type-break-file-name |
| 394 | (setq buffer-save-without-query t)) | 394 | (with-current-buffer (find-file-noselect type-break-file-name 'nowarn) |
| 395 | (setq buffer-save-without-query t))) | ||
| 395 | 396 | ||
| 396 | (or global-mode-string | 397 | (or global-mode-string |
| 397 | (setq global-mode-string '(""))) | 398 | (setq global-mode-string '(""))) |