diff options
author | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:28:30 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:28:30 +0000 |
commit | 5673af85e4a427c550b5a85825340250bfa36c9c (patch) | |
tree | 4b9c53da731ddff07ec2c962abc184cdf7aac5d7 /lisp/textmodes/tildify.el | |
parent | 8a26c16552f49f7a61e1e338952110b59e5b2664 (diff) | |
download | emacs-5673af85e4a427c550b5a85825340250bfa36c9c.tar.gz emacs-5673af85e4a427c550b5a85825340250bfa36c9c.tar.bz2 emacs-5673af85e4a427c550b5a85825340250bfa36c9c.zip |
Message format spec fixes (2)
Diffstat (limited to 'lisp/textmodes/tildify.el')
-rw-r--r-- | lisp/textmodes/tildify.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/tildify.el b/lisp/textmodes/tildify.el index c317131d955..d3be75a7cb8 100644 --- a/lisp/textmodes/tildify.el +++ b/lisp/textmodes/tildify.el @@ -222,11 +222,11 @@ This function performs no refilling of the changed text." (if (> (point) (marker-position marker-end)) (setq finish t)) (message - (format "End of environment not found: %s" end-env)) + "End of environment not found: %s" end-env) (setq finish t)))))) ;; No ignored environments, tildify directly (tildify-tildify beg end ask))) - (message (format "%d spaces replaced." tildify-count))) + (message "%d spaces replaced." tildify-count)) ;;;###autoload (defun tildify-buffer () |