5.1-alpha: X primary selection being pasted in reverse video

2020-06-21 Thread balducci
hello I actually don't know if this is a real problem with 5.1-alpha or if it's something related to my environment and/or build procedure The problem is the following If I paste in a terminal running 5.1-alpha a string stored in the primary X selection, the string is inserted in reverse video (

Re: 5.1-alpha: X primary selection being pasted in reverse video

2020-06-22 Thread balducci
> It's not a bug. This is the `active region' code displaying the text > inserted by a bracketed paste. You can see some of the most recent > discussion here: > > https://lists.gnu.org/archive/html/bug-bash/2020-03/msg00064.html > > The original patch was from 2018: > > https://lists.gnu.org/archiv

Re: Problem with small script

2016-02-18 Thread balducci
> On Thu, Feb 18, 2016 at 11:06:37PM +0700, Robert Parker wrote: > > The script: > > #/bin/bash ^ missing ! here typo in the shebang? > > # testlink.sh > > # must be run as root > > > > file1="$1" > > shift > > mandir=/usr/local/share/man/man3/ > > cp "$file1" "$mandir" > > cd "$mandir" >

5.3-alpha: less readable output when set -x

2024-04-24 Thread balducci
hello Apologies if I am missing some blatant point here I have noticed a difference in behavior of bash-5.2.26 and bash-5.3-alpha which isn't a problem of correctness, but may be wasn't intentional(?) Given the scriptlett: 8< #!/bin/sh set -x show () { cat < ./scriptlett.sh

Re: 5.3-alpha: less readable output when set -x

2024-04-25 Thread balducci
> This is from https://lists.gnu.org/archive/html/bug-bash/2023-06/msg00092.htm > l > > It ensures e.g. that control characters are always displayed in a > printable manner. so that is definitely intentional and everything is now clear to me thanks a lot for your time ciao -gabriele

readline-8.0-alpha: Makefile.in: don't forget to create pkgconfigdir

2018-05-24 Thread gabriele balducci
rror 1 make[1]: Leaving directory '/home/balducci/tmp/install-us-d/readline-7.0.d/readline-8.0-alpha' >8 The reason seems to be the installdirs target in Makefile.in missing to create $(DESTDIR)$(pkgconfigdir). This fixes things for me: diff -c ./Makefile.in.CREATE_

Re: readline-8.0-alpha: Makefile.in: don't forget to create pkgconfigdir

2018-05-24 Thread gabriele balducci
> >> Thanks for the report. I think a better fix is to not to attempt to > >> install readline.pc if $(pkgconfigdir) is missing. > > > > Why not? If you are doing an install into DESTDIR for the purpose of > > bundling a pre-built binary for a distro, then $(pkgconfigdir) will be > > missing, bec