summaryrefslogtreecommitdiff
path: root/lisp/calendar/timeclock.el
diff options
context:
space:
mode:
authorDeepak Goel <deego@gnufans.org>2005-09-18 12:41:39 +0000
committerDeepak Goel <deego@gnufans.org>2005-09-18 12:41:39 +0000
commit80070cca29719721131a14f1760619d5228ca677 (patch)
treebe4ce385a3a4cb51775abd358c3bd50f256c84e2 /lisp/calendar/timeclock.el
parent55aed1209c8ae9a2358bb683a5a12056b80883b4 (diff)
downloademacs-80070cca29719721131a14f1760619d5228ca677.tar.gz
message format spec fixes, commit # 10
Diffstat (limited to 'lisp/calendar/timeclock.el')
-rw-r--r--lisp/calendar/timeclock.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/calendar/timeclock.el b/lisp/calendar/timeclock.el
index 19191fd84b9..afa7b0e87d9 100644
--- a/lisp/calendar/timeclock.el
+++ b/lisp/calendar/timeclock.el
@@ -441,7 +441,7 @@ worked today, ignoring the time worked on previous days."
"remaining" "over")
(timeclock-when-to-leave-string show-seconds today-only)))
(if (interactive-p)
- (message status)
+ (message "%s" status)
status)))
;;;###autoload
@@ -512,7 +512,7 @@ See `timeclock-relative' for more information about the meaning of
(timeclock-workday-remaining today-only)
show-seconds t)))
(if (interactive-p)
- (message string)
+ (message "%s" string)
string)))
(defsubst timeclock-workday-elapsed ()
@@ -534,7 +534,7 @@ non-nil, the amount returned will be relative to past time worked."
(let ((string (timeclock-seconds-to-string (timeclock-workday-elapsed)
show-seconds)))
(if (interactive-p)
- (message string)
+ (message "%s" string)
string)))
(defsubst timeclock-time-to-seconds (time)
@@ -579,7 +579,7 @@ relative only to the time worked today, and not to past time."
(format-time-string "%-I:%M:%S %p" then)
(format-time-string "%-I:%M %p" then))))
(if (interactive-p)
- (message string)
+ (message "%s" string)
string)))
;;; Internal Functions: