examples: beware of ~/.inputrc

* examples/c/bistromathic/bistromathic.test: here.
This commit is contained in:
Akim Demaille
2020-05-10 08:20:30 +02:00
parent 6525abdc83
commit c3585f41ef
3 changed files with 10 additions and 0 deletions

3
NEWS
View File

@@ -2,6 +2,9 @@ GNU Bison NEWS
* Noteworthy changes in release ?.? (????-??-??) [?] * Noteworthy changes in release ?.? (????-??-??) [?]
** Bug fixes
GNU readline portability issues.
* Noteworthy changes in release 3.6 (2020-05-08) [stable] * Noteworthy changes in release 3.6 (2020-05-08) [stable]

View File

@@ -14,6 +14,9 @@ This example demonstrates best practices when using Bison.
- It supports debug traces with semantic values. - It supports debug traces with semantic values.
- It uses named references instead of the traditional $1, $2, etc. - It uses named references instead of the traditional $1, $2, etc.
To customize the interaction with bistromathic, see the GNU Readline user
manual (see `info rluserman`).
<!--- <!---
Local Variables: Local Variables:
fill-column: 76 fill-column: 76

View File

@@ -15,6 +15,10 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# Users may customize the behavior of readline, which might break our
# expected results.
INPUTRC=/dev/null
export INPUTRC
# Beware of portability issues of readline when not feeding it from a # Beware of portability issues of readline when not feeding it from a
# terminal. # terminal.