diff options
| author | Juanma Barranquero | 2014-02-25 23:51:34 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2014-02-25 23:51:34 +0100 |
| commit | 0e46275b4d2f06f8d60302db2e94083d66349cbc (patch) | |
| tree | 44db308bcbba28f6234f217e9f1b75646c7a1083 /src/lread.c | |
| parent | f086804c36438f83ed2f12f5dba635c2e5d34561 (diff) | |
| download | emacs-0e46275b4d2f06f8d60302db2e94083d66349cbc.tar.gz emacs-0e46275b4d2f06f8d60302db2e94083d66349cbc.zip | |
src/lread.c (Funintern): Fix doc to match advertised calling convention.
Diffstat (limited to 'src/lread.c')
| -rw-r--r-- | src/lread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index 635862f2654..4990d25eda1 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -3868,7 +3868,8 @@ DEFUN ("unintern", Funintern, Sunintern, 1, 2, 0, | |||
| 3868 | The value is t if a symbol was found and deleted, nil otherwise. | 3868 | The value is t if a symbol was found and deleted, nil otherwise. |
| 3869 | NAME may be a string or a symbol. If it is a symbol, that symbol | 3869 | NAME may be a string or a symbol. If it is a symbol, that symbol |
| 3870 | is deleted, if it belongs to OBARRAY--no other symbol is deleted. | 3870 | is deleted, if it belongs to OBARRAY--no other symbol is deleted. |
| 3871 | OBARRAY defaults to the value of the variable `obarray'. */) | 3871 | OBARRAY, if nil, defaults to the value of the variable `obarray'. |
| 3872 | usage: (unintern NAME OBARRAY) */) | ||
| 3872 | (Lisp_Object name, Lisp_Object obarray) | 3873 | (Lisp_Object name, Lisp_Object obarray) |
| 3873 | { | 3874 | { |
| 3874 | register Lisp_Object string, tem; | 3875 | register Lisp_Object string, tem; |