aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Łyszczek <michal.lyszczek@bofc.pl>2019-05-15 22:15:37 +0200
committerMichał Łyszczek <michal.lyszczek@bofc.pl>2019-05-15 22:15:37 +0200
commit9effa624b95b5b65ea3958bec80ecb1bae4cbf9e (patch)
treeaf4b91d88d6bf3e3f6073bc880b27161abaf28d4
parentc27b8769fdcf57719986ddbc00c601069366aa90 (diff)
downloadembedlog-9effa624b95b5b65ea3958bec80ecb1bae4cbf9e.tar.gz
embedlog-9effa624b95b5b65ea3958bec80ecb1bae4cbf9e.tar.bz2
embedlog-9effa624b95b5b65ea3958bec80ecb1bae4cbf9e.zip
man/el_overview.7: change .EX, .EE to .nf, .fi
Signed-off-by: Michał Łyszczek <michal.lyszczek@bofc.pl>
-rw-r--r--man/el_overview.724
1 files changed, 12 insertions, 12 deletions
diff --git a/man/el_overview.7 b/man/el_overview.7
index 4dde0c9..f90e72e 100644
--- a/man/el_overview.7
+++ b/man/el_overview.7
@@ -181,15 +181,15 @@ Awailable macros are:
.PP
So instead of calling
.PP
-.EX
+.nf
el_print(__FILE__, __LINE__, EL_FUNC_NAME, EL_NOTICE, "Notice message");
-.EE
+.fi
.PP
You can simply call it like
.PP
-.EX
+.nf
el_print(ELN, "Notice message");
-.EE
+.fi
.PP
There are also equivalent macros for use with functions that also provides
.I el
@@ -223,19 +223,19 @@ for more info about that.
.PP
So instead of calling
.PP
-.EX
+.nf
el_oprint(__FILE__, __LINE__, EL_FUNC_NAME, EL_NOTICE, &g_log_object, "Notice message");
-.EE
+.fi
or
-.EX
+.nf
el_oprint(ELN, &g_log_object, "Notice message");
-.EE
+.fi
.PP
You can simply call it like
.PP
-.EX
+.nf
el_oprint(OELN, "Notice message");
-.EE
+.fi
.SH "STABLE ABI CONSIDERATION"
.PP
Since
@@ -315,7 +315,7 @@ Output can also be customized with proper el object, see
.BR el_option (3)
for more details.
.PP
-.EX
+.nf
#include <embedlog.h>
int main(void)
@@ -331,7 +331,7 @@ for more details.
return 0;
}
-.EE
+.fi
.SH SEE ALSO
.PP
.BR el_overview (7),