aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/lread.c b/src/lread.c
index 8777bc34545..7d12f5a85d3 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -681,7 +681,7 @@ read_filtered_event (int no_switch_frame, int ascii_required,
681 return val; 681 return val;
682} 682}
683 683
684DEFUN ("read-char", Fread_char, Sread_char, 0, 3, 0, 684DEFUE ("read-char", Fread_char, Sread_char, 0, 3, 0,
685 doc: /* Read a character from the command input (keyboard or macro). 685 doc: /* Read a character from the command input (keyboard or macro).
686It is returned as a number. 686It is returned as a number.
687If the character has modifiers, they are resolved and reflected to the 687If the character has modifiers, they are resolved and reflected to the
@@ -714,7 +714,7 @@ floating-point value. */)
714 : make_number (char_resolve_modifier_mask (XINT (val)))); 714 : make_number (char_resolve_modifier_mask (XINT (val))));
715} 715}
716 716
717DEFUN ("read-event", Fread_event, Sread_event, 0, 3, 0, 717DEFUE ("read-event", Fread_event, Sread_event, 0, 3, 0,
718 doc: /* Read an event object from the input stream. 718 doc: /* Read an event object from the input stream.
719If the optional argument PROMPT is non-nil, display that as a prompt. 719If the optional argument PROMPT is non-nil, display that as a prompt.
720If the optional argument INHERIT-INPUT-METHOD is non-nil and some 720If the optional argument INHERIT-INPUT-METHOD is non-nil and some
@@ -950,7 +950,7 @@ load_warn_old_style_backquotes (Lisp_Object file)
950 return Qnil; 950 return Qnil;
951} 951}
952 952
953DEFUN ("get-load-suffixes", Fget_load_suffixes, Sget_load_suffixes, 0, 0, 0, 953DEFUE ("get-load-suffixes", Fget_load_suffixes, Sget_load_suffixes, 0, 0, 0,
954 doc: /* Return the suffixes that `load' should try if a suffix is \ 954 doc: /* Return the suffixes that `load' should try if a suffix is \
955required. 955required.
956This uses the variables `load-suffixes' and `load-file-rep-suffixes'. */) 956This uses the variables `load-suffixes' and `load-file-rep-suffixes'. */)
@@ -972,7 +972,7 @@ This uses the variables `load-suffixes' and `load-file-rep-suffixes'. */)
972 return Fnreverse (lst); 972 return Fnreverse (lst);
973} 973}
974 974
975DEFUN ("load", Fload, Sload, 1, 5, 0, 975DEFUE ("load", Fload, Sload, 1, 5, 0,
976 doc: /* Execute a file of Lisp code named FILE. 976 doc: /* Execute a file of Lisp code named FILE.
977First try FILE with `.elc' appended, then try with `.el', 977First try FILE with `.elc' appended, then try with `.el',
978then try FILE unmodified (the exact suffixes in the exact order are 978then try FILE unmodified (the exact suffixes in the exact order are
@@ -1906,7 +1906,7 @@ This function does not move point. */)
1906} 1906}
1907 1907
1908 1908
1909DEFUN ("read", Fread, Sread, 0, 1, 0, 1909DEFUE ("read", Fread, Sread, 0, 1, 0,
1910 doc: /* Read one Lisp expression as text from STREAM, return as Lisp object. 1910 doc: /* Read one Lisp expression as text from STREAM, return as Lisp object.
1911If STREAM is nil, use the value of `standard-input' (which see). 1911If STREAM is nil, use the value of `standard-input' (which see).
1912STREAM or the value of `standard-input' may be: 1912STREAM or the value of `standard-input' may be:
@@ -1929,7 +1929,7 @@ STREAM or the value of `standard-input' may be:
1929 return read_internal_start (stream, Qnil, Qnil); 1929 return read_internal_start (stream, Qnil, Qnil);
1930} 1930}
1931 1931
1932DEFUN ("read-from-string", Fread_from_string, Sread_from_string, 1, 3, 0, 1932DEFUE ("read-from-string", Fread_from_string, Sread_from_string, 1, 3, 0,
1933 doc: /* Read one Lisp expression which is represented as text by STRING. 1933 doc: /* Read one Lisp expression which is represented as text by STRING.
1934Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX). 1934Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).
1935START and END optionally delimit a substring of STRING from which to read; 1935START and END optionally delimit a substring of STRING from which to read;
@@ -3654,7 +3654,7 @@ make_symbol (const char *str)
3654 : make_string (str, len)); 3654 : make_string (str, len));
3655} 3655}
3656 3656
3657DEFUN ("intern", Fintern, Sintern, 1, 2, 0, 3657DEFUE ("intern", Fintern, Sintern, 1, 2, 0,
3658 doc: /* Return the canonical symbol whose name is STRING. 3658 doc: /* Return the canonical symbol whose name is STRING.
3659If there is none, one is created by this function and returned. 3659If there is none, one is created by this function and returned.
3660A second optional argument specifies the obarray to use; 3660A second optional argument specifies the obarray to use;
@@ -3700,7 +3700,7 @@ it defaults to the value of `obarray'. */)
3700 return sym; 3700 return sym;
3701} 3701}
3702 3702
3703DEFUN ("intern-soft", Fintern_soft, Sintern_soft, 1, 2, 0, 3703DEFUE ("intern-soft", Fintern_soft, Sintern_soft, 1, 2, 0,
3704 doc: /* Return the canonical symbol named NAME, or nil if none exists. 3704 doc: /* Return the canonical symbol named NAME, or nil if none exists.
3705NAME may be a string or a symbol. If it is a symbol, that exact 3705NAME may be a string or a symbol. If it is a symbol, that exact
3706symbol is searched for. 3706symbol is searched for.
@@ -3728,7 +3728,7 @@ it defaults to the value of `obarray'. */)
3728 return tem; 3728 return tem;
3729} 3729}
3730 3730
3731DEFUN ("unintern", Funintern, Sunintern, 1, 2, 0, 3731DEFUE ("unintern", Funintern, Sunintern, 1, 2, 0,
3732 doc: /* Delete the symbol named NAME, if any, from OBARRAY. 3732 doc: /* Delete the symbol named NAME, if any, from OBARRAY.
3733The value is t if a symbol was found and deleted, nil otherwise. 3733The value is t if a symbol was found and deleted, nil otherwise.
3734NAME may be a string or a symbol. If it is a symbol, that symbol 3734NAME may be a string or a symbol. If it is a symbol, that symbol