X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/a971635315e259c076de020b3676c04d1dcc415e..e2b6daf4193bcfd81d6dc67eeee3d50888710818:/src/xrdb.c diff --git a/src/xrdb.c b/src/xrdb.c index 961f2748b5..fac97e4350 100644 --- a/src/xrdb.c +++ b/src/xrdb.c @@ -1,6 +1,9 @@ /* Deal with the X Resource Manager. Copyright (C) 1990, 1993, 1994, 2000, 2001, 2002, 2003, 2004, - 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. + +Author: Joseph Arceneaux +Created: 4/90 This file is part of GNU Emacs. @@ -17,8 +20,6 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see . */ -/* Written by jla, 4/90 */ - #ifdef emacs #include #endif @@ -692,6 +693,10 @@ x_get_string_resource (rdb, name, class) { XrmValue value; + if (inhibit_x_resources) + /* --quick was passed, so this is a no-op. */ + return NULL; + if (x_get_resource (rdb, name, class, x_rm_string, &value)) return (char *) value.addr;