Emacs: added \ie and \eg to article snippet.

Shell: fixed formatc not being defined.
master
Pierre Neidhardt 2013-02-20 17:49:07 +01:00
parent a61d9d5ba3
commit a7de42ef3e
2 changed files with 3 additions and 1 deletions

View File

@ -34,6 +34,8 @@
\renewcommand{\TeX}{\textrm{\texbak}\xspace}
\def\unix{\textsc{Unix}\xspace}
\def\ie{\textsl{i.e.}\xspace}
\def\eg{\textsl{e.g.}\xspace}
%%=============================================================================
%% Formatting

View File

@ -776,7 +776,7 @@ xmultioff ()
## Format C using 'indent'. Alternative to indent: astyle, uncrustify.
formatc()
{
if [ -n "$(command -v indent)" ]; then
if [ -z "$(command -v indent)" ]; then
echo "Please install 'indent'"
return
fi