aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2013-12-15 18:27:25 +0200
committerEli Zaretskii2013-12-15 18:27:25 +0200
commitdd1fb8cb77da751a2c397f7492750b9ba79214b3 (patch)
tree8b545bcc34a2ad5d7cf6e1f4628d75bd7ace8b3e /src
parent27c1b043848ddf2db6146682fb2479d7da36cd34 (diff)
downloademacs-dd1fb8cb77da751a2c397f7492750b9ba79214b3.tar.gz
emacs-dd1fb8cb77da751a2c397f7492750b9ba79214b3.zip
Fix session GUI startup.
src/frame.h (FRAME_MOUSE_UPDATE): Fix a typo that caused infloop at startup.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/frame.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2372e975895..ccf107e307b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12013-12-15 Eli Zaretskii <eliz@gnu.org>
2
3 * frame.h (FRAME_MOUSE_UPDATE): Fix a typo that caused infloop at
4 startup.
5
12013-12-15 Paul Eggert <eggert@cs.ucla.edu> 62013-12-15 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 * gnutls.c (Fgnutls_boot): Fix typo; "!" applied to a Lisp_Object. 8 * gnutls.c (Fgnutls_boot): Fix typo; "!" applied to a Lisp_Object.
diff --git a/src/frame.h b/src/frame.h
index 91b8ca04903..f9b368fb5ec 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -948,7 +948,7 @@ default_pixels_per_inch_y (void)
948 hlinfo->mouse_face_mouse_y); \ 948 hlinfo->mouse_face_mouse_y); \
949 unblock_input (); \ 949 unblock_input (); \
950 } \ 950 } \
951 } while (true) 951 } while (false)
952 952
953/* Set visibility of frame F. 953/* Set visibility of frame F.
954 We call redisplay_other_windows to make sure the frame gets redisplayed 954 We call redisplay_other_windows to make sure the frame gets redisplayed