]> git.eshelyaron.com Git - emacs.git/commitdiff
(help-make-xrefs): Skip spaces too when skipping tabs.
authorMartin Rudalics <rudalics@gmx.at>
Mon, 2 Jul 2007 05:46:19 +0000 (05:46 +0000)
committerMartin Rudalics <rudalics@gmx.at>
Mon, 2 Jul 2007 05:46:19 +0000 (05:46 +0000)
lisp/ChangeLog
lisp/help-mode.el

index ab4cdf345163ac9c1d8562af81a8fa43567acc28..129b9aab8e7564c05e46ffce6a6f8b882bcd3c5f 100644 (file)
@@ -1,3 +1,12 @@
+2007-07-02  Martin Rudalics  <rudalics@gmx.at>
+
+       * 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  <rms@gnu.org>
 
        * files.el (find-file-visit-truename): Fix safe-local-variable value.
index afaf06bec3c451c0c0cd2df1474365ffce20007e..3da2a23efc43dcd982d19b5d1e8a42a252e67875 100644 (file)
@@ -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))))