aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2003-11-23 21:47:50 +0000
committerKim F. Storm2003-11-23 21:47:50 +0000
commit63dc7c6bf84dba246df09f50088594df79996ee4 (patch)
tree818a81a9650f31446080559957f7047bbbbaa887
parente661376d0b1e44164abc1ed0e46a909ffdd39b3e (diff)
downloademacs-63dc7c6bf84dba246df09f50088594df79996ee4.tar.gz
emacs-63dc7c6bf84dba246df09f50088594df79996ee4.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog46
-rw-r--r--src/ChangeLog6
2 files changed, 52 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e287cfdf9cd..37be168ba7b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,51 @@
12003-11-23 Kim F. Storm <storm@cua.dk> 12003-11-23 Kim F. Storm <storm@cua.dk>
2 2
3 * progmodes/compile.el (grep-command, grep-use-null-device)
4 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
5 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
6 (grep-regexp-alist, grep-program, find-program)
7 (grep-find-use-xargs, grep-history, grep-find-history)
8 (grep-process-setup, grep-compute-defaults)
9 (grep-default-command, grep, grep-tag-default, grep-find)
10 (grep-expand-command-macros, grep-tree-last-regexp)
11 (grep-tree-last-files, grep-tree): Move grep variables, functions
12 and commands to new file grep.el.
13 (compilation-mode-map): Remove grep commands from Compile sub-menu.
14 (compilation-process-setup-function): Doc fix.
15 (compilation-highlight-regexp, compilation-highlight-overlay): New
16 defvars used for highlighting current compile error in source buffer.
17 (compile-internal): New optional args HIGHLIGHT-REGEXP and
18 LOCAL-MAP which overrides compilation-highlight-regexp and
19 compilation-mode-map for this compilation.
20 Delay calling compilation-set-window-height until after running
21 compilation-process-setup-function so it can buffer-local override
22 compilation-window-height.
23 Check buffer-local value of compilation-scroll-output.
24 (compilation-set-window-height): Use buffer-local value of
25 compilation-window-height.
26 (compilation-revert-buffer): Don't pass (undefined)
27 preserve-modes arg to revert-buffer.
28 (next-error-no-select, previous-error-no-select): New commands.
29 (compilation-goto-locus): Temporarily highlight current match in
30 source buffer using compilation-highlight-regexp.
31
32 * progmodes/grep.el: New file with grep code from compile.el.
33 (grep): New defcustom group.
34 (grep-window-height): New defcustom, like compilation-window-height.
35 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
36 (grep-scroll-output): New defcustom, like compilation-scroll-output.
37 (grep-command, grep-use-null-device, grep-find-command)
38 (grep-tree-files-aliases, grep-tree-ignore-case)
39 (grep-tree-ignore-CVS-directories): Move to grep custom group.
40 (grep-setup-hook): New hook variable.
41 (grep-mode-map): New keymap for grep commands. Add Grep menu.
42 (grep-use-compilation-buffer): New defcustom.
43 (grep-last-buffer): New defvar, override compilation-last-buffer.
44 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
45 Call compile-internal with args highlight-regexp and grep-mode-map.
46
472003-11-23 Kim F. Storm <storm@cua.dk>
48
3 * subr.el (event-start, event-end): Doc fix. 49 * subr.el (event-start, event-end): Doc fix.
4 (posn-window, posn-x-y, posn-timestamp): Simplify doc. 50 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
5 (posn-area, posn-actual-col-row, posn-object): New defuns. 51 (posn-area, posn-actual-col-row, posn-object): New defuns.
diff --git a/src/ChangeLog b/src/ChangeLog
index fac85f28b3d..6b6a85d7cdd 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12003-11-23 Kim F. Storm <storm@cua.dk> 12003-11-23 Kim F. Storm <storm@cua.dk>
2 2
3 * window.c (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
4 (window_loop): Handle REDISPLAY_BUFFER_WINDOWS.
5 (Fforce_window_update): New defun.
6 (syms_of_window): Defsubr it.
7 (Fset_window_margins, Fset_window_fringes): Doc fix.
8
3 * print.c (Fredirect_debugging_output): New defun. 9 * print.c (Fredirect_debugging_output): New defun.
4 (syms_of_print): Defsubr it. 10 (syms_of_print): Defsubr it.
5 11