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 | |
| 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')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/lread.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ed71ae9452b..6e697e4c944 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-02-25 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * lread.c (Funintern): Fix doc to match advertised calling convention. | ||
| 4 | |||
| 1 | 2014-02-24 Daniel Colascione <dancol@dancol.org> | 5 | 2014-02-24 Daniel Colascione <dancol@dancol.org> |
| 2 | 6 | ||
| 3 | * keyboard.c (read_char): Close race that resulted in lost events. | 7 | * keyboard.c (read_char): Close race that resulted in lost events. |
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; |