aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics2015-01-12 18:26:39 +0100
committerMartin Rudalics2015-01-12 18:26:39 +0100
commitcc59a3e577cf54dfa085bba2da8840b2e6cdf7e7 (patch)
tree13e077f20b14b07e578ba96cade88bcd28c5fc49
parente946a9acf6e12137caf836fc043d695c65684110 (diff)
downloademacs-cc59a3e577cf54dfa085bba2da8840b2e6cdf7e7.tar.gz
emacs-cc59a3e577cf54dfa085bba2da8840b2e6cdf7e7.zip
Add autoload cookie for xref-marker-stack-empty-p (Bug#19554).
* progmodes/xref.el (xref-marker-stack-empty-p): Add autoload cookie (Bug#19554).
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/progmodes/xref.el1
2 files changed, 4 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a55849ac1d3..4985ad14473 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12015-01-12 Martin Rudalics <rudalics@gmx.at> 12015-01-12 Martin Rudalics <rudalics@gmx.at>
2 2
3 * progmodes/xref.el (xref-marker-stack-empty-p): Add autoload
4 cookie (Bug#19554).
5
3 * frame.el (frame-notice-user-settings): Remove code dealing with 6 * frame.el (frame-notice-user-settings): Remove code dealing with
4 frame-initial-frame-tool-bar-height. Turn off `tool-bar-mode' 7 frame-initial-frame-tool-bar-height. Turn off `tool-bar-mode'
5 only if `window-system-frame-alist' or `default-frame-alist' ask 8 only if `window-system-frame-alist' or `default-frame-alist' ask
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index b822619f783..7f77d218a48 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -301,6 +301,7 @@ backward."
301 (let ((marker (ring-remove ring))) 301 (let ((marker (ring-remove ring)))
302 (set-marker marker nil nil))))) 302 (set-marker marker nil nil)))))
303 303
304;;;###autoload
304(defun xref-marker-stack-empty-p () 305(defun xref-marker-stack-empty-p ()
305 "Return t if the marker stack is empty; nil otherwise." 306 "Return t if the marker stack is empty; nil otherwise."
306 (ring-empty-p xref--marker-ring)) 307 (ring-empty-p xref--marker-ring))