diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
commit | 06b605171f1c9d8b42bd3326a243b8b03d2e4e58 (patch) | |
tree | e96c135042999136bf0e75d113aae306e51983e3 /lisp/info-xref.el | |
parent | 04c569546ad52f6270d8fc6d4aa0750950a0ac05 (diff) | |
download | emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.tar.gz emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.tar.bz2 emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.zip |
lisp/*.el: Lexical-binding cleanup.
Diffstat (limited to 'lisp/info-xref.el')
-rw-r--r-- | lisp/info-xref.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/info-xref.el b/lisp/info-xref.el index c56db2c94bb..41da9d12c99 100644 --- a/lisp/info-xref.el +++ b/lisp/info-xref.el @@ -151,7 +151,7 @@ overall good/bad count summary inserted at the very end." (unless info-xref-in-progress (info-xref-output "done, %d good, %d bad, %d unavailable" info-xref-good info-xref-bad info-xref-unavail)))) - + (defun info-xref-output (fmt &rest args) "Emit a `format'-ed message FMT+ARGS to the `info-xref-output-buffer'." (with-current-buffer info-xref-output-buffer @@ -200,7 +200,7 @@ buffer's line and column of point." (save-excursion (save-window-excursion (prog1 - (condition-case err + (condition-case nil (progn (Info-goto-node node (when (get-buffer "*info*") |