diff options
| -rw-r--r-- | lisp/keymap.el | 2 | ||||
| -rw-r--r-- | lisp/subr.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/keymap.el b/lisp/keymap.el index ad7d4fbbba1..376a30f1065 100644 --- a/lisp/keymap.el +++ b/lisp/keymap.el | |||
| @@ -313,7 +313,7 @@ Modifiers have to be specified in this order: | |||
| 313 | which is | 313 | which is |
| 314 | 314 | ||
| 315 | Alt-Control-Hyper-Meta-Shift-super" | 315 | Alt-Control-Hyper-Meta-Shift-super" |
| 316 | (declare (pure t) (side-effect-free t)) | 316 | (declare (pure t) (side-effect-free error-free)) |
| 317 | (let ((case-fold-search nil)) | 317 | (let ((case-fold-search nil)) |
| 318 | (and | 318 | (and |
| 319 | (stringp keys) | 319 | (stringp keys) |
diff --git a/lisp/subr.el b/lisp/subr.el index 1a16d781174..ff82d0d1d8d 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -6820,7 +6820,7 @@ This means that OBJECT can be printed out and then read back | |||
| 6820 | again by the Lisp reader. This function returns nil if OBJECT is | 6820 | again by the Lisp reader. This function returns nil if OBJECT is |
| 6821 | unreadable, and the printed representation (from `prin1') of | 6821 | unreadable, and the printed representation (from `prin1') of |
| 6822 | OBJECT if it is readable." | 6822 | OBJECT if it is readable." |
| 6823 | (declare (side-effect-free t)) | 6823 | (declare (side-effect-free error-free)) |
| 6824 | (catch 'unreadable | 6824 | (catch 'unreadable |
| 6825 | (let ((print-unreadable-function | 6825 | (let ((print-unreadable-function |
| 6826 | (lambda (_object _escape) | 6826 | (lambda (_object _escape) |