From 1cb72ec3a4824470b31735f3cf66e08bc276e8bf Mon Sep 17 00:00:00 2001 From: Ravi R Kiran Date: Sat, 30 Nov 2013 21:09:04 -0800 Subject: Add disabled functionality diff --git a/init.el b/init.el index 1527ac4..58ecc50 100644 --- a/init.el +++ b/init.el @@ -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: +;; 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 . + +;;; 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 -- cgit v0.10.1