Remove unused function
This commit is contained in:
parent
4558772743
commit
d745aa5b37
1 changed files with 0 additions and 12 deletions
|
@ -141,18 +141,6 @@ MODE1 is enabled and vice-versa."
|
|||
"Set the `disabled' property for each item in FUNCTIONS to nil."
|
||||
(mapc #'(lambda (f) (put f 'disabled nil)) functions))
|
||||
|
||||
(defun oni:print-keymap (keymap)
|
||||
"Recursively print KEYMAP with keys as characters."
|
||||
(mapcar (lambda (itm)
|
||||
(if (consp itm)
|
||||
(if (integerp (car itm))
|
||||
(cons (format "%c" (car itm))
|
||||
(if (listp (cdr itm))
|
||||
(oni:print-keymap (cddr itm))
|
||||
(cdr itm)))
|
||||
itm)
|
||||
itm)) keymap))
|
||||
|
||||
(defun oni:prog-mode-func ()
|
||||
"Function for `prog-mode-hook'."
|
||||
(setq-local comment-auto-fill-only-comments t))
|
||||
|
|
Loading…
Reference in a new issue