1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(speedbar-edit-line): Change regexp to position

the cursor on the first character of this line's button.
This commit is contained in:
Richard M. Stallman 2004-01-03 21:12:08 +00:00
parent 05218277b6
commit d03aece353

View file

@ -3410,7 +3410,9 @@ directory with these items."
(if (re-search-forward "[]>?}] [^ ]"
(save-excursion (end-of-line) (point))
t)
(speedbar-do-function-pointer)
(progn
(forward-char -1)
(speedbar-do-function-pointer))
nil))
(speedbar-do-function-pointer)))