dotemacs

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

sly-autoloads.el (4677B)


      1 ;;; sly-autoloads.el --- automatically extracted autoloads  -*- lexical-binding: t -*-
      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 "sly" "sly.el" (0 0 0 0))
     10 ;;; Generated autoloads from sly.el
     11 
     12 (define-obsolete-variable-alias 'sly-setup-contribs 'sly-contribs "2.3.2")
     13 
     14 (defvar sly-contribs '(sly-fancy) "\
     15 A list of contrib packages to load with SLY.")
     16 
     17 (autoload 'sly-setup "sly" "\
     18 Have SLY load and use extension modules CONTRIBS.
     19 CONTRIBS defaults to `sly-contribs' and is a list (LIB1 LIB2...)
     20 symbols of `provide'd and `require'd Elisp libraries.
     21 
     22 If CONTRIBS is nil, `sly-contribs' is *not* affected, otherwise
     23 it is set to CONTRIBS.
     24 
     25 However, after `require'ing LIB1, LIB2 ..., this command invokes
     26 additional initialization steps associated with each element
     27 LIB1, LIB2, which can theoretically be reverted by
     28 `sly-disable-contrib.'
     29 
     30 Notably, one of the extra initialization steps is affecting the
     31 value of `sly-required-modules' (which see) thus affecting the
     32 libraries loaded in the Slynk servers.
     33 
     34 If SLY is currently connected to a Slynk and a contrib in
     35 CONTRIBS has never been loaded, that Slynk is told to load the
     36 associated Slynk extension module.
     37 
     38 To ensure that a particular contrib is loaded, use
     39 `sly-enable-contrib' instead.
     40 
     41 \(fn &optional CONTRIBS)" t nil)
     42 
     43 (autoload 'sly-mode "sly" "\
     44 Minor mode for horizontal SLY functionality.
     45 
     46 This is a minor mode.  If called interactively, toggle the `Sly
     47 mode' mode.  If the prefix argument is positive, enable the mode,
     48 and if it is zero or negative, disable the mode.
     49 
     50 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
     51 the mode if ARG is nil, omitted, or is a positive number.
     52 Disable the mode if ARG is a negative number.
     53 
     54 To check whether the minor mode is enabled in the current buffer,
     55 evaluate `sly-mode'.
     56 
     57 The mode's hook is called both when the mode is enabled and when
     58 it is disabled.
     59 
     60 \(fn &optional ARG)" t nil)
     61 
     62 (autoload 'sly-editing-mode "sly" "\
     63 Minor mode for editing `lisp-mode' buffers.
     64 
     65 This is a minor mode.  If called interactively, toggle the
     66 `Sly-Editing mode' mode.  If the prefix argument is positive,
     67 enable the mode, and if it is zero or negative, disable the mode.
     68 
     69 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
     70 the mode if ARG is nil, omitted, or is a positive number.
     71 Disable the mode if ARG is a negative number.
     72 
     73 To check whether the minor mode is enabled in the current buffer,
     74 evaluate `sly-editing-mode'.
     75 
     76 The mode's hook is called both when the mode is enabled and when
     77 it is disabled.
     78 
     79 \(fn &optional ARG)" t nil)
     80 
     81 (autoload 'sly "sly" "\
     82 Start a Lisp implementation and connect to it.
     83 
     84   COMMAND designates a the Lisp implementation to start as an
     85 \"inferior\" process to the Emacs process. It is either a
     86 pathname string pathname to a lisp executable, a list (EXECUTABLE
     87 ARGS...), or a symbol indexing
     88 `sly-lisp-implementations'. CODING-SYSTEM is a symbol overriding
     89 `sly-net-coding-system'.
     90 
     91 Interactively, both COMMAND and CODING-SYSTEM are nil and the
     92 prefix argument controls the precise behaviour:
     93 
     94 - With no prefix arg, try to automatically find a Lisp.  First
     95   consult `sly-command-switch-to-existing-lisp' and analyse open
     96   connections to maybe switch to one of those.  If a new lisp is
     97   to be created, first lookup `sly-lisp-implementations', using
     98   `sly-default-lisp' as a default strategy.  Then try
     99   `inferior-lisp-program' if it looks like it points to a valid
    100   lisp.  Failing that, guess the location of a lisp
    101   implementation.
    102 
    103 - With a positive prefix arg (one C-u), prompt for a command
    104   string that starts a Lisp implementation.
    105 
    106 - With a negative prefix arg (M-- M-x sly, for example) prompt
    107   for a symbol indexing one of the entries in
    108   `sly-lisp-implementations'
    109 
    110 \(fn &optional COMMAND CODING-SYSTEM INTERACTIVE)" t nil)
    111 
    112 (autoload 'sly-connect "sly" "\
    113 Connect to a running Slynk server. Return the connection.
    114 With prefix arg, asks if all connections should be closed
    115 before.
    116 
    117 \(fn HOST PORT &optional CODING-SYSTEM INTERACTIVE-P)" t nil)
    118 
    119 (autoload 'sly-hyperspec-lookup "sly" "\
    120 A wrapper for `hyperspec-lookup'
    121 
    122 \(fn SYMBOL-NAME)" t nil)
    123 
    124 (autoload 'sly-info "sly" "\
    125 Read SLY manual
    126 
    127 \(fn FILE &optional NODE)" t nil)
    128 
    129 (add-hook 'lisp-mode-hook 'sly-editing-mode)
    130 
    131 (register-definition-prefixes "sly" '("define-sly-" "inferior-lisp-program" "make-sly-" "sly-"))
    132 
    133 ;;;***
    134 
    135 ;;;### (autoloads nil nil ("sly-pkg.el") (0 0 0 0))
    136 
    137 ;;;***
    138 
    139 ;; Local Variables:
    140 ;; version-control: never
    141 ;; no-byte-compile: t
    142 ;; no-update-autoloads: t
    143 ;; coding: utf-8
    144 ;; End:
    145 ;;; sly-autoloads.el ends here