aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-11-29 04:29:41 +0000
committerGlenn Morris2007-11-29 04:29:41 +0000
commit715dd5163ddf9b6c286f4891c376dc7fe14d059b (patch)
tree665137430c2b827db64f76477a14fc106377248e
parentfedf6211cd15b941066127f732d79ad94bd27b16 (diff)
downloademacs-715dd5163ddf9b6c286f4891c376dc7fe14d059b.tar.gz
emacs-715dd5163ddf9b6c286f4891c376dc7fe14d059b.zip
(w3m-toggle-inline-image, htmlr-reset)
(htmlr-step): Declare as functions.
-rw-r--r--lisp/net/newsticker.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/net/newsticker.el b/lisp/net/newsticker.el
index 735d946346d..32d2c43f211 100644
--- a/lisp/net/newsticker.el
+++ b/lisp/net/newsticker.el
@@ -2600,6 +2600,9 @@ If URL is nil it is searched at point."
2600 (add-to-list 'newsticker-url-list (list name url nil nil nil) t) 2600 (add-to-list 'newsticker-url-list (list name url nil nil nil) t)
2601 (customize-variable 'newsticker-url-list)) 2601 (customize-variable 'newsticker-url-list))
2602 2602
2603;; External.
2604(declare-function w3m-toggle-inline-image "ext:w3m" (&optional force no-cache))
2605
2603(defun newsticker-w3m-show-inline-images () 2606(defun newsticker-w3m-show-inline-images ()
2604 "Show inline images in visible text ranges. 2607 "Show inline images in visible text ranges.
2605In-line images in invisible text ranges are hidden. This function 2608In-line images in invisible text ranges are hidden. This function
@@ -4843,6 +4846,11 @@ The face is chosen according the values of NT-FACE and AGE."
4843;; ====================================================================== 4846;; ======================================================================
4844;;; HTML rendering 4847;;; HTML rendering
4845;; ====================================================================== 4848;; ======================================================================
4849
4850;; External.
4851(declare-function htmlr-reset "ext:htmlr" ())
4852(declare-function htmlr-step "ext:htmlr" ())
4853
4846(defun newsticker-htmlr-render (pos1 pos2) ; 4854(defun newsticker-htmlr-render (pos1 pos2) ;
4847 "Replacement for `htmlr-render'. 4855 "Replacement for `htmlr-render'.
4848Renders the HTML code in the region POS1 to POS2 using htmlr." 4856Renders the HTML code in the region POS1 to POS2 using htmlr."