diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2000-07-20 17:00:19 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2000-07-20 17:00:19 +0000 |
commit | c6a3c250c19506dc8aa3b0369acc273da230f6e4 (patch) | |
tree | 358401d0ec4bb52ca1a5af119d57d5cf2018939a | |
parent | fb4e11bb15360aecafcee2c5eb788574a8d489de (diff) | |
download | zsh-c6a3c250c19506dc8aa3b0369acc273da230f6e4.tar.gz zsh-c6a3c250c19506dc8aa3b0369acc273da230f6e4.tar.xz zsh-c6a3c250c19506dc8aa3b0369acc273da230f6e4.zip |
Renamed shouldIgnoreLine() to should_ignore_line().
-rw-r--r-- | Src/hist.c | 4 |
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)) { |