* xdisp.c (Ftool_bar_lines_needed): Declare as 'const' if ifdeffed out,
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 11 Sep 2013 10:24:48 +0000 (03:24 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 11 Sep 2013 10:24:48 +0000 (03:24 -0700)
avoiding a GCC warning.

src/ChangeLog
src/xdisp.c

index 83e5dbc..6e527b9 100644 (file)
@@ -1,3 +1,8 @@
+2013-09-11  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * xdisp.c (Ftool_bar_lines_needed): Declare as 'const' if ifdeffed out,
+       avoiding a GCC warning.
+
 2013-09-11  Dmitry Antipov  <dmantipov@yandex.ru>
 
        Ifdef away frame tool bar code when it is not really used.
index 484f951..58316a0 100644 (file)
@@ -11903,6 +11903,10 @@ tool_bar_lines_needed (struct frame *f, int *n_rows)
 
 #endif /* !USE_GTK && !HAVE_NS */
 
+#if defined USE_GTK || defined HAVE_NS
+EXFUN (Ftool_bar_lines_needed, 1) ATTRIBUTE_CONST;
+#endif
+
 DEFUN ("tool-bar-lines-needed", Ftool_bar_lines_needed, Stool_bar_lines_needed,
        0, 1, 0,
        doc: /* Return the number of lines occupied by the tool bar of FRAME.