aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRomain Francoise2006-01-21 18:04:09 +0000
committerRomain Francoise2006-01-21 18:04:09 +0000
commitcde0a40c5689576ee64c9d157fbc4fa4962f436f (patch)
tree17d893430040d5f3e42635f2ef47e3336c3275c8 /src
parent44eca3f41c93103d50d129de3bddacce31d9d9ec (diff)
downloademacs-cde0a40c5689576ee64c9d157fbc4fa4962f436f.tar.gz
emacs-cde0a40c5689576ee64c9d157fbc4fa4962f436f.zip
(get_window_cursor_type): Fix last change.
Update copyright year.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/xdisp.c8
2 files changed, 10 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a67b97bc370..9975159fe75 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12006-01-21 Romain Francoise <romain@orebokech.com>
2
3 * xdisp.c (get_window_cursor_type): Fix last change.
4 Update copyright year.
5
12006-01-20 Eli Zaretskii <eliz@gnu.org> 62006-01-20 Eli Zaretskii <eliz@gnu.org>
2 7
3 * lread.c (Fload): Don't leak the file descriptor returned by 8 * lread.c (Fload): Don't leak the file descriptor returned by
@@ -8,7 +13,7 @@
8 (sys_dup): Protect against new_fd larger than fd_info[] can handle. 13 (sys_dup): Protect against new_fd larger than fd_info[] can handle.
9 (sys_read): If FD is outside [0..MAXDESC) limits, pass it directly 14 (sys_read): If FD is outside [0..MAXDESC) limits, pass it directly
10 to _read. 15 to _read.
11 (sys_write): If FD is outside [0..MAXDESC) limits, pass it 16 (sys_write): If FD is outside [0..MAXDESC) limits, pass it
12 directly to _write. 17 directly to _write.
13 18
14 * .gdbinit: Don't dereference Vsystem_type's Lisp_Symbol pointer 19 * .gdbinit: Don't dereference Vsystem_type's Lisp_Symbol pointer
diff --git a/src/xdisp.c b/src/xdisp.c
index e242762dd3e..a6632ddedf5 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -1,7 +1,7 @@
1/* Display generation from window structure and buffer text. 1/* Display generation from window structure and buffer text.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995,
3 1997, 1998, 1999, 2000, 2001, 2002, 2003, 3 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 2004, 2005 Free Software Foundation, Inc. 4 2004, 2005, 2006 Free Software Foundation, Inc.
5 5
6This file is part of GNU Emacs. 6This file is part of GNU Emacs.
7 7
@@ -20779,10 +20779,10 @@ get_window_cursor_type (w, glyph, width, active_cursor)
20779 } 20779 }
20780 else 20780 else
20781 return get_specified_cursor_type (b->cursor_type, width); 20781 return get_specified_cursor_type (b->cursor_type, width);
20782
20783 *active_cursor = 0;
20784 non_selected = 1;
20785 } 20782 }
20783
20784 *active_cursor = 0;
20785 non_selected = 1;
20786 } 20786 }
20787 20787
20788 /* Nonselected window or nonselected frame. */ 20788 /* Nonselected window or nonselected frame. */