summaryrefslogtreecommitdiff
path: root/Src/hist.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2000-07-20 17:00:19 +0000
committerWayne Davison <wayned@users.sourceforge.net>2000-07-20 17:00:19 +0000
commitc6a3c250c19506dc8aa3b0369acc273da230f6e4 (patch)
tree358401d0ec4bb52ca1a5af119d57d5cf2018939a /Src/hist.c
parentfb4e11bb15360aecafcee2c5eb788574a8d489de (diff)
downloadzsh-c6a3c250c19506dc8aa3b0369acc273da230f6e4.tar.gz
zsh-c6a3c250c19506dc8aa3b0369acc273da230f6e4.zip
Renamed shouldIgnoreLine() to should_ignore_line().
Diffstat (limited to 'Src/hist.c')
-rw-r--r--Src/hist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/hist.c b/Src/hist.c
index f4de645e2..da6dfaa30 100644
--- a/Src/hist.c
+++ b/Src/hist.c
@@ -945,7 +945,7 @@ prepnexthistent(void)
/* A helper function for hend() */
static int
-shouldIgnoreLine(Eprog prog)
+should_ignore_line(Eprog prog)
{
if (!prog)
return 0;
@@ -1030,7 +1030,7 @@ hend(Eprog prog)
} else
save = 0;
}
- if (chwordpos <= 2 || shouldIgnoreLine(prog))
+ if (chwordpos <= 2 || should_ignore_line(prog))
save = 0;
}
if (flag & (HISTFLAG_DONE | HISTFLAG_RECALL)) {