]> code.delx.au - gnu-emacs/blobdiff - lisp/autoarg.el
Add a provide statement.
[gnu-emacs] / lisp / autoarg.el
index 3e8e99192b52e7ec3bae5bca2b3bede7869457d4..78e71ef218661d18bede99938da22c26dcc4b262 100644 (file)
@@ -110,7 +110,7 @@ then invokes the normal binding of \\[autoarg-terminate].
 `C-u \\[autoarg-terminate]' invokes the normal binding of \\[autoarg-terminate] four times.
 
 \\{autoarg-mode-map}"
-  (global . nil) " Aarg" autoarg-mode-map)
+  nil " Aarg" autoarg-mode-map :global t :group 'keyboard)
 
 ;;;###autoload
 (define-minor-mode autoarg-kp-mode
@@ -121,7 +121,7 @@ This is similar to \\[autoarg-mode] but rebinds the keypad keys `kp-1'
 &c to supply digit arguments.
 
 \\{autoarg-kp-mode-map}"
-  (global . nil) " Aakp" autoarg-kp-mode-map
+  nil " Aakp" autoarg-kp-mode-map :global t :group 'keyboard
   (if autoarg-kp-mode
       (dotimes (i 10)
        (let ((sym (intern (format "kp-%d" i))))
@@ -145,4 +145,5 @@ which invoked this function, excluding the Autoarg keymap."
 
 (provide 'autoarg)
 
+;;; arch-tag: 2ba2ab4f-d60e-402a-ae4d-37e29af723c2
 ;;; autoarg.el ends here