aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn2002-05-20 08:05:37 +0000
committerKen Raeburn2002-05-20 08:05:37 +0000
commit29c6805db2051f7696ec1423d0a6a9893d0fdf72 (patch)
treeab0ca140bd779efafd698f97d097c33bedffacb5 /src
parent6a5161bbd18c66f625cbaf4e41b2f8466a7ddb52 (diff)
downloademacs-29c6805db2051f7696ec1423d0a6a9893d0fdf72.tar.gz
emacs-29c6805db2051f7696ec1423d0a6a9893d0fdf72.zip
* eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
XSYMBOL and name field.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index 7c63a2db4e1..0acd7325a85 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1910,7 +1910,7 @@ do_autoload (fundef, funname)
1910 of what files are preloaded and when. */ 1910 of what files are preloaded and when. */
1911 if (! NILP (Vpurify_flag)) 1911 if (! NILP (Vpurify_flag))
1912 error ("Attempt to autoload %s while preparing to dump", 1912 error ("Attempt to autoload %s while preparing to dump",
1913 XSYMBOL (funname)->name->data); 1913 XSTRING (SYMBOL_NAME (funname))->data);
1914 1914
1915 fun = funname; 1915 fun = funname;
1916 CHECK_SYMBOL (funname); 1916 CHECK_SYMBOL (funname);
@@ -1949,7 +1949,7 @@ do_autoload (fundef, funname)
1949 1949
1950 if (!NILP (Fequal (fun, fundef))) 1950 if (!NILP (Fequal (fun, fundef)))
1951 error ("Autoloading failed to define function %s", 1951 error ("Autoloading failed to define function %s",
1952 XSYMBOL (funname)->name->data); 1952 XSTRING (SYMBOL_NAME (funname))->data);
1953 UNGCPRO; 1953 UNGCPRO;
1954} 1954}
1955 1955