dotemacs

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

sly-autoloads.el (4743B)


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