about summary refs log tree commit diff
path: root/emacs.d/init-functions.el
diff options
context:
space:
mode:
authorVincent Ambo <vincent@spotify.com>2013-08-03T13·36+0200
committerVincent Ambo <vincent@spotify.com>2013-08-03T13·36+0200
commit006043d82e7938f5f79d11e17e03314e932f8684 (patch)
tree01cc40c735091ffcf91b8a18faa08cf2affb3c02 /emacs.d/init-functions.el
parent580f642d4051aed2d61d1c8db1322507720d087d (diff)
emacs: Added flx (glorious!), removed some unused settings and functions
Diffstat (limited to 'emacs.d/init-functions.el')
-rw-r--r--emacs.d/init-functions.el13
1 files changed, 0 insertions, 13 deletions
diff --git a/emacs.d/init-functions.el b/emacs.d/init-functions.el
index b394b999fdcf..3a1c8c7e8e14 100644
--- a/emacs.d/init-functions.el
+++ b/emacs.d/init-functions.el
@@ -73,19 +73,6 @@
       (find-file (concat "/sudo:root@localhost:" (ido-read-file-name "File: ")))
     (find-alternate-file (concat "/sudo:root@localhost:" buffer-file-name))))
 
-(defun esk-suck-it (suckee)
-  "Insert a comment of appropriate length about what can suck it."
-  (interactive "MWhat can suck it? ")
-  (let ((prefix (concat ";; " suckee " can s"))
-        (postfix "ck it!")
-        (col (current-column)))
-    (insert prefix)
-    (dotimes (_ (- 80 col (length prefix) (length postfix))) (insert "u"))
-    (insert postfix)))
-
-(defun esk-turn-off-tool-bar ()
-  (if (functionp 'tool-bar-mode) (tool-bar-mode -1)))
-
 (defun speak (m &optional voice)
   (shell-command (if 'voice (concat "say -v " voice " \"" m "\"")
 		   (concat "say " m))))