From d745aa5b37121e0d51f5843509ff00247ef65586 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 18 Dec 2015 00:40:08 +0100 Subject: Remove unused function --- emacs/.emacs.d/init.el | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'emacs/.emacs.d/init.el') diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index 6b5e58b..1ce3f7d 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -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)) -- cgit v1.2.3-54-g00ecf