summaryrefslogtreecommitdiffstats
path: root/src/maps.c
diff options
context:
space:
mode:
authorandmarti1424 <andmarti@gmail.com>2017-04-09 19:19:22 -0300
committerandmarti1424 <andmarti@gmail.com>2017-04-09 19:19:22 -0300
commitf5959f99d723630c9efaaa30a1209316064f9158 (patch)
treed91369c0e31ad8eac4104a02b27608b968444386 /src/maps.c
parentcc90329962d76e1103aa43653993cf2f01c5038b (diff)
cleaned comments
Diffstat (limited to 'src/maps.c')
-rw-r--r--src/maps.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/maps.c b/src/maps.c
index 2b70735..547d2e5 100644
--- a/src/maps.c
+++ b/src/maps.c
@@ -233,8 +233,10 @@ void del_map(char * in, int mode) {
return;
}
-// Translate a block into a string
-// special characters are in the <CR> form
+/*
+ * Translate a block into a string
+ * special characters are in the <CR> form
+ */
void get_mapstr_buf (struct block * b, char * str) {
struct block * a = b;
int i, len = get_bufsize(a);
@@ -305,6 +307,5 @@ void get_mappings(char * salida) {
sprintf(salida + strlen(salida), "%3d + %c%smap \"%s\" = \"%s\"\n", i, mode, nore, min, mout);
m = m->psig;
}
-
return;
}