summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRavi R Kiran <aine.marina@gmail.com>2014-12-15 04:07:37 (GMT)
committerRavi R Kiran <aine.marina@gmail.com>2014-12-15 04:07:37 (GMT)
commit9c8c3b81c2816d0673b347166f0be2fd860472db (patch)
treecf034ffd5525cbfc380683888f0bd4e44adb2b25
parenta5f22374cd818d6a1a681ef1d463317624820a15 (diff)
downloaddotemacs-9c8c3b81c2816d0673b347166f0be2fd860472db.zip
dotemacs-9c8c3b81c2816d0673b347166f0be2fd860472db.tar.gz
dotemacs-9c8c3b81c2816d0673b347166f0be2fd860472db.tar.bz2
Don't need as much hand-holding now
-rw-r--r--ravi-init-function.el13
1 files changed, 4 insertions, 9 deletions
diff --git a/ravi-init-function.el b/ravi-init-function.el
index b4dc744..671d45c 100644
--- a/ravi-init-function.el
+++ b/ravi-init-function.el
@@ -1,9 +1,9 @@
;;; ravi-init-function.el --- functionality
-;; Copyright (C) 2013
+;; Copyright (C) 2013
;; Author: <ravi@nero.lan>
-;; Keywords:
+;; Keywords:
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -25,16 +25,11 @@
;;; Code:
;; Enable emacs functionality that is disabled by default
-(put 'eval-expression 'disabled nil)
-;(put 'set-goal-column 'disabled nil)
-(put 'narrow-to-page 'disabled nil)
-(put 'narrow-to-region 'disabled nil)
-(put 'downcase-region 'disabled nil)
-(put 'upcase-region 'disabled nil)
+(setq disabled-command-function nil)
;(setq enable-recursive-minibuffers t)
;; Use emacsclient from other programs
-(server-start)
+(unless (server-running-p) (server-start))
(provide 'ravi-init-function)
;;; ravi-init-function.el ends here