aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu1999-02-02 02:26:12 +0000
committerDan Nicolaescu1999-02-02 02:26:12 +0000
commite93b8cbb7eda3e82bbc78bf757dbe1992621693b (patch)
tree4d2ae6af8be4837b4908f933ca0c26d6dc8a4b20
parentc6d6677e25695f65c5b0763f63676cbe1bee4846 (diff)
downloademacs-e93b8cbb7eda3e82bbc78bf757dbe1992621693b.tar.gz
emacs-e93b8cbb7eda3e82bbc78bf757dbe1992621693b.zip
*** empty log message ***
-rw-r--r--lisp/subr.el2
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)