aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-03-02 22:34:39 +0000
committerKim F. Storm2006-03-02 22:34:39 +0000
commitf79bc642c1722d784819b7f0dffca8738de4f2c6 (patch)
tree5d3855408b768236eaea1998d30087e8a83d1677
parentc07b35ec17a9c2f51ca6b80317aa10c71a0f4899 (diff)
downloademacs-f79bc642c1722d784819b7f0dffca8738de4f2c6.tar.gz
emacs-f79bc642c1722d784819b7f0dffca8738de4f2c6.zip
*** empty log message ***
-rw-r--r--lispref/ChangeLog4
-rw-r--r--src/ChangeLog19
2 files changed, 23 insertions, 0 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 5a08e574b8e..a56517535f1 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12006-03-02 Kim F. Storm <storm@cua.dk>
2
3 * keymaps.texi (Tool Bar): Add tool-bar-border.
4
12006-02-28 Luc Teirlinck <teirllm@auburn.edu> 52006-02-28 Luc Teirlinck <teirllm@auburn.edu>
2 6
3 * loading.texi (Load Suffixes): Rephrase last paragraph. Fix typos. 7 * loading.texi (Load Suffixes): Rephrase last paragraph. Fix typos.
diff --git a/src/ChangeLog b/src/ChangeLog
index 2a9c2dc344c..11fe6f910e4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,22 @@
12006-03-02 Kim F. Storm <storm@cua.dk>
2
3 * frame.h (struct frame): New member n_tool_bar_rows.
4
5 * xdisp.c: Minimize the unpleasent visual impact of the requirement
6 that non-toolkit tool-bars must occupy an integral number of screen
7 lines, by distributing the rows evenly over the tool-bar screen area.
8 (Vtool_bar_border): New variable.
9 (syms_of_xdisp): DEFVAR_LISP it.
10 (display_tool_bar_line): Add HEIGHT arg for desired row height. Make
11 tool-bar row the desired height. Use default face for border below
12 tool-bar.
13 (tool_bar_lines_needed): Add N_ROWS arg. Use it to return number of
14 actual tool-bar rows.
15 (redisplay_tool_bar): Calculate f->n_tool_bar_rows initially.
16 Adjust the height of the tool-bar rows to fill tool-bar screen area.
17 (redisplay_tool_bar): Calculate f->n_tool_bar_rows when tool-bar area
18 is resized.
19
12006-03-01 Luc Teirlinck <teirllm@auburn.edu> 202006-03-01 Luc Teirlinck <teirllm@auburn.edu>
2 21
3 * search.c (Fregexp_quote): Do not precede a literal `]' with two 22 * search.c (Fregexp_quote): Do not precede a literal `]' with two