diff options
| -rw-r--r-- | lisp/play/decipher.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/play/decipher.el b/lisp/play/decipher.el index 7c08856da80..00bcbbf13c5 100644 --- a/lisp/play/decipher.el +++ b/lisp/play/decipher.el | |||
| @@ -305,7 +305,8 @@ The most useful commands are: | |||
| 305 | (setq case-fold-search nil)) ;Case is significant when searching | 305 | (setq case-fold-search nil)) ;Case is significant when searching |
| 306 | (use-local-map decipher-mode-map) | 306 | (use-local-map decipher-mode-map) |
| 307 | (set-syntax-table decipher-mode-syntax-table) | 307 | (set-syntax-table decipher-mode-syntax-table) |
| 308 | (decipher-read-alphabet) | 308 | (unless (= (point-min) (point-max)) |
| 309 | (decipher-read-alphabet)) | ||
| 309 | (set (make-local-variable 'font-lock-defaults) | 310 | (set (make-local-variable 'font-lock-defaults) |
| 310 | '(decipher-font-lock-keywords t)) | 311 | '(decipher-font-lock-keywords t)) |
| 311 | ;; Make the buffer writable when we exit Decipher mode: | 312 | ;; Make the buffer writable when we exit Decipher mode: |