diff options
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. |