summaryrefslogtreecommitdiff
path: root/lisp/net/newsticker.el
diff options
context:
space:
mode:
authorDeepak Goel <deego@gnufans.org>2005-09-18 12:36:08 +0000
committerDeepak Goel <deego@gnufans.org>2005-09-18 12:36:08 +0000
commit8603cb4f3f6ecf1f4b4a0ef24b1e26c5e1075e73 (patch)
treec85b8056c504fa70a782d417a0a8d2b21f933971 /lisp/net/newsticker.el
parent8c307e0f56cac8a485ba6355ccd6f9e943b49f7c (diff)
downloademacs-8603cb4f3f6ecf1f4b4a0ef24b1e26c5e1075e73.tar.gz
Message format fixes (commit no. 5)
Diffstat (limited to 'lisp/net/newsticker.el')
-rw-r--r--lisp/net/newsticker.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/net/newsticker.el b/lisp/net/newsticker.el
index 4f73934a7db..536d6eba03c 100644
--- a/lisp/net/newsticker.el
+++ b/lisp/net/newsticker.el
@@ -10,7 +10,7 @@
;; Created: 17. June 2003
;; Keywords: News, RSS
;; Time-stamp: "26. August 2005, 16:33:46 (ulf)"
-;; CVS-Version: $Id: newsticker.el,v 1.2 2005/09/12 22:54:28 miles Exp $
+;; CVS-Version: $Id: newsticker.el,v 1.3 2005/09/13 08:47:44 lektu Exp $
(defconst newsticker-version "1.8" "Version number of newsticker.el.")
@@ -3429,7 +3429,7 @@ there is another message displayed or the minibuffer is active."
(setq newsticker--item-position 0))
(setq newsticker--prev-message
(nth newsticker--item-position newsticker--item-list))
- (message newsticker--prev-message))))
+ (message "%s" newsticker--prev-message))))
(defun newsticker--display-scroll ()
"Called from the display timer.
@@ -3465,7 +3465,7 @@ there is another message displayed or the minibuffer is active."
(setq subtext (substring subtext 0 t-width))
(setq t-width (1- t-width))))
;; show the ticker text and save current position
- (message subtext)
+ (message "%s" subtext)
(setq newsticker--prev-message subtext)
(setq newsticker--item-position (1+ i))
(when (>= newsticker--item-position l)