]> git.deb.at Git - pkg/abook.git/blobdiff - abook.h
Fetch real Portuguese debconf translation
[pkg/abook.git] / abook.h
diff --git a/abook.h b/abook.h
index 0cdc513405db7b4bfba13cf4833854779b075cc6..fc6c1bbc0486d6e54f5e62a01fbdc5248c25f45a 100644 (file)
--- a/abook.h
+++ b/abook.h
@@ -13,7 +13,7 @@ int           strcasecmp (const char *, const char *);
 int            strncasecmp (const char *, const char *, size_t);
 #endif
 
-#define MAIN_HELPLINE        "q:quit  ?:help  a:add  r:remove"
+#define MAIN_HELPLINE        N_("q:quit  ?:help  a:add  r:remove")
 
 #define Y_STATUSLINE           (LINES - 2)
 
@@ -49,6 +49,8 @@ int           strncasecmp (const char *, const char *, size_t);
 
 #define ISSPACE(c)     isspace((unsigned char)c)
 
+#define SKIPWS(c)      while(*(c) && ISSPACE(*(c))) c++
+
 #ifndef DEBUG
 #      define NDEBUG   1
 #else