diff options
| -rw-r--r-- | init.el | 1 | ||||
| -rw-r--r-- | ravi-init-function.el | 37 |
2 files changed, 38 insertions, 0 deletions
@@ -83,3 +83,4 @@ (require 'ravi-init-appearance) (require 'ravi-init-files) (require 'ravi-init-vc) +(require 'ravi-init-function) diff --git a/ravi-init-function.el b/ravi-init-function.el new file mode 100644 index 0000000..06ad08b --- /dev/null +++ b/ravi-init-function.el @@ -0,0 +1,37 @@ +;;; ravi-init-function.el --- functionality + +;; Copyright (C) 2013 + +;; Author: <ravi@nero.lan> +;; 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 +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see <http://www.gnu.org/licenses/>. + +;;; Commentary: + +;; Enable functionality + +;;; 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 enable-recursive-minibuffers t) + +(provide 'ravi-init-function) +;;; ravi-init-function.el ends here |
