;;; turn-on-mic-paren.el ;;; ;;; Copyright (C) 1997, 1998, 2004, 2007, 2008 Thien-Thi Nguyen ;;; ;;; This file is part of ttn's personal elisp library, released under ;;; the terms of the GNU General Public License as published by the ;;; Free Software Foundation; either version 3, or (at your option) any ;;; later version. There is NO WARRANTY. See file COPYING for details. ;;; Description: Turn on mic-paren, a fancy paren-fun package by mic. (require 'mic-paren) ;;;###autoload (defun turn-on-mic-paren () "Do `paren-activate' then set some related variables." (interactive) (paren-activate) ;; works w/ mic-paren.el version 3.7 (setq paren-sexp-mode t paren-display-message 'never paren-match-face 'bold)) (provide 'turn-on-mic-paren) ;;; turn-on-mic-paren.el ends here