diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-06-10 17:55:36 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-06-10 17:55:36 +0000 |
commit | a09aa6595151996fcea51b4f67561d73703c78df (patch) | |
tree | 9c1ccd2edc994f8107c220858337929e2a0e99d4 /lisp/emacs-lock.el | |
parent | 8b68aae754cb1baf22a83faa4d5b33c56282552e (diff) | |
download | emacs-a09aa6595151996fcea51b4f67561d73703c78df.tar.gz |
Comment fix.
Diffstat (limited to 'lisp/emacs-lock.el')
-rw-r--r-- | lisp/emacs-lock.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lock.el b/lisp/emacs-lock.el index 729a0d0439a..a133d1b8519 100644 --- a/lisp/emacs-lock.el +++ b/lisp/emacs-lock.el @@ -74,7 +74,7 @@ If t is found, signal error and display the locked buffer name." (error "Buffer `%s' is locked, can't delete it" (buffer-name)))) ; These next defuns make it so if you exit a shell that is locked, the lock -; is shut off for that shell so you can exit emacs. same for telnet. +; is shut off for that shell so you can exit emacs. Same for telnet. ; Also, if a shell or a telnet buffer was locked and the process killed, ; turn the lock back on again if the process is restarted. @@ -85,7 +85,7 @@ If t is found, signal error and display the locked buffer name." (defun emacs-lock-clear-sentinel (proc str) (if emacs-lock-from-exiting (progn - (setq emacs-lock-from-exiting nil) + (setq emacs-lock-from-exiting nil) (setq emacs-lock-buffer-locked t) (message "Buffer is now unlocked")) (setq emacs-lock-buffer-locked nil))) |