diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-03-08 00:11:29 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-03-08 00:11:29 +0000 |
commit | f9b27c85997c48ac9844081c347e6924de91452b (patch) | |
tree | ca138e6ea935a4fe47ed5e934ecf7faf5785de23 /lisp/info.el | |
parent | 6b6481ed7222da77a1fb5c68aa4861477e2d6e44 (diff) | |
download | emacs-f9b27c85997c48ac9844081c347e6924de91452b.tar.gz emacs-f9b27c85997c48ac9844081c347e6924de91452b.tar.bz2 emacs-f9b27c85997c48ac9844081c347e6924de91452b.zip |
(bookmark-make-name-function, bookmark-get-bookmark-record):
Pacify byte-compiler.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index 5f074b686d6..c6834408bac 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -3375,6 +3375,8 @@ With a zero prefix arg, put the name inside a function call to `info'." (defvar tool-bar-map) (defvar bookmark-make-record-function) +(defvar bookmark-make-name-function) +(declare-function bookmark-get-bookmark-record "bookmark" (bookmark)) ;; Autoload cookie needed by desktop.el ;;;###autoload @@ -3745,7 +3747,7 @@ the variable `Info-file-list-for-emacs'." (case-fold-search t) paragraph-markers (not-fontified-p ; the node hasn't already been fontified - (not (let ((where (next-single-property-change (point-min) + (not (let ((where (next-single-property-change (point-min) 'font-lock-face))) (and where (not (= where (point-max))))))) (fontify-visited-p ; visited nodes need to be re-fontified |