aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2014-02-25 23:51:34 +0100
committerJuanma Barranquero2014-02-25 23:51:34 +0100
commit0e46275b4d2f06f8d60302db2e94083d66349cbc (patch)
tree44db308bcbba28f6234f217e9f1b75646c7a1083 /src
parentf086804c36438f83ed2f12f5dba635c2e5d34561 (diff)
downloademacs-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/ChangeLog4
-rw-r--r--src/lread.c3
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 @@
12014-02-25 Juanma Barranquero <lekktu@gmail.com>
2
3 * lread.c (Funintern): Fix doc to match advertised calling convention.
4
12014-02-24 Daniel Colascione <dancol@dancol.org> 52014-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,
3868The value is t if a symbol was found and deleted, nil otherwise. 3868The value is t if a symbol was found and deleted, nil otherwise.
3869NAME may be a string or a symbol. If it is a symbol, that symbol 3869NAME may be a string or a symbol. If it is a symbol, that symbol
3870is deleted, if it belongs to OBARRAY--no other symbol is deleted. 3870is deleted, if it belongs to OBARRAY--no other symbol is deleted.
3871OBARRAY defaults to the value of the variable `obarray'. */) 3871OBARRAY, if nil, defaults to the value of the variable `obarray'.
3872usage: (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;