]> git.eshelyaron.com Git - emacs.git/commitdiff
Make help-at-point stuff also look just before point
authorDaniel Colascione <dancol@dancol.org>
Sun, 2 Feb 2014 22:21:33 +0000 (14:21 -0800)
committerDaniel Colascione <dancol@dancol.org>
Sun, 2 Feb 2014 22:21:33 +0000 (14:21 -0800)
lisp/ChangeLog
lisp/help-at-pt.el

index 737f54d41e3fd5f9aeca84929b0b9c987c288559..9b692283d96a5f8578947a67a4d687586b8b7930 100644 (file)
@@ -1,3 +1,8 @@
+2014-02-02  Daniel Colascione  <dancol@dancol.org>
+
+       * help-at-pt.el (help-at-pt-string,help-at-pt-maybe-display): Also
+       try to display local help from just before point.
+
 2014-02-02  Alan Mackenzie  <bug-cc-mode@gnu.org>
 
        c-parse-state.  Don't "append-lower-brace-pair" in certain
index 15db502062cee0d84daf3665db9423b1c7aa2cfb..7f424f7f3acf569706721df88598ed18d9b998d9 100644 (file)
@@ -61,13 +61,18 @@ property, or nil, is returned.
 If KBD is non-nil, `kbd-help' is used instead, and any
 `help-echo' property is ignored.  In this case, the return value
 can also be t, if that is the value of the `kbd-help' property."
-  (let* ((prop (if kbd 'kbd-help 'help-echo))
-        (pair (get-char-property-and-overlay (point) prop))
-        (val (car pair))
-        (ov (cdr pair)))
-    (if (functionp val)
-       (funcall val (selected-window) (if ov ov (current-buffer)) (point))
-      (eval val))))
+  (save-excursion
+    (let* ((prop (if kbd 'kbd-help 'help-echo))
+           (pair (get-char-property-and-overlay (point) prop))
+           (pair (if (car pair) pair
+                     (unless (bobp)
+                       (backward-char)
+                       (get-char-property-and-overlay (point) prop))))
+           (val (car pair))
+           (ov (cdr pair)))
+      (if (functionp val)
+          (funcall val (selected-window) (if ov ov (current-buffer)) (point))
+          (eval val)))))
 
 ;;;###autoload
 (defun help-at-pt-kbd-string ()
@@ -235,7 +240,13 @@ properties, to enable buffer local values."
                (catch 'found
                  (dolist (prop help-at-pt-display-when-idle)
                    (if (get-char-property (point) prop)
-                       (throw 'found t))))))
+                       (throw 'found t)))
+                  (unless (bobp)
+                    (save-excursion
+                      (backward-char)
+                      (dolist (prop help-at-pt-display-when-idle)
+                        (if (get-char-property (point) prop)
+                            (throw 'found t))))))))
        (or (not (current-message))
           (string= (current-message) "Quit"))
        (display-local-help t)))