aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/data.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/data.c b/src/data.c
index 0b46fceb298..f715be56cee 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1913,13 +1913,18 @@ function chain of symbols. */)
1913{ 1913{
1914 Lisp_Object result; 1914 Lisp_Object result;
1915 1915
1916 result = indirect_function (object); 1916 /* Optimize for no indirection. */
1917 result = object;
1918 if (SYMBOLP (result) && !EQ (result, Qunbound)
1919 && (result = XSYMBOL (result)->function, SYMBOLP (result)))
1920 result = indirect_function (result);
1921 if (!EQ (result, Qunbound))
1922 return result;
1917 1923
1918 if (EQ (result, Qunbound)) 1924 if (NILP (noerror))
1919 return (NILP (noerror) 1925 Fsignal (Qvoid_function, Fcons (object, Qnil));
1920 ? Fsignal (Qvoid_function, Fcons (object, Qnil)) 1926
1921 : Qnil); 1927 return Qnil;
1922 return result;
1923} 1928}
1924 1929
1925/* Extract and set vector and string elements */ 1930/* Extract and set vector and string elements */