dotemacs

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

sly-autoloads.el (4707B)


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