Commit 16954633 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: correct two conditions for conditional compilation

No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -164,7 +164,7 @@ typedef enum { ...@@ -164,7 +164,7 @@ typedef enum {
#ifndef DISABLE_WRAPPING #ifndef DISABLE_WRAPPING
SPLIT_BEGIN, SPLIT_END, SPLIT_BEGIN, SPLIT_END,
#endif #endif
#ifndef DISABLE_COMMENT #ifdef ENABLE_COMMENT
COMMENT, UNCOMMENT, PREFLIGHT, COMMENT, UNCOMMENT, PREFLIGHT,
#endif #endif
JOIN, PASTE, INSERT, ENTER, OTHER JOIN, PASTE, INSERT, ENTER, OTHER
......
...@@ -540,7 +540,7 @@ RETSIGTYPE cancel_command(int signal); ...@@ -540,7 +540,7 @@ RETSIGTYPE cancel_command(int signal);
bool execute_command(const char *command); bool execute_command(const char *command);
void discard_until(const undo *thisitem, openfilestruct *thefile); void discard_until(const undo *thisitem, openfilestruct *thefile);
void add_undo(undo_type action); void add_undo(undo_type action);
#ifndef DISABLE_COMMENT #ifdef ENABLE_COMMENT
void update_comment_undo(ssize_t lineno); void update_comment_undo(ssize_t lineno);
#endif #endif
void update_undo(undo_type action); void update_undo(undo_type action);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment