aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn2002-05-20 08:06:16 +0000
committerKen Raeburn2002-05-20 08:06:16 +0000
commita0268ff06bce9a14238eda3126d53807a6153eac (patch)
tree86c069ff4af4d43a9393d73c4c8859191727ee03 /src
parentd4c83cae08d9bfee1e97e4a196d54e11ebe1eaeb (diff)
downloademacs-a0268ff06bce9a14238eda3126d53807a6153eac.tar.gz
emacs-a0268ff06bce9a14238eda3126d53807a6153eac.zip
* macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
of XSYMBOL and name field.
Diffstat (limited to 'src')
-rw-r--r--src/macfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macfns.c b/src/macfns.c
index 159b93971fa..9571c53a760 100644
--- a/src/macfns.c
+++ b/src/macfns.c
@@ -4839,7 +4839,7 @@ parse_image_spec (spec, keywords, nkeywords, type)
4839 4839
4840 /* Find key in KEYWORDS. Error if not found. */ 4840 /* Find key in KEYWORDS. Error if not found. */
4841 for (i = 0; i < nkeywords; ++i) 4841 for (i = 0; i < nkeywords; ++i)
4842 if (strcmp (keywords[i].name, XSYMBOL (key)->name->data) == 0) 4842 if (strcmp (keywords[i].name, XSTRING (SYMBOL_NAME (key))->data) == 0)
4843 break; 4843 break;
4844 4844
4845 if (i == nkeywords) 4845 if (i == nkeywords)