From: Martin Rudalics Date: Mon, 2 Jul 2007 05:46:19 +0000 (+0000) Subject: (help-make-xrefs): Skip spaces too when skipping tabs. X-Git-Tag: emacs-pretest-22.1.90~1308 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f204ca2feb0e107476f73e9ae2b2524e5254968e;p=emacs.git (help-make-xrefs): Skip spaces too when skipping tabs. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ab4cdf34516..129b9aab8e7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2007-07-02 Martin Rudalics + + * help-mode.el (help-make-xrefs): Skip spaces too when skipping tabs. + + * mouse.el (mouse-drag-mode-line-1): Quit mouse tracking when + event is not a cons cell. Do not unread drag-mouse-1 events. + Select right window in check whether space was stolen from + window above. + 2007-07-01 Richard Stallman * files.el (find-file-visit-truename): Fix safe-local-variable value. diff --git a/lisp/help-mode.el b/lisp/help-mode.el index afaf06bec3c..3da2a23efc4 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -462,7 +462,7 @@ that." ;; Skip a single blank line. (and (eolp) (forward-line)) (end-of-line) - (skip-chars-backward "^\t\n") + (skip-chars-backward "^ \t\n") (if (and (>= (current-column) col) (looking-at "\\(\\sw\\|-\\)+$")) (let ((sym (intern-soft (match-string 0))))