diff options
author | Jim Blandy <jimb@redhat.com> | 1992-12-06 22:13:53 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-12-06 22:13:53 +0000 |
commit | a2932990245eaa83f4962fd32924cd5087372f0d (patch) | |
tree | fa7e571cde8d2f8dc808107a02d3b2ffbacd02df /src | |
parent | 0c22fbcab46917e98189e0f4ab8907b3f236ee6c (diff) | |
download | emacs-a2932990245eaa83f4962fd32924cd5087372f0d.tar.gz emacs-a2932990245eaa83f4962fd32924cd5087372f0d.tar.bz2 emacs-a2932990245eaa83f4962fd32924cd5087372f0d.zip |
src/ * data.c (indirect_function): Delete unused argument ERROR.
Diffstat (limited to 'src')
-rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 70fb084fc97..3a19314873c 100644 --- a/src/data.c +++ b/src/data.c @@ -1179,7 +1179,7 @@ From now on the default value will apply in this buffer.") This is like Findirect_function, except that it doesn't signal an error if the chain ends up unbound. */ Lisp_Object -indirect_function (object, error) +indirect_function (object) register Lisp_Object object; { Lisp_Object tortise, hare; |