diff options
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | etc/TODO | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 38 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 3 | ||||
| -rw-r--r-- | lispref/ChangeLog | 21 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
6 files changed, 73 insertions, 4 deletions
| @@ -2459,10 +2459,6 @@ arg is non-nil. | |||
| 2459 | modification times. Magic file name handlers can handle this | 2459 | modification times. Magic file name handlers can handle this |
| 2460 | operation. | 2460 | operation. |
| 2461 | 2461 | ||
| 2462 | ** file-remote-p now returns an identifier for the remote system, | ||
| 2463 | if the file is indeed remote. (Before, the return value was t in | ||
| 2464 | this 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 |
| 2468 | supported on text terminals. | 2464 | supported 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 |
| 3229 | non-nil if it specifies a remote file (one that Emacs accesses using | 3225 | non-nil if it specifies a remote file (one that Emacs accesses using |
| 3230 | its own special methods and not directly through the file system). | 3226 | its own special methods and not directly through the file system). |
| 3227 | The 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 |
| @@ -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 @@ | |||
| 1 | 2004-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 | |||
| 32 | 2004-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 | |||
| 1 | 2004-11-25 Nick Roberts <nickrob@snap.net.nz> | 38 | 2004-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 | ||
| 146 | 2004-11-23 Kim F. Storm <storm@cua.dk> | 184 | 2004-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 @@ | |||
| 1 | 2004-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 | |||
| 1 | 2004-11-21 Jesper Harder <harder@ifa.au.dk> | 22 | 2004-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 @@ | |||
| 1 | 2004-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 | |||
| 1 | 2004-11-24 Kim F. Storm <storm@cua.dk> | 7 | 2004-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): |