mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
Removed unneded utility mcmfmt
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
This commit is contained in:
parent
139fdaa6bd
commit
fcc98371d6
1
contrib/dist/redhat/mc.spec.in
vendored
1
contrib/dist/redhat/mc.spec.in
vendored
@ -121,7 +121,6 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_bindir}/mc
|
||||
%{_bindir}/mcedit
|
||||
%{_bindir}/mcview
|
||||
%{_bindir}/mcmfmt
|
||||
%{_bindir}/mcdiff
|
||||
|
||||
%dir %{_libexecdir}/mc
|
||||
|
@ -475,7 +475,6 @@ wholechars abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._
|
||||
keyword whole mcedit cyan
|
||||
keyword whole mcookie cyan
|
||||
keyword whole mcview cyan
|
||||
keyword whole mcmfmt cyan
|
||||
keyword whole memstat cyan
|
||||
keyword whole mergechanges cyan
|
||||
keyword whole mesg cyan
|
||||
|
@ -23,9 +23,7 @@ AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) $(PCRE_CFLAGS)
|
||||
localedir = $(datadir)/locale
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
|
||||
bin_PROGRAMS = mc mcmfmt
|
||||
|
||||
mcmfmt_SOURCES = mfmt.c
|
||||
bin_PROGRAMS = mc
|
||||
|
||||
if USE_EDIT
|
||||
EDITLIB = editor/libedit.la
|
||||
|
170
src/mfmt.c
170
src/mfmt.c
@ -1,170 +0,0 @@
|
||||
/* mfmt: sets bold and underline for mail files
|
||||
(c) 1995 miguel de icaza
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/** \file mfmt.c
|
||||
* \brief Source: sets bold and underline for mail files
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
/*** global variables ****************************************************************************/
|
||||
|
||||
/*** file scope macro definitions ****************************************************************/
|
||||
|
||||
/*** file scope type declarations ****************************************************************/
|
||||
|
||||
enum states
|
||||
{
|
||||
header,
|
||||
definition,
|
||||
plain,
|
||||
newline,
|
||||
seen_f,
|
||||
seen_r,
|
||||
seen_o,
|
||||
header_new,
|
||||
seen_m
|
||||
};
|
||||
|
||||
/*** file scope variables ************************************************************************/
|
||||
|
||||
/*** file scope functions ************************************************************************/
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
/*** public functions ****************************************************************************/
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
int
|
||||
main (void)
|
||||
{
|
||||
int c;
|
||||
int state = newline;
|
||||
int space_seen = 0;
|
||||
|
||||
while ((c = getchar ()) != EOF)
|
||||
{
|
||||
switch (state)
|
||||
{
|
||||
case plain:
|
||||
if (c == '\n')
|
||||
state = newline;
|
||||
putchar (c);
|
||||
break;
|
||||
|
||||
case newline:
|
||||
if (c == 'F')
|
||||
state = seen_f;
|
||||
else if (c == '\n')
|
||||
putchar ('\n');
|
||||
else
|
||||
{
|
||||
state = plain;
|
||||
putchar (c);
|
||||
}
|
||||
break;
|
||||
|
||||
case seen_f:
|
||||
if (c == 'r')
|
||||
state = seen_r;
|
||||
else
|
||||
{
|
||||
printf ("F%c", c);
|
||||
state = plain;
|
||||
}
|
||||
break;
|
||||
|
||||
case seen_r:
|
||||
if (c == 'o')
|
||||
state = seen_o;
|
||||
else
|
||||
{
|
||||
state = plain;
|
||||
printf ("Fr%c", c);
|
||||
}
|
||||
break;
|
||||
|
||||
case seen_o:
|
||||
if (c == 'm')
|
||||
{
|
||||
state = seen_m;
|
||||
}
|
||||
else
|
||||
{
|
||||
state = plain;
|
||||
printf ("Fro%c", c);
|
||||
}
|
||||
break;
|
||||
|
||||
case seen_m:
|
||||
if (c == ' ')
|
||||
{
|
||||
state = definition;
|
||||
printf ("_\bF_\br_\bo_\bm ");
|
||||
}
|
||||
else
|
||||
{
|
||||
state = plain;
|
||||
printf ("From%c", c);
|
||||
}
|
||||
break;
|
||||
|
||||
case header_new:
|
||||
space_seen = 0;
|
||||
if (c == ' ' || c == '\t')
|
||||
{
|
||||
state = definition;
|
||||
putchar (c);
|
||||
break;
|
||||
}
|
||||
if (c == '\n')
|
||||
{
|
||||
state = plain;
|
||||
putchar (c);
|
||||
break;
|
||||
}
|
||||
|
||||
case header:
|
||||
if (c == '\n')
|
||||
{
|
||||
putchar (c);
|
||||
state = header_new;
|
||||
break;
|
||||
}
|
||||
printf ("_\b%c", c);
|
||||
if (c == ' ')
|
||||
space_seen = 1;
|
||||
if (c == ':' && !space_seen)
|
||||
state = definition;
|
||||
break;
|
||||
|
||||
case definition:
|
||||
if (c == '\n')
|
||||
{
|
||||
putchar (c);
|
||||
state = header_new;
|
||||
break;
|
||||
}
|
||||
printf ("%c\b%c", c, c);
|
||||
break;
|
||||
}
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------------------------- */
|
Loading…
Reference in New Issue
Block a user