comparison src/fns.c @ 52766:ada153c6900b

(Frequire): Doc fix.
author Luc Teirlinck <teirllm@auburn.edu>
date Sun, 05 Oct 2003 23:38:15 +0000
parents 695cf19ef79e
children ad6fbb925d66
comparison
equal deleted inserted replaced
52765:80ffc8b54a5c 52766:ada153c6900b
3327 DEFUN ("require", Frequire, Srequire, 1, 3, 0, 3327 DEFUN ("require", Frequire, Srequire, 1, 3, 0,
3328 doc: /* If feature FEATURE is not loaded, load it from FILENAME. 3328 doc: /* If feature FEATURE is not loaded, load it from FILENAME.
3329 If FEATURE is not a member of the list `features', then the feature 3329 If FEATURE is not a member of the list `features', then the feature
3330 is not loaded; so load the file FILENAME. 3330 is not loaded; so load the file FILENAME.
3331 If FILENAME is omitted, the printname of FEATURE is used as the file name, 3331 If FILENAME is omitted, the printname of FEATURE is used as the file name,
3332 and `load' will try to load this name appended with the suffix `.elc', 3332 and `load' will try to load this name appended with the suffix `.elc' or
3333 `.el' or the unmodified name, in that order. 3333 `.el', in that order. The name without appended suffix will not be used.
3334 If the optional third argument NOERROR is non-nil, 3334 If the optional third argument NOERROR is non-nil,
3335 then return nil if the file is not found instead of signaling an error. 3335 then return nil if the file is not found instead of signaling an error.
3336 Normally the return value is FEATURE. 3336 Normally the return value is FEATURE.
3337 The normal messages at start and end of loading FILENAME are suppressed. */) 3337 The normal messages at start and end of loading FILENAME are suppressed. */)
3338 (feature, filename, noerror) 3338 (feature, filename, noerror)