diff options
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/xsettings.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ad02b0118e5..544e71504d2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-04-30 Jan Djärv <jan.h.d@swipnet.se> + + * xsettings.c: include limits.h and update file comment. + 2010-04-30 Glenn Morris <rgm@gnu.org> * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]: diff --git a/src/xsettings.c b/src/xsettings.c index 4d128f19dd2..49d4d5cc743 100644 --- a/src/xsettings.c +++ b/src/xsettings.c @@ -1,4 +1,4 @@ -/* Functions for handle font changes dynamically. +/* Functions for handle font and other changes dynamically. Copyright (C) 2009, 2010 Free Software Foundation, Inc. @@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #include "config.h" +#include <limits.h> #include <setjmp.h> #include <fcntl.h> #include "lisp.h" |