+2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
+
+ * repeat.el (repeat): Invoke pre-command-hook and
+ post-command-hook.
+
2005-04-16 Chong Yidong <cyd@stupidchicken.com>
* filesets.el (filesets-add-buffer): If user supplies a name of a
;; does not alter it.
(let ((real-last-command real-last-command))
(execute-kbd-macro real-last-command))
- (call-interactively real-last-command)))))
+ (run-hooks 'pre-command-hook)
+ (call-interactively real-last-command)
+ (run-hooks 'post-command-hook)))))
(when repeat-repeat-char
;; A simple recursion here gets into trouble with max-lisp-eval-depth
;; on long sequences of repetitions of a command like `forward-word'