]> code.delx.au - gnu-emacs/blobdiff - lisp/repeat.el
(ps-mule-begin-job): Redo this change "if
[gnu-emacs] / lisp / repeat.el
index cc31a70d9379c5510f74b538d6a35764f53e6b8e..523ee3ce964f83e7ea11ea7cb10bce4ed328b7fb 100644 (file)
@@ -271,16 +271,17 @@ can be modified by the global variable `repeat-on-final-keystroke'."
            ;; includes that many copies of the same character.
            ;; So use just the first character
            ;; and repeat it the right number of times.
-           (setq insertion (substring insertion 1))
+           (setq insertion (substring insertion -1))
            (let ((count (prefix-numeric-value repeat-arg))
                  (i 0))
              (while (< i count)
                (repeat-self-insert insertion)
                (setq i (1+ i)))))
-       (if (or (stringp real-last-command)
-               (vectorp real-last-command))
-           (execute-kbd-macro real-last-command)
-         (call-interactively real-last-command))))
+       (let ((indirect (indirect-function real-last-command)))
+         (if (or (stringp indirect)
+                 (vectorp indirect))
+             (execute-kbd-macro real-last-command)
+           (call-interactively real-last-command)))))
     (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'