aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-06-25 11:21:00 -0700
committerGlenn Morris2011-06-25 11:21:00 -0700
commit11fdef7d0cf3ef1ce30d1cd09ca9ca9a2b099d20 (patch)
tree4359edf5c3e99c0abcf9eff028a7a2609f483745
parent3794a2d3a43433c27f65c902bfdc21479d7d309f (diff)
parentc9e799dbb100c5161f7a485452d29f554d95e6c7 (diff)
downloademacs-11fdef7d0cf3ef1ce30d1cd09ca9ca9a2b099d20.tar.gz
emacs-11fdef7d0cf3ef1ce30d1cd09ca9ca9a2b099d20.zip
Merge from emacs-23; up to 2010-06-15T03:34:12Z!rgm@gnu.org.
-rw-r--r--doc/lispref/ChangeLog6
-rw-r--r--doc/lispref/display.texi6
-rw-r--r--doc/lispref/keymaps.texi14
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/net/ange-ftp.el1
-rw-r--r--src/ChangeLog5
-rw-r--r--src/dispnew.c1
7 files changed, 30 insertions, 10 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index b6b02686caf..7946e4b91ff 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,9 @@
12011-06-25 Chong Yidong <cyd@stupidchicken.com>
2
3 * keymaps.texi (Searching Keymaps):
4 * display.texi (Overlay Properties): Fix errors in 2011-05-29
5 change. Suggested by Johan Bockgård.
6
12011-06-15 Chong Yidong <cyd@stupidchicken.com> 72011-06-15 Chong Yidong <cyd@stupidchicken.com>
2 8
3 * text.texi (Special Properties): Clarify role of font-lock-face. 9 * text.texi (Special Properties): Clarify role of font-lock-face.
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 199a20cc2cd..069b3c91d7b 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -1441,9 +1441,9 @@ specify a particular attribute for certain text. @xref{Face
1441Attributes}. 1441Attributes}.
1442 1442
1443@item 1443@item
1444A cons cell, either of the form @code{(fg-color . @var{color-name})} 1444A cons cell, of the form @code{(foreground-color . @var{color-name})}
1445or @code{(bg-color . @var{color-name})}. These elements specify just 1445or @code{(background-color . @var{color-name})}. These elements
1446the foreground color or just the background color. 1446specify just the foreground color or just the background color.
1447 1447
1448@code{(foreground-color . @var{color-name})} has the same effect as 1448@code{(foreground-color . @var{color-name})} has the same effect as
1449@code{(:foreground @var{color-name})}; likewise for the background. 1449@code{(:foreground @var{color-name})}; likewise for the background.
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi
index d55cb299771..cf1db5b7fce 100644
--- a/doc/lispref/keymaps.texi
+++ b/doc/lispref/keymaps.texi
@@ -723,13 +723,13 @@ them:
723 (@var{find-in} overriding-terminal-local-map)) 723 (@var{find-in} overriding-terminal-local-map))
724 (overriding-local-map 724 (overriding-local-map
725 (@var{find-in} overriding-local-map)) 725 (@var{find-in} overriding-local-map))
726 (or (@var{find-in} (get-char-property (point) 'keymap)) 726 ((or (@var{find-in} (get-char-property (point) 'keymap))
727 (@var{find-in-any} emulation-mode-map-alists) 727 (@var{find-in-any} emulation-mode-map-alists)
728 (@var{find-in-any} minor-mode-overriding-map-alist) 728 (@var{find-in-any} minor-mode-overriding-map-alist)
729 (@var{find-in-any} minor-mode-map-alist) 729 (@var{find-in-any} minor-mode-map-alist)
730 (if (get-text-property (point) 'local-map) 730 (if (get-text-property (point) 'local-map)
731 (@var{find-in} (get-char-property (point) 'local-map)) 731 (@var{find-in} (get-char-property (point) 'local-map))
732 (@var{find-in} (current-local-map))))) 732 (@var{find-in} (current-local-map))))))
733 (@var{find-in} (current-global-map))) 733 (@var{find-in} (current-global-map)))
734@end lisp 734@end lisp
735 735
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 39a428a5a28..2a8188f8f5e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12011-06-25 Eli Zaretskii <eliz@gnu.org>
2
3 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
4 buffer-file-type before setting its value, to avoid disastrous
5 global effects on decoding files for DOS/Windows systems.
6 (Bug#8780)
7
12011-06-25 Juanma Barranquero <lekktu@gmail.com> 82011-06-25 Juanma Barranquero <lekktu@gmail.com>
2 9
3 * allout.el (allout-unload-function): Pass -1 to `allout-mode'. 10 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el
index 0493ead7bbf..1282f86d503 100644
--- a/lisp/net/ange-ftp.el
+++ b/lisp/net/ange-ftp.el
@@ -3278,6 +3278,7 @@ system TYPE.")
3278 (name (ange-ftp-quote-string (nth 2 parsed))) 3278 (name (ange-ftp-quote-string (nth 2 parsed)))
3279 (temp (ange-ftp-make-tmp-name host)) 3279 (temp (ange-ftp-make-tmp-name host))
3280 (binary (ange-ftp-binary-file filename)) 3280 (binary (ange-ftp-binary-file filename))
3281 (buffer-file-type buffer-file-type)
3281 (abbr (ange-ftp-abbreviate-filename filename)) 3282 (abbr (ange-ftp-abbreviate-filename filename))
3282 (coding-system-used last-coding-system-used) 3283 (coding-system-used last-coding-system-used)
3283 size) 3284 size)
diff --git a/src/ChangeLog b/src/ChangeLog
index b8b3d2a1a9c..c431eb1e7b2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * dispnew.c (scrolling_window): Before scrolling, turn off a
4 mouse-highlight in the window being scrolled.
5
12011-06-24 Juanma Barranquero <lekktu@gmail.com> 62011-06-24 Juanma Barranquero <lekktu@gmail.com>
2 7
3 Move DEFSYM to lisp.h and use everywhere. 8 Move DEFSYM to lisp.h and use everywhere.
diff --git a/src/dispnew.c b/src/dispnew.c
index c33442d5048..8691c921853 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -4543,6 +4543,7 @@ scrolling_window (struct window *w, int header_line_p)
4543 /* Copy on the display. */ 4543 /* Copy on the display. */
4544 if (r->current_y != r->desired_y) 4544 if (r->current_y != r->desired_y)
4545 { 4545 {
4546 rif->clear_window_mouse_face (w);
4546 rif->scroll_run_hook (w, r); 4547 rif->scroll_run_hook (w, r);
4547 4548
4548 /* Invalidate runs that copy from where we copied to. */ 4549 /* Invalidate runs that copy from where we copied to. */