summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-12-12 09:45:45 -0700
committerSean Whitton <spwhitton@spwhitton.name>2015-12-12 09:45:45 -0700
commit9666c736d912f7246cc0817751573efaf4445669 (patch)
tree77483732557e77c294f8a7e9b08c5a259bbfc456
parent970c5e3bd4519deed8b8b604a5a96269166bf697 (diff)
replace control characters with call to `kbd'
Control characters embedded in the elisp file confuses tools like file(1) (and thus Debian packaging tools). Pre-patch: % file aggressive-indent.el aggressive-indent.el: data Post-patch: % file aggressive-indent.el aggressive-indent.el: Lisp/Scheme program, ASCII text
-rw-r--r--aggressive-indent.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/aggressive-indent.el b/aggressive-indent.el
index 4192222..b958853 100644
--- a/aggressive-indent.el
+++ b/aggressive-indent.el
@@ -381,7 +381,7 @@ or messages."
;;;###autoload
(define-minor-mode aggressive-indent-mode
nil nil " =>"
- '(("" . aggressive-indent-indent-defun)
+ '(((kbd "C-c C-q") . aggressive-indent-indent-defun)
([backspace]
menu-item "maybe-delete-indentation" ignore :filter
(lambda (&optional _)