branch: master
commit db4d0fb63455f493a6fc4aedd085bbd41112acc0
Author: Lars Ingebrigtsen <[email protected]>
Commit: Lars Ingebrigtsen <[email protected]>

    Add an autoload cookie to adjust-parens
    
    * packages/adjust-parens/adjust-parens.el (adjust-parens-mode):
    Add an autoload cookie (bug#22863).
---
 packages/adjust-parens/adjust-parens.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/packages/adjust-parens/adjust-parens.el 
b/packages/adjust-parens/adjust-parens.el
index 58a6632..183925d 100644
--- a/packages/adjust-parens/adjust-parens.el
+++ b/packages/adjust-parens/adjust-parens.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2013  Free Software Foundation, Inc.
 
 ;; Author: Barry O'Reilly <[email protected]>
-;; Version: 3.0
+;; Version: 3.1
 
 ;; 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
@@ -342,6 +342,7 @@ Binding to <backtab> (ie Shift-Tab) is a sensible choice."
 (define-key adjust-parens-mode-map (kbd "TAB") 'lisp-indent-adjust-parens)
 (define-key adjust-parens-mode-map (kbd "<backtab>") 
'lisp-dedent-adjust-parens)
 
+;;;###autoload
 (define-minor-mode adjust-parens-mode
   "Indent and dedent Lisp code, automatically adjust close parens."
   :group 'adjust-parens

Reply via email to