summaryrefslogtreecommitdiffstats
path: root/lib/changelog.sh
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-03-17 18:15:57 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-03-17 18:15:57 (EDT)
commited16df9880ac1a92149242f14562da4282114fed (patch)
tree26459494bb779cae754fa26d8f59194caa998d19 /lib/changelog.sh
parent8c7cd49a0744af2063cac38eee3fdb9ba833249b (diff)
_OB_LF: Make public
Diffstat (limited to 'lib/changelog.sh')
-rw-r--r--lib/changelog.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/changelog.sh b/lib/changelog.sh
index 7af9835..c749b15 100644
--- a/lib/changelog.sh
+++ b/lib/changelog.sh
@@ -85,7 +85,7 @@ ob_parse_changelog()
case "${line}" in
'')
if [ x"${expect}" = x'start_changes' ]; then
- changes="${changes}${_OB_LF}${line}"
+ changes="${changes}${OB_LF}${line}"
elif [ x"${expect}" = x'next_or_eof' ]; then
:
elif [ x"${expect}" != x'changes_or_trailer' ]; then
@@ -93,7 +93,7 @@ ob_parse_changelog()
'changelog_found_blank_line' \
"$(_ob_get_changelog_expect_str "${expect}")"
else
- blank_lines="${blank_lines}${_OB_LF}${line}"
+ blank_lines="${blank_lines}${OB_LF}${line}"
fi
;;
[!\ ]*)
@@ -173,7 +173,7 @@ ob_parse_changelog()
'changelog_found_change' \
"$(_ob_get_changelog_expect_str "${expect}")"
fi
- changes="${changes}${_OB_LF}${blank_lines}${line}"
+ changes="${changes}${OB_LF}${blank_lines}${line}"
expect='changes_or_trailer'
blank_lines=''
;;