bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 02/68] ddb/db_input.c: add comment after endif


From: Marin Ramesa
Subject: [PATCH 02/68] ddb/db_input.c: add comment after endif
Date: Fri, 29 Nov 2013 22:53:27 +0100

* ddb/db_input.c [DB_HISTORY_SIZE]: Add comment after endif.

---
 ddb/db_input.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ddb/db_input.c b/ddb/db_input.c
index 8f875ad..7fee8fd 100644
--- a/ddb/db_input.c
+++ b/ddb/db_input.c
@@ -133,7 +133,7 @@ db_delete_line()
                 db_history_curr = db_history + \
                 db_history_size - 1; \
        } while (0)
-#endif
+#endif /* DB_HISTORY_SIZE */
 
 /* returns TRUE at end-of-line */
 boolean_t
@@ -251,7 +251,7 @@ db_inputchar(c)
                        db_putstring(db_lbuf_start, db_le - db_lbuf_start);
                }
                break;
-#endif
+#endif /* DB_HISTORY_SIZE */
            case CTRL('r'):
                db_putstring("^R\n", 3);
                if (db_le > db_lbuf_start) {
@@ -304,7 +304,7 @@ db_inputchar(c)
                        *db_history_last++ = '\0';
                }
                db_history_curr = db_history_last;
-#endif
+#endif /* DB_HISTORY_SIZE */
                *db_le++ = c;
                return (TRUE);
            default:
-- 
1.8.1.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]