aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2022-01-09 19:02:17 +0200
committerEli Zaretskii2022-01-09 19:02:17 +0200
commit362ceb75a9ab9798cce8e3fdaddfd6745d2d97b4 (patch)
treeaa3975f6c42cf308c73a73a99fbe3769482768d6 /src
parente28849eb0200eb55ca263b75ae90bdc740dc0666 (diff)
downloademacs-362ceb75a9ab9798cce8e3fdaddfd6745d2d97b4.tar.gz
emacs-362ceb75a9ab9798cce8e3fdaddfd6745d2d97b4.zip
; * src/fns.c (Frequire): Fix wording of doc string.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/fns.c b/src/fns.c
index d46edf7705a..65dc3b61f2b 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3101,25 +3101,25 @@ require_unwind (Lisp_Object old_value)
3101} 3101}
3102 3102
3103DEFUN ("require", Frequire, Srequire, 1, 3, 0, 3103DEFUN ("require", Frequire, Srequire, 1, 3, 0,
3104 doc: /* If feature FEATURE is not loaded, load it from FILENAME. 3104 doc: /* If FEATURE is not already loaded, load it from FILENAME.
3105If FEATURE is not a member of the list `features', then the feature is 3105If FEATURE is not a member of the list `features', then the feature was
3106not loaded; so load the file FILENAME. 3106not yet loaded; so load it from file FILENAME.
3107 3107
3108If FILENAME is omitted, the printname of FEATURE is used as the file 3108If FILENAME is omitted, the printname of FEATURE is used as the file
3109name, and `load' will try to load this name appended with the suffix 3109name, and `load' is called to try to load the file by that name, after
3110`.elc', `.el', or the system-dependent suffix for dynamic module 3110appending the suffix `.elc', `.el', or the system-dependent suffix for
3111files, in that order. The name without appended suffix will not be 3111dynamic module files, in that order; but the function will not try to
3112used. See `get-load-suffixes' for the complete list of suffixes. 3112load the file without any suffix. See `get-load-suffixes' for the
3113complete list of suffixes.
3113 3114
3114The directories in `load-path' are searched when trying to find the 3115To find the file, this function searches that directories in `load-path'.
3115file name.
3116 3116
3117If the optional third argument NOERROR is non-nil, then return nil if 3117If the optional third argument NOERROR is non-nil, then, if
3118the file is not found instead of signaling an error. Normally the 3118the file is not found, the function returns nil instead of signaling
3119return value is FEATURE. 3119an error. Normally the return value is FEATURE.
3120 3120
3121The normal messages at start and end of loading FILENAME are 3121The normal messages issued by `load' at start and end of loading
3122suppressed. */) 3122FILENAME are suppressed. */)
3123 (Lisp_Object feature, Lisp_Object filename, Lisp_Object noerror) 3123 (Lisp_Object feature, Lisp_Object filename, Lisp_Object noerror)
3124{ 3124{
3125 Lisp_Object tem; 3125 Lisp_Object tem;