Remove unused function

This commit is contained in:
Tom Willemse 2015-12-18 00:40:08 +01:00
parent 4558772743
commit d745aa5b37

View file

@ -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))