aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS5
-rw-r--r--etc/TODO4
-rw-r--r--lisp/ChangeLog38
-rw-r--r--lisp/progmodes/compile.el3
-rw-r--r--lispref/ChangeLog21
-rw-r--r--src/ChangeLog6
6 files changed, 73 insertions, 4 deletions
diff --git a/etc/NEWS b/etc/NEWS
index e594743f354..92ef1896bce 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2459,10 +2459,6 @@ arg is non-nil.
2459modification times. Magic file name handlers can handle this 2459modification times. Magic file name handlers can handle this
2460operation. 2460operation.
2461 2461
2462** file-remote-p now returns an identifier for the remote system,
2463if the file is indeed remote. (Before, the return value was t in
2464this case.)
2465
2466+++ 2462+++
2467** The display space :width and :align-to text properties are now 2463** The display space :width and :align-to text properties are now
2468supported on text terminals. 2464supported on text terminals.
@@ -3228,6 +3224,7 @@ will only show directories.
3228** The new function `file-remote-p' tests a file name and returns 3224** The new function `file-remote-p' tests a file name and returns
3229non-nil if it specifies a remote file (one that Emacs accesses using 3225non-nil if it specifies a remote file (one that Emacs accesses using
3230its own special methods and not directly through the file system). 3226its own special methods and not directly through the file system).
3227The value in that case is an identifier for the remote file system.
3231 3228
3232--- 3229---
3233** When a Lisp file uses CL functions at run-time, compiling the file 3230** When a Lisp file uses CL functions at run-time, compiling the file
diff --git a/etc/TODO b/etc/TODO
index 21a7c7d8dc0..e9bfbb01009 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -150,6 +150,10 @@ to the FSF.
150** Implement popular parts of the rest of the CL functions as compiler 150** Implement popular parts of the rest of the CL functions as compiler
151 macros in cl-macs. 151 macros in cl-macs.
152 152
153** Make compiler warnings about functions that might be undefined at run time
154 smarter, so that they know which files are required by the file being
155 compiled and don't warn about functions defined in them.
156
153** Highlight rectangles (`mouse-track-rectangle-p' in XEmacs). Already in CUA, 157** Highlight rectangles (`mouse-track-rectangle-p' in XEmacs). Already in CUA,
154 but it's a valuable feature worth making more general. 158 but it's a valuable feature worth making more general.
155 159
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fadb854f739..e7117250422 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,40 @@
12004-11-24 Richard M. Stallman <rms@gnu.org>
2
3 * textmodes/ispell.el (ispell-check-version):
4 If default-directory is nonexistent, use home dir.
5
6 * progmodes/grep.el (grep-regexp-alist):
7 Don't match parens around line numbers.
8
9 * progmodes/cperl-mode.el (cperl-indent-region)
10 (cperl-imenu--create-perl-index, cperl-xsub-scan):
11 Don't print progress messages.
12
13 * progmodes/compile.el (compilation-mode-map):
14 Don't inherit from compilation-minor-mode-map;
15 copy its bindings instead. But the menu bar Compile
16 entry now does inherit from compilation-menu-map.
17
18 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
19 Use with-no-warnings around compiler-macroexpand.
20
21 * imenu.el: Don't always require newcomment.
22 (imenu--generic-function): Call comment-normalize-vars
23 if we have a comment syntax.
24 Exit the loop if REGEXP matches the null string.
25 Test comment-start as well as comment-start-skip
26 when deciding whether to check for comments.
27
28 * tooltip.el (tooltip-mode): Doc fix.
29
30 * term.el (term-escape-char, term-mode): Doc fixes.
31
322004-11-24 Dave Love <fx@gnu.org>
33
34 * progmodes/python.el (python-font-lock-syntactic-keywords):
35 Check for escapes in the regexp.
36 (python-quote-syntax): Don't do it here.
37
12004-11-25 Nick Roberts <nickrob@snap.net.nz> 382004-11-25 Nick Roberts <nickrob@snap.net.nz>
2 39
3 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map) 40 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
@@ -143,6 +180,7 @@
143 * mail/emacsbug.el (report-emacs-bug): Catch error that x-server-vendor 180 * mail/emacsbug.el (report-emacs-bug): Catch error that x-server-vendor
144 and x-server-version may throw. 181 and x-server-version may throw.
145 182
183>>>>>>> 1.6662
1462004-11-23 Kim F. Storm <storm@cua.dk> 1842004-11-23 Kim F. Storm <storm@cua.dk>
147 185
148 * subr.el (substitute-key-definition-key): Optimize. 186 * subr.el (substitute-key-definition-key): Optimize.
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 17ea9277518..f2750ec8ff4 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -1080,6 +1080,9 @@ exited abnormally with code %d\n"
1080 1080
1081(defvar compilation-mode-map 1081(defvar compilation-mode-map
1082 (let ((map (make-sparse-keymap))) 1082 (let ((map (make-sparse-keymap)))
1083 ;; Don't inherit from compilation-minor-mode-map,
1084 ;; because that introduces a menu bar item we don't want.
1085 ;; That confuses C-down-mouse-3.
1083 (define-key map [mouse-2] 'compile-goto-error) 1086 (define-key map [mouse-2] 'compile-goto-error)
1084 (define-key map "\C-c\C-c" 'compile-goto-error) 1087 (define-key map "\C-c\C-c" 'compile-goto-error)
1085 (define-key map "\C-m" 'compile-goto-error) 1088 (define-key map "\C-m" 'compile-goto-error)
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 5bfe3793e73..1047855cebd 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,24 @@
12004-11-24 Richard M. Stallman <rms@gnu.org>
2
3 * processes.texi (Synchronous Processes): Grammar fix.
4
5 * numbers.texi (Comparison of Numbers): Add eql.
6
7 * locals.texi (Standard Buffer-Local Variables): Add many vars.
8
9 * intro.texi (Printing Notation): Fix previous change.
10
11 * display.texi (Customizing Bitmaps): Move indicate-buffer-boundaries
12 and default-indicate-buffer-boundaries from here.
13 (Usual Display): To here.
14 (Scroll Bars): Add scroll-bar-mode and scroll-bar-width.
15 (Usual Display): Move tab-width up.
16
17 * customize.texi (Variable Definitions): Replace
18 show-paren-mode example with tooltip-mode.
19 (Simple Types, Composite Types, Defining New Types):
20 Minor cleanups.
21
12004-11-21 Jesper Harder <harder@ifa.au.dk> 222004-11-21 Jesper Harder <harder@ifa.au.dk>
2 23
3 * processes.texi (Synchronous Processes, Output from Processes): 24 * processes.texi (Synchronous Processes, Output from Processes):
diff --git a/src/ChangeLog b/src/ChangeLog
index 83ccf06ea00..1ea2198c171 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12004-11-24 Richard M. Stallman <rms@gnu.org>
2
3 * coding.c (run_pre_post_conversion_on_str): Bind Qinhibit_read_only.
4
5 * buffer.c (syms_of_buffer) <indicate-buffer-boundaries>: Doc fix.
6
12004-11-24 Kim F. Storm <storm@cua.dk> 72004-11-24 Kim F. Storm <storm@cua.dk>
2 8
3 * xdisp.c (move_it_in_display_line_to, display_line): 9 * xdisp.c (move_it_in_display_line_to, display_line):