diff options
author | Crazazy | 2023-12-01 18:11:38 +0100 |
---|---|---|
committer | Crazazy | 2023-12-01 18:11:38 +0100 |
commit | a29cd37c1069cafaeb7ffd4dad98d13ff7d6603f (patch) | |
tree | b6cb50288b2bb150e5015e6cf5bb6fb5a49779fa | |
parent | f0ff98809b155c19ee9e3ba67f10a7f366315be0 (diff) |
add require-statements
-rw-r--r-- | emenu.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emenu.el b/emenu.el index 99adc1c..6293cf0 100644 --- a/emenu.el +++ b/emenu.el @@ -1,3 +1,6 @@ +(require 'cl-seq) +(require 'ido) + (defun all-commands () "does a completing read of all the programs accessible to you in $PATH" (let ((ls-output (mapcan (lambda (path) |