diff options
| -rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index e4c2c1e6978..0cea4ed5b98 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1164,7 +1164,7 @@ that can be added." | |||
| 1164 | 1164 | ||
| 1165 | (defun remove-from-invisibility-spec (arg) | 1165 | (defun remove-from-invisibility-spec (arg) |
| 1166 | "Remove elements from `buffer-invisibility-spec'." | 1166 | "Remove elements from `buffer-invisibility-spec'." |
| 1167 | (if buffer-invisibility-spec | 1167 | (if (consp buffer-invisibility-spec) |
| 1168 | (setq buffer-invisibility-spec (delete arg buffer-invisibility-spec)))) | 1168 | (setq buffer-invisibility-spec (delete arg buffer-invisibility-spec)))) |
| 1169 | 1169 | ||
| 1170 | (defun global-set-key (key command) | 1170 | (defun global-set-key (key command) |