Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

19 Zeilen
789B

  1. (cond ((false-if-exception (resolve-interface '(ice-9 readline)))
  2. =>
  3. (lambda (module)
  4. ;; Enable completion and input history at the REPL.
  5. ((module-ref module 'activate-readline))))
  6. (else
  7. (display "Consider installing the 'guile-readline' package for
  8. convenient interactive line editing and input history.\n\n")))
  9. (unless (getenv "INSIDE_EMACS")
  10. (cond ((false-if-exception (resolve-interface '(ice-9 colorized)))
  11. =>
  12. (lambda (module)
  13. ;; Enable completion and input history at the REPL.
  14. ((module-ref module 'activate-colorized))))
  15. (else
  16. (display "Consider installing the 'guile-colorized' package
  17. for a colorful Guile experience.\n\n"))))