diff options
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/play/doctor.el | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cb6ca9f2c61..35f9548baef 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org> + + * play/doctor.el (make-doctor-variables): Define `doctor-sent'. + 2011-09-11 Chong Yidong <cyd@stupidchicken.com> Change modes that used same-window-* vars to use switch-to-buffer. diff --git a/lisp/play/doctor.el b/lisp/play/doctor.el index 54a5a4ef6c9..b20f6968088 100644 --- a/lisp/play/doctor.el +++ b/lisp/play/doctor.el @@ -163,6 +163,7 @@ reads the sentence before point, and prints the Doctor's answer." (you7re you\'re (i am)) (you7ve you\'ve (i have)) (you7ll you\'ll (i will))))) + (set (make-local-variable 'doctor-sent) nil) (set (make-local-variable 'doctor-found) nil) (set (make-local-variable 'doctor-owner) nil) (set (make-local-variable 'doctor--history) nil) |