aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Raeburn2002-05-20 08:06:52 +0000
committerKen Raeburn2002-05-20 08:06:52 +0000
commit0b7231c4f3e857740a002ea1bb403e7ae782b354 (patch)
tree05dd0ea1d1d3e28b88b53882378f62c06ae8c103
parentcce200a75bc8bd6dbd7f7f91231286bd854ef497 (diff)
downloademacs-0b7231c4f3e857740a002ea1bb403e7ae782b354.tar.gz
emacs-0b7231c4f3e857740a002ea1bb403e7ae782b354.zip
* xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
of XSYMBOL and name field.
-rw-r--r--src/xfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 7bf02c286a3..1e2cd65863a 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -5664,7 +5664,7 @@ parse_image_spec (spec, keywords, nkeywords, type)
5664 5664
5665 /* Find key in KEYWORDS. Error if not found. */ 5665 /* Find key in KEYWORDS. Error if not found. */
5666 for (i = 0; i < nkeywords; ++i) 5666 for (i = 0; i < nkeywords; ++i)
5667 if (strcmp (keywords[i].name, XSYMBOL (key)->name->data) == 0) 5667 if (strcmp (keywords[i].name, XSTRING (SYMBOL_NAME (key))->data) == 0)
5668 break; 5668 break;
5669 5669
5670 if (i == nkeywords) 5670 if (i == nkeywords)