diff options
author | Glenn Morris <rgm@gnu.org> | 2018-02-26 22:47:27 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-02-26 22:47:27 -0800 |
commit | ea2008aeebaaaca7571dd665d54eeddcd6d2c84c (patch) | |
tree | bdbca3413a18ed95e8bd00902d7dcde4389bf6bc /lisp/help.el | |
parent | fe9b612123cbcb74b79c3f8eb4043a1ad3ebb3a6 (diff) | |
download | emacs-ea2008aeebaaaca7571dd665d54eeddcd6d2c84c.tar.gz |
Quieten without-x, without-xml2 builds
* lisp/help.el (x-display-pixel-height, x-display-pixel-width):
* lisp/image.el (image-flush, image-size):
* lisp/textmodes/sgml-mode.el (libxml-parse-html-region):
Declare for compiler.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/help.el b/lisp/help.el index dcf1f32069b..e9235460329 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -1059,6 +1059,9 @@ is currently activated with completion." (setq minor-modes (cdr minor-modes))))) result)) +(declare-function x-display-pixel-height "xfns.c" (&optional terminal)) +(declare-function x-display-pixel-width "xfns.c" (&optional terminal)) + ;;; Automatic resizing of temporary buffers. (defcustom temp-buffer-max-height (lambda (_buffer) |