commit 7dbfe402ba2eda62db54a26a867ca3a05b891bb7
parent 815460df37bb877fb07c64dc86ae54090838b27d
Author: Crazazy <crazazy@tilde.cafe>
Date: Fri, 1 Dec 2023 18:03:21 +0100
forgot some stuff
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/emenu.el b/emenu.el
@@ -1,4 +1,4 @@
-;; emenu.el --- An emacs dmenu clone -*- lexical-binding t -*-
+;;; emenu.el --- An emacs dmenu clone -*- lexical-binding: t; -*-
;; Copyright © 2022 Erik Oosting
@@ -17,6 +17,7 @@
;; on a different list of strings, you can just pass that list to emenu itself and it will
;; let you select something yourself
+;;; Code:
(require 'cl-seq)
(require 'ido)
@@ -53,3 +54,6 @@
0)
(keyboard-quit))
(delete-frame))))
+
+(provide 'emenu)
+;;; emenu.el ends here