diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2013-12-01 05:09:04 (GMT) |
|---|---|---|
| committer | Ravikiran Rajagopal <aine.marina@gmail.com> | 2013-12-01 05:09:04 (GMT) |
| commit | 1cb72ec3a4824470b31735f3cf66e08bc276e8bf (patch) | |
| tree | 3e339bd8916b00e817dc2a1b7b9c94c236af8bbb /ravi-init-function.el | |
| parent | 754a5432a4fb0a08101c23ce52b507295fb1ce85 (diff) | |
| download | dotemacs-1cb72ec3a4824470b31735f3cf66e08bc276e8bf.zip dotemacs-1cb72ec3a4824470b31735f3cf66e08bc276e8bf.tar.gz dotemacs-1cb72ec3a4824470b31735f3cf66e08bc276e8bf.tar.bz2 | |
Add disabled functionality
Diffstat (limited to 'ravi-init-function.el')
| -rw-r--r-- | ravi-init-function.el | 37 |
1 files changed, 37 insertions, 0 deletions
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 |
