branch: elpa/forth-mode
commit 0030189ff8db6c8e0d266bb4cf764524c83fcc9c
Author: Lars Brinkhoff <[email protected]>
Commit: Lars Brinkhoff <[email protected]>
Prepare for MELPA.
---
README | 2 +-
TMP | 1 -
block.fth | 1 -
forth-mode-pkg.el | 6 ++++++
forth-mode.el | 12 +++++++++++-
5 files changed, 18 insertions(+), 4 deletions(-)
diff --git a/README b/README
index ef601fdaaa..923b3c3c5b 100644
--- a/README
+++ b/README
@@ -1 +1 @@
-Placeholder for a new forth-mode. I don't like the existing one.
+Programming language mode for Forth.
diff --git a/TMP b/TMP
deleted file mode 100644
index 009ec3a0bb..0000000000
--- a/TMP
+++ /dev/null
@@ -1 +0,0 @@
-( Screen #1 -------------------------------------------------- \
\ Line 2
\
\
\ \
\
[...]
\ No newline at end of file
diff --git a/block.fth b/block.fth
deleted file mode 100644
index 5d68241302..0000000000
--- a/block.fth
+++ /dev/null
@@ -1 +0,0 @@
-( Screen #1 -------------------------------------------------- )\
\ Line 2
\
\
\ \
\
[...]
\ No newline at end of file
diff --git a/forth-mode-pkg.el b/forth-mode-pkg.el
new file mode 100644
index 0000000000..ebb5395692
--- /dev/null
+++ b/forth-mode-pkg.el
@@ -0,0 +1,6 @@
+;; Author: Lars Brinkhoff <[email protected]>
+;; URL: http://github.com/larsbrinkhoff/forth-mode
+(define-package "forth-mode" "0.1" "Forth programming language mode."
+ nil
+ :url "http://github.com/larsbrinkhoff/forth-mode"
+ :keywords '("languages" "forth"))
diff --git a/forth-mode.el b/forth-mode.el
index 8580cdc3d0..840659ac58 100644
--- a/forth-mode.el
+++ b/forth-mode.el
@@ -1,6 +1,15 @@
-;;;; -*- emacs-lisp -*-
+;;; forth-mode --- Programming language mode for Forth
;;; Copyright 2014 Lars Brinkhoff
+;; Author: Lars Brinkhoff <[email protected]>
+;; Keywords: languages forth
+;; URL: http://github.com/larsbrinkhoff/forth-mode
+
+;;; Commentary:
+;; Programming language mode for Forth
+
+;;; Code:
+
(load-library "forth-block-mode.el")
(defvar forth-mode-map
@@ -101,3 +110,4 @@
(forth-interaction-send (concat "include " file)))
(provide 'forth-mode)
+;;; forth-mode.el ends here