1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-17 09:55:58 +00:00

(x_load_resources) [USE_MOTIF]: Remove extraneous arg

to sprintf.
This commit is contained in:
Gerd Moellmann 2001-03-12 12:49:02 +00:00
parent 1790abf425
commit b6a15240ff
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-03-12 Gerd Moellmann <gerd@gnu.org>
* xrdb.c (x_load_resources) [USE_MOTIF]: Remove extraneous arg
to sprintf.
2001-03-09 Gerd Moellmann <gerd@gnu.org>
* dispextern.h (string_buffer_position): Add prototype.

View File

@ -1,5 +1,5 @@
/* Deal with the X Resource Manager.
Copyright (C) 1990, 1993, 1994 Free Software Foundation.
Copyright (C) 1990, 1993, 1994, 2000, 2001 Free Software Foundation.
This file is part of GNU Emacs.
@ -548,7 +548,7 @@ x_load_resources (display, xrm_string, myname, myclass)
XrmPutLineResource (&rdb, line);
sprintf (line, "%s*menu*background: grey75", myclass);
XrmPutLineResource (&rdb, line);
sprintf (line, "%s*menubar*background: grey75", myclass, helv);
sprintf (line, "%s*menubar*background: grey75", myclass);
XrmPutLineResource (&rdb, line);
sprintf (line, "%s*verticalScrollBar.background: grey75", myclass);
XrmPutLineResource (&rdb, line);