Add some package description
package.el repos typically extract and show this info.
This commit is contained in:
parent
ec1f09420d
commit
2c08182649
|
@ -12,8 +12,14 @@
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
;; See the README for more info;
|
;; This package provides interaction with an Ocaml utop toplevel (REPL).
|
||||||
;; https://github.com/ocaml-community/utop
|
;;
|
||||||
|
;; utop.el has two components - a nice OCaml REPL with auto-completion and a
|
||||||
|
;; minor mode (`utop-minor-mode'), which extends OCaml major modes
|
||||||
|
;; (e.g. `caml-mode' and `tuareg-mode') with commands to evaluate forms directly
|
||||||
|
;; in the REPL.
|
||||||
|
;;
|
||||||
|
;; See the "Integration with Emacs" section of the README for more info.
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
@ -57,11 +63,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.")
|
||||||
;; +-----------------------------------------------------------------+
|
;; +-----------------------------------------------------------------+
|
||||||
|
|
||||||
(defgroup utop nil
|
(defgroup utop nil
|
||||||
"A toplevel for the ocaml programming language which interact
|
"A toplevel for the ocaml programming language which interacts
|
||||||
with Emacs to provide an enhanced environment."
|
with Emacs to provide an enhanced environment."
|
||||||
:tag "The Caml Emacs-Lisp Toplevel"
|
:group 'applications
|
||||||
:version "1.0"
|
:link '(url-link :tag "GitHub" "https://github.com/ocaml-community/utop")
|
||||||
:group 'applications)
|
:link '(emacs-commentary-link :tag "Commentary" "utop"))
|
||||||
|
|
||||||
(defcustom utop-command "utop -emacs"
|
(defcustom utop-command "utop -emacs"
|
||||||
"The command to execute for utop."
|
"The command to execute for utop."
|
||||||
|
|
Loading…
Reference in New Issue