dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

paredit-autoloads.el (1343B)


      1 ;;; paredit-autoloads.el --- automatically extracted autoloads
      2 ;;
      3 ;;; Code:
      4 
      5 (add-to-list 'load-path (directory-file-name
      6                          (or (file-name-directory #$) (car load-path))))
      7 
      8 
      9 ;;;### (autoloads nil "paredit" "paredit.el" (0 0 0 0))
     10 ;;; Generated autoloads from paredit.el
     11 
     12 (autoload 'paredit-mode "paredit" "\
     13 Minor mode for pseudo-structurally editing Lisp code.
     14 With a prefix argument, enable Paredit Mode even if there are
     15   unbalanced parentheses in the buffer.
     16 Paredit behaves badly if parentheses are unbalanced, so exercise
     17   caution when forcing Paredit Mode to be enabled, and consider
     18   fixing unbalanced parentheses instead.
     19 \\<paredit-mode-map>
     20 
     21 If called interactively, enable Paredit mode if ARG is positive,
     22 and disable it if ARG is zero or negative.  If called from Lisp,
     23 also enable the mode if ARG is omitted or nil, and toggle it if
     24 ARG is `toggle'; disable the mode otherwise.
     25 
     26 \(fn &optional ARG)" t nil)
     27 
     28 (autoload 'enable-paredit-mode "paredit" "\
     29 Turn on pseudo-structural editing of Lisp code." t nil)
     30 
     31 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "paredit" '("?\\" "disable-paredit-mode" "paredit-")))
     32 
     33 ;;;***
     34 
     35 ;; Local Variables:
     36 ;; version-control: never
     37 ;; no-byte-compile: t
     38 ;; no-update-autoloads: t
     39 ;; coding: utf-8
     40 ;; End:
     41 ;;; paredit-autoloads.el ends here