aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeepak Goel2005-09-18 12:36:08 +0000
committerDeepak Goel2005-09-18 12:36:08 +0000
commit8603cb4f3f6ecf1f4b4a0ef24b1e26c5e1075e73 (patch)
treec85b8056c504fa70a782d417a0a8d2b21f933971
parent8c307e0f56cac8a485ba6355ccd6f9e943b49f7c (diff)
downloademacs-8603cb4f3f6ecf1f4b4a0ef24b1e26c5e1075e73.tar.gz
emacs-8603cb4f3f6ecf1f4b4a0ef24b1e26c5e1075e73.zip
Message format fixes (commit no. 5)
-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 @@
10;; Created: 17. June 2003 10;; Created: 17. June 2003
11;; Keywords: News, RSS 11;; Keywords: News, RSS
12;; Time-stamp: "26. August 2005, 16:33:46 (ulf)" 12;; Time-stamp: "26. August 2005, 16:33:46 (ulf)"
13;; CVS-Version: $Id: newsticker.el,v 1.2 2005/09/12 22:54:28 miles Exp $ 13;; CVS-Version: $Id: newsticker.el,v 1.3 2005/09/13 08:47:44 lektu Exp $
14 14
15(defconst newsticker-version "1.8" "Version number of newsticker.el.") 15(defconst newsticker-version "1.8" "Version number of newsticker.el.")
16 16
@@ -3429,7 +3429,7 @@ there is another message displayed or the minibuffer is active."
3429 (setq newsticker--item-position 0)) 3429 (setq newsticker--item-position 0))
3430 (setq newsticker--prev-message 3430 (setq newsticker--prev-message
3431 (nth newsticker--item-position newsticker--item-list)) 3431 (nth newsticker--item-position newsticker--item-list))
3432 (message newsticker--prev-message)))) 3432 (message "%s" newsticker--prev-message))))
3433 3433
3434(defun newsticker--display-scroll () 3434(defun newsticker--display-scroll ()
3435 "Called from the display timer. 3435 "Called from the display timer.
@@ -3465,7 +3465,7 @@ there is another message displayed or the minibuffer is active."
3465 (setq subtext (substring subtext 0 t-width)) 3465 (setq subtext (substring subtext 0 t-width))
3466 (setq t-width (1- t-width)))) 3466 (setq t-width (1- t-width))))
3467 ;; show the ticker text and save current position 3467 ;; show the ticker text and save current position
3468 (message subtext) 3468 (message "%s" subtext)
3469 (setq newsticker--prev-message subtext) 3469 (setq newsticker--prev-message subtext)
3470 (setq newsticker--item-position (1+ i)) 3470 (setq newsticker--item-position (1+ i))
3471 (when (>= newsticker--item-position l) 3471 (when (>= newsticker--item-position l)