From b74f66061032469b85fc30eb4b141e64f9709ec6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 21 May 2005 04:50:59 +0000 Subject: [PATCH] (tmm-shortcut): Avoid using beginning-of-buffer. --- lisp/tmm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/tmm.el b/lisp/tmm.el index 3e0a8e95701..168dbdd14dc 100644 --- a/lisp/tmm.el +++ b/lisp/tmm.el @@ -362,7 +362,7 @@ Stores a list of all the shortcuts in the free variable `tmm-short-cuts'." (if (memq c tmm-short-cuts) (if (equal (buffer-name) "*Completions*") (progn - (beginning-of-buffer) + (goto-char (point-min)) (re-search-forward (concat "\\(^\\|[ \t]\\)" (char-to-string c) tmm-mid-prompt)) (choose-completion)) -- 2.39.5