aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-01-13 08:23:46 +0000
committerRichard M. Stallman2003-01-13 08:23:46 +0000
commit3e8cf2ea923e54194e729dc7ff6c95197c74e7cc (patch)
treee8dd18e172fe138f9681d7170e36bf7098c6b6aa
parent60ab677b331335cd43cc0b245e9e27d4c3ff4ba7 (diff)
downloademacs-3e8cf2ea923e54194e729dc7ff6c95197c74e7cc.tar.gz
emacs-3e8cf2ea923e54194e729dc7ff6c95197c74e7cc.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog26
-rw-r--r--lispref/ChangeLog10
-rw-r--r--src/ChangeLog11
3 files changed, 47 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1fe801ac6d1..d3374dc7c73 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,20 @@
12003-01-13 Richard M. Stallman <rms@gnu.org>
2
3 * apropos.el (apropos-documentation-property): New function.
4 (apropos): Use apropos-documentation-property.
5
6 * files.el (mode-line-process): Mark as risky.
7
8 * help.el (where-is): Catch errors in indirect-function.
9
10 * server.el (server-process-filter): Comment out -eval.
11 Don't switch buffers if inside isearch or minibuffer.
12
13 * progmodes/compile.el (compilation-revert-buffer):
14 If buffer has a file, revert it in the normal way.
15
16 * term/x-win.el: Require fontset conditionally again.
17
12003-01-13 Kim F. Storm <storm@cua.dk> 182003-01-13 Kim F. Storm <storm@cua.dk>
2 19
3 * ido.el (ido-enable-tramp-completion): New defcustom. 20 * ido.el (ido-enable-tramp-completion): New defcustom.
@@ -174,6 +191,8 @@
174 191
1752003-01-05 Richard M. Stallman <rms@gnu.org> 1922003-01-05 Richard M. Stallman <rms@gnu.org>
176 193
194 * obsolete/uncompress.el: Display message that this package is obsolete.
195
177 * isearch.el (isearch-repeat): Error if try to repeat search and 196 * isearch.el (isearch-repeat): Error if try to repeat search and
178 there was no previous search. 197 there was no previous search.
179 198
@@ -191,9 +210,16 @@
191 210
1922003-01-05 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change) 2112003-01-05 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
193 212
213<<<<<<< ChangeLog
214 * mail/sendmail.el (mail-font-lock-keywords):
215 Match multiline In-Reply-To and X-*.
216 * mail/rmail.el (rmail-font-lock-keywords):
217 Match multiline In-Reply-To and X-*.
218=======
194 * mail/sendmail.el (mail-font-lock-keywords): 219 * mail/sendmail.el (mail-font-lock-keywords):
195 * mail/rmail.el (rmail-font-lock-keywords): Match multiline 220 * mail/rmail.el (rmail-font-lock-keywords): Match multiline
196 In-Reply-To and X-*. 221 In-Reply-To and X-*.
222>>>>>>> 1.4713
197 223
1982003-01-05 Mark A. Hershberger <mah@everybody.org> 2242003-01-05 Mark A. Hershberger <mah@everybody.org>
199 225
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index e71cc84a86a..5eb19f363ac 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,13 @@
12003-01-13 Richard M. Stallman <rms@gnu.org>
2
3 * text.texi (Changing Properties): Say string indices are origin-0.
4
5 * positions.texi (Screen Lines) <compute-motion>:
6 Correct order of elts in return value.
7
8 * keymaps.texi (Changing Key Bindings) <define-key>: Mention
9 how to define a default binding.
10
12002-12-07 Markus Rost <rost@math.ohio-state.edu> 112002-12-07 Markus Rost <rost@math.ohio-state.edu>
2 12
3 * loading.texi (Unloading): Fix recent change for load-history. 13 * loading.texi (Unloading): Fix recent change for load-history.
diff --git a/src/ChangeLog b/src/ChangeLog
index 7314d53fc30..ae00961f241 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12003-01-13 Richard M. Stallman <rms@gnu.org>
2
3 * minibuf.c (minibuffer_completion_contents):
4 Error if point is inside prompt.
5
6 * keyboard.c (command_loop_1): Don't redisplay directly
7 if there's a post-command-hook.
8
9 * fileio.c (syms_of_fileio) <directory-sep-char>: Doc fix.
10 (Fdo_auto_save): Add gcpros around Ffile_name_directory.
11
12003-01-12 Kim F. Storm <storm@cua.dk> 122003-01-12 Kim F. Storm <storm@cua.dk>
2 13
3 * process.h (struct Lisp_Process): New member private_vars. 14 * process.h (struct Lisp_Process): New member private_vars.