diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-14 12:34:42 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-14 12:34:42 -0700 |
commit | cd64ea1d0df393beb93d1bdf19bd3990e3378f85 (patch) | |
tree | 0966573f9d7235bd550e235193867976e65ffcd0 /src/doc.c | |
parent | c38bf546b2bb50932ac15cf3283c74a4bddc99c0 (diff) | |
download | emacs-cd64ea1d0df393beb93d1bdf19bd3990e3378f85.tar.gz |
* lisp.h (INFUN): Remove. Suggested by Dan Nicolaescu in
<http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00393.html>.
All uses spelled out.
Diffstat (limited to 'src/doc.c')
-rw-r--r-- | src/doc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/doc.c b/src/doc.c index a793011990f..354aff84979 100644 --- a/src/doc.c +++ b/src/doc.c @@ -42,8 +42,9 @@ static char *get_doc_string_buffer; static int get_doc_string_buffer_size; static unsigned char *read_bytecode_pointer; -INFUN (Fdocumentation_property, 3); -INFUN (Fsnarf_documentation, 1); +static Lisp_Object Fdocumentation_property (Lisp_Object, Lisp_Object, + Lisp_Object); +static Lisp_Object Fsnarf_documentation (Lisp_Object); /* readchar in lread.c calls back here to fetch the next byte. If UNREADFLAG is 1, we unread a byte. */ |