diff options
author | Felix Lange <fjl@twurst.com> | 2011-10-14 05:45:42 +0200 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2011-10-14 05:45:42 +0200 |
commit | bd5145368593e09460d4461256ee4f934b2ebf26 (patch) | |
tree | 471852782d61d64bede27d67552eb79af0a598aa /include/edit.hrl | |
parent | 90640c1aed302fd83a500bb9ccdfb6cf7b481112 (diff) | |
download | ermacs-fork-bd5145368593e09460d4461256ee4f934b2ebf26.tar.gz |
remove cruft
cruft includes:
- module header comments (yikes..)
- author attributes (sorry luke)
- old guard tests
Diffstat (limited to 'include/edit.hrl')
-rw-r--r-- | include/edit.hrl | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/include/edit.hrl b/include/edit.hrl index 2d7bcd5..9781b00 100644 --- a/include/edit.hrl +++ b/include/edit.hrl @@ -1,15 +1,6 @@ -%% -*- comment-column: 33 -*- +-define(debug(F, A), io:format("[~s:~p] " ++ F, [?MODULE, ?LINE | A])). --ifndef(_EDIT_HRL). --define(_EDIT_HRL, true). - --define(debug(F, A), - io:format("[~s:~p] " ++ F, [?MODULE, ?LINE | A]) - ). - -%% To use the GTK terminal, use the following definition. -%% Requires that you have erlgtk and gterm in your path. -%%-define(EDIT_TERMINAL, edit_terminal_gterm). +%% TODO: remove -define(EDIT_TERMINAL, edit_terminal). -record(state, @@ -44,5 +35,3 @@ keymaps}). -define(EOL_CHAR, $$). % Character to indicate the line is chopped - --endif. |