[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Elisp - Store path only once
From: |
Stefan Monnier |
Subject: |
Re: Elisp - Store path only once |
Date: |
Sat, 09 Jan 2021 16:56:31 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) |
>> >(load 'g-eshell)
>> >(load 'g-utils)
>> (require 'something)
> There are (at least) 3 functions you can use to load a list file: `require',
> `load-library', and `load'.
Actually `load-library` (just like `load-file`) is not meant to be used
as a function but rather as a command. Both `load-library` and
`load-file` are two commands which give interactive access to the
Lisp-level function `load`.
Stefan