emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117575: * dispextern.h, xdisp.c (hourglass_shown_p,


From: Paul Eggert
Subject: [Emacs-diffs] trunk r117575: * dispextern.h, xdisp.c (hourglass_shown_p, hourglass_atimer):
Date: Fri, 25 Jul 2014 21:51:34 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117575
revision-id: address@hidden
parent: address@hidden
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Fri 2014-07-25 14:51:29 -0700
message:
  * dispextern.h, xdisp.c (hourglass_shown_p, hourglass_atimer):
  
  Now static.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/dispextern.h               
dispextern.h-20091113204419-o5vbwnq5f7feedwu-218
  src/xdisp.c                    xdisp.c-20091113204419-o5vbwnq5f7feedwu-240
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-07-25 17:14:01 +0000
+++ b/src/ChangeLog     2014-07-25 21:51:29 +0000
@@ -1,3 +1,8 @@
+2014-07-25  Paul Eggert  <address@hidden>
+
+       * dispextern.h, xdisp.c (hourglass_shown_p, hourglass_atimer):
+       Now static.
+
 2014-07-26  Dmitry Antipov  <address@hidden>
 
        * atimer.c (set_alarm) [HAVE_ITIMERSPEC]: Use TIMER_ABSTIME

=== modified file 'src/dispextern.h'
--- a/src/dispextern.h  2014-07-25 06:01:39 +0000
+++ b/src/dispextern.h  2014-07-25 21:51:29 +0000
@@ -1719,7 +1719,7 @@
 #ifdef HAVE_XFT
   /* Extra member that a font-driver uses privately.  */
   void *extra;
-#endif  
+#endif
 };
 
 
@@ -3397,10 +3397,6 @@
 
 extern void start_hourglass (void);
 extern void cancel_hourglass (void);
-extern bool hourglass_shown_p;
-/* If non-null, an asynchronous timer that, when it expires, displays
-   an hourglass cursor on all frames.  */
-extern struct atimer *hourglass_atimer;
 
 /* Returns the background color of IMG, calculating one heuristically if
    necessary.  If non-zero, XIMG is an existing XImage object to use for

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2014-07-25 06:01:39 +0000
+++ b/src/xdisp.c       2014-07-25 21:51:29 +0000
@@ -816,11 +816,11 @@
 #ifdef HAVE_WINDOW_SYSTEM
 
 /* Non-zero means an hourglass cursor is currently shown.  */
-bool hourglass_shown_p;
+static bool hourglass_shown_p;
 
 /* If non-null, an asynchronous timer that, when it expires, displays
    an hourglass cursor on all frames.  */
-struct atimer *hourglass_atimer;
+static struct atimer *hourglass_atimer;
 
 #endif /* HAVE_WINDOW_SYSTEM */
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]