aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/window.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8af6bafd903..8bc84675c92 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -4,6 +4,10 @@
4 4
5 * xftfont.c (xftfont_open): Likewise. 5 * xftfont.c (xftfont_open): Likewise.
6 6
72011-02-01 Andreas Schwab <schwab@linux-m68k.org>
8
9 * window.c (Fselect_window): Add missing return value.
10
72011-01-29 Andreas Schwab <schwab@linux-m68k.org> 112011-01-29 Andreas Schwab <schwab@linux-m68k.org>
8 12
9 * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead 13 * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead
diff --git a/src/window.c b/src/window.c
index c81a20610f1..12775ffa7d4 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3682,7 +3682,7 @@ selected window before each command. */)
3682 (window, norecord) 3682 (window, norecord)
3683 register Lisp_Object window, norecord; 3683 register Lisp_Object window, norecord;
3684{ 3684{
3685 select_window (window, norecord, 0); 3685 return select_window (window, norecord, 0);
3686} 3686}
3687 3687
3688static Lisp_Object 3688static Lisp_Object