Skip to content

Commit da9156f

Browse files
committed
Address code review
1 parent 19fbfa8 commit da9156f

File tree

3 files changed

+10
-18
lines changed

3 files changed

+10
-18
lines changed

Misc/NEWS.d/next/Tests/2023-08-29-21-51-04.gh-issue-105223.lqw_5B.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

configure

Lines changed: 7 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5830,14 +5830,9 @@ AC_ARG_WITH(
58305830
)
58315831

58325832
AS_VAR_IF([with_readline], [default], [
5833-
case $ac_sys_system/$ac_sys_release in
5834-
Darwin/*) AC_DEFINE([WITH_EDITLINE], [1])
5835-
with_readline=readline
5836-
;;
5837-
*)
5838-
with_readline=readline
5839-
;;
5840-
esac
5833+
AS_CASE([$ac_sys_system/$ac_sys_release],
5834+
[Darwin/*], [AC_DEFINE([WITH_EDITLINE], [1]) with_readline=readline],
5835+
[with_readline=readline])
58415836
])
58425837

58435838
AS_VAR_IF([with_readline], [readline], [

0 commit comments

Comments
 (0)