summaryrefslogtreecommitdiff
path: root/lisp/hilit-chg.el
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-07-16 12:23:00 +0000
committerPavel Janík <Pavel@Janik.cz>2001-07-16 12:23:00 +0000
commitcafd54559f59b7fa33a3402c449b1191e2e81c76 (patch)
tree0dc682013d7ddbb04a8f03b2ee4ec1bb919067d0 /lisp/hilit-chg.el
parentf22a19c6ad181bd8e8d22a57991472c4b09594c3 (diff)
downloademacs-cafd54559f59b7fa33a3402c449b1191e2e81c76.tar.gz
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/hilit-chg.el')
-rw-r--r--lisp/hilit-chg.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/hilit-chg.el b/lisp/hilit-chg.el
index 5da5d729e62..c5fb972a7ad 100644
--- a/lisp/hilit-chg.el
+++ b/lisp/hilit-chg.el
@@ -853,11 +853,11 @@ changes are made, so \\[highlight-changes-next-change] and
(if (buffer-modified-p buf-a)
(if (y-or-n-p (format "OK to save %s? " file-a))
(save-buffer buf-a)
- (error "Buffer must be saved before comparing with a file.")))
+ (error "Buffer must be saved before comparing with a file")))
(if (and existing-buf (buffer-modified-p buf-b))
(if (y-or-n-p (format "OK to save %s? " file-b))
(save-buffer buf-b)
- (error "Cannot compare with a file in an unsaved buffer.")))
+ (error "Cannot compare with a file in an unsaved buffer")))
(highlight-changes-mode 'active)
(if existing-buf (with-current-buffer buf-b
(highlight-changes-mode 'active)))