dotemacs

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

macrostep-autoloads.el (2469B)


      1 ;;; macrostep-autoloads.el --- automatically extracted autoloads (do not edit)   -*- lexical-binding: t -*-
      2 ;; Generated by the `loaddefs-generate' function.
      3 
      4 ;; This file is part of GNU Emacs.
      5 
      6 ;;; Code:
      7 
      8 (add-to-list 'load-path (or (and load-file-name (file-name-directory load-file-name)) (car load-path)))
      9 
     10 
     11 
     12 ;;; Generated autoloads from macrostep.el
     13 
     14 (autoload 'macrostep-mode "macrostep" "\
     15 Minor mode for inline expansion of macros in Emacs Lisp source buffers.
     16 
     17 \\<macrostep-mode-map>Progressively expand macro forms with \\[macrostep-expand], collapse them with \\[macrostep-collapse],
     18 and move back and forth with \\[macrostep-next-macro] and \\[macrostep-prev-macro].  Use \\[macrostep-collapse-all] or collapse all
     19 visible expansions to quit and return to normal editing.
     20 
     21 \\{macrostep-mode-map}
     22 
     23 This is a minor mode.  If called interactively, toggle the
     24 `Macrostep mode' mode.  If the prefix argument is positive,
     25 enable the mode, and if it is zero or negative, disable the mode.
     26 
     27 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
     28 the mode if ARG is nil, omitted, or is a positive number.
     29 Disable the mode if ARG is a negative number.
     30 
     31 To check whether the minor mode is enabled in the current buffer,
     32 evaluate `macrostep-mode'.
     33 
     34 The mode's hook is called both when the mode is enabled and when
     35 it is disabled.
     36 
     37 (fn &optional ARG)" t)
     38 (autoload 'macrostep-expand "macrostep" "\
     39 Expand the macro form following point by one step.
     40 
     41 Enters `macrostep-mode' if it is not already active, making the
     42 buffer temporarily read-only.  If `macrostep-mode' is active and the
     43 form following point is not a macro form, search forward in the
     44 buffer and expand the next macro form found, if any.
     45 
     46 With a prefix argument, the expansion is displayed in a separate
     47 buffer instead of inline in the current buffer.  Setting
     48 `macrostep-expand-in-separate-buffer' to non-nil swaps these two
     49 behaviors.
     50 
     51 (fn &optional TOGGLE-SEPARATE-BUFFER)" t)
     52 (register-definition-prefixes "macrostep" '("macrostep-"))
     53 
     54 
     55 ;;; Generated autoloads from macrostep-c.el
     56 
     57 (autoload 'macrostep-c-mode-hook "macrostep-c")
     58 (add-hook 'c-mode-hook #'macrostep-c-mode-hook)
     59 (register-definition-prefixes "macrostep-c" '("macrostep-c-"))
     60 
     61 ;;; End of scraped data
     62 
     63 (provide 'macrostep-autoloads)
     64 
     65 ;; Local Variables:
     66 ;; version-control: never
     67 ;; no-byte-compile: t
     68 ;; no-update-autoloads: t
     69 ;; no-native-compile: t
     70 ;; coding: utf-8-emacs-unix
     71 ;; End:
     72 
     73 ;;; macrostep-autoloads.el ends here