aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog21
-rw-r--r--lisp/smerge-mode.el3
2 files changed, 14 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ace76ab1d36..d4814f9228c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12001-05-10 Stefan Monnier <monnier@cs.yale.edu>
2
3 * smerge-mode.el (smerge-mode): Force font-lock-multiline to t.
4
12001-05-10 Eli Zaretskii <eliz@is.elta.co.il> 52001-05-10 Eli Zaretskii <eliz@is.elta.co.il>
2 6
3 * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to 7 * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
@@ -6,13 +10,12 @@
62001-05-10 Gerd Moellmann <gerd@gnu.org> 102001-05-10 Gerd Moellmann <gerd@gnu.org>
7 11
8 * net/browse-url.el (browse-url-filename-alist): Allow UNC file 12 * net/browse-url.el (browse-url-filename-alist): Allow UNC file
9 names for MS-Windows and MS-DOS. From Dan Holmsand 13 names for MS-Windows and MS-DOS. From Dan Holmsand <dan@eyebee.com>.
10 <dan@eyebee.com>.
11 14
122001-05-09 John Wiegley <johnw@gnu.org> 152001-05-09 John Wiegley <johnw@gnu.org>
13 16
14 * eshell/esh-util.el (eshell-convert-numeric-arguments): Annotated 17 * eshell/esh-util.el (eshell-convert-numeric-arguments):
15 the documentation string to tell users about 18 Annotated the documentation string to tell users about
16 `eshell-no-numeric-conversions'. 19 `eshell-no-numeric-conversions'.
17 20
18 * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric 21 * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric
@@ -30,7 +33,7 @@
30 eshell/which, eshell/addpath. 33 eshell/which, eshell/addpath.
31 34
322001-05-09 John Wiegley <johnw@gnu.org> 352001-05-09 John Wiegley <johnw@gnu.org>
33 36
34 * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is 37 * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is
35 encountered as an argument, don't convert it right away, but tag 38 encountered as an argument, don't convert it right away, but tag
36 the first character of the string with the text properties 39 the first character of the string with the text properties
@@ -52,14 +55,14 @@
52 (eshell-proc-initialize): Don't bind keys for 55 (eshell-proc-initialize): Don't bind keys for
53 `eshell-stop-process' or `eshell-continue-process'. 56 `eshell-stop-process' or `eshell-continue-process'.
54 57
55 * eshell/em-unix.el (eshell-shuffle-files): Apply 58 * eshell/em-unix.el (eshell-shuffle-files):
56 `directory-file-name' before calling `file-name-directory'. 59 Apply `directory-file-name' before calling `file-name-directory'.
57 60
58 * eshell/em-hist.el (eshell-add-to-history): Reference to 61 * eshell/em-hist.el (eshell-add-to-history): Reference to
59 `eshell-history-ring' needed to be `eshell-history-index'. 62 `eshell-history-ring' needed to be `eshell-history-index'.
60 63
61 * calendar/timeclock.el (timeclock-find-discrep): Initialize 64 * calendar/timeclock.el (timeclock-find-discrep):
62 `elapsed' to 0. 65 Initialize `elapsed' to 0.
63 (timeclock-find-discrep): Set `timeclock-last-event-workday' if 66 (timeclock-find-discrep): Set `timeclock-last-event-workday' if
64 it's still nil. 67 it's still nil.
65 68
diff --git a/lisp/smerge-mode.el b/lisp/smerge-mode.el
index 538ff11519a..5c8af81b492 100644
--- a/lisp/smerge-mode.el
+++ b/lisp/smerge-mode.el
@@ -4,7 +4,7 @@
4 4
5;; Author: Stefan Monnier <monnier@cs.yale.edu> 5;; Author: Stefan Monnier <monnier@cs.yale.edu>
6;; Keywords: merge diff3 cvs conflict 6;; Keywords: merge diff3 cvs conflict
7;; Revision: $Id: smerge-mode.el,v 1.11 2001/01/25 15:36:32 monnier Exp $ 7;; Revision: $Id: smerge-mode.el,v 1.12 2001/03/07 00:16:29 monnier Exp $
8 8
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
10 10
@@ -466,6 +466,7 @@ The point is moved to the end of the conflict."
466\\{smerge-mode-map}" 466\\{smerge-mode-map}"
467 nil " SMerge" nil 467 nil " SMerge" nil
468 (when font-lock-mode 468 (when font-lock-mode
469 (set (make-local-variable 'font-lock-multiline) t)
469 (save-excursion 470 (save-excursion
470 (if smerge-mode 471 (if smerge-mode
471 (font-lock-add-keywords nil smerge-font-lock-keywords 'append) 472 (font-lock-add-keywords nil smerge-font-lock-keywords 'append)