Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove trailing white spaces #173

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Chet Ramey <chet at po.cwru.edu>: author of the amazing readline
Chet Ramey <chet at po.cwru.edu>: author of the amazing readline
library, around which rlwrap is but a thin wrapper.

Hans Lub [email protected]: most of the rlwrap code, except for:
Expand All @@ -15,7 +15,7 @@ Jon Olsson (jon at vexed.se) contributed patches to weed out unsafe
strcat and strcpy calls

Hisanobu Okuda ported the RlwrapFilter.pm perl module (and a number
of example filters) to python, and contributed a new way of handling
of example filters) to python, and contributed a new way of handling
multi-part filter messages.

Robert Kroeger contributed code to keep track of the rlwrapped command's
Expand Down
4 changes: 2 additions & 2 deletions BUGS
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Many (most) bug reports, especially the really weird ones, stem from
"version skew" on distributions (RedHat, Debian) that have separate
development packages (e.g. readline and readline-dev). For some reason
it can happen that the devel package is out of sync with the main
package, and then really strange things may happen. So: always update your
package, and then really strange things may happen. So: always update your
{readline, ncurses}-devel packages before you complain to me!


Expand Down Expand Up @@ -53,7 +53,7 @@ Re-sizing the terminal may confuse the editor
The code that determines whether a cooked prompt should be overwritten
(when it turns out to not have been a prompt) is needlessly complex
and not quite correct (e.g. substitute prompts may be left standing
when they should be erased).
when they should be erased).

--

Expand Down
4 changes: 2 additions & 2 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ following:
procfs, used for determination of slave command's working directory.

--enable-multibyte-aware (default: YES) Prevent rlwrap from seeing
multibyte characters as multiple characters.
multibyte characters as multiple characters.


UNINSTALLATION
Expand All @@ -75,7 +75,7 @@ rlwrap's configure script will not find this installation automatically, but

./configure --prefix=$HOME CFLAGS=-I$HOME/include CPPFLAGS=-I$HOME/include LDFLAGS=-L$HOME/lib

should work. You can add '-static' to LDFLAGS if you want to build a statically linked rlwrap,
should work. You can add '-static' to LDFLAGS if you want to build a statically linked rlwrap,
like so:

./configure --prefix=$HOME CFLAGS=-I$HOME/include CPPFLAGS=-I$HOME/include LDFLAGS=-L$HOME/lib' -static'
Expand Down
8 changes: 4 additions & 4 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ nobase_pkgdata_DATA = completions/testclient completions/coqtop\



clean-local:
rm -f *~
clean-local:
rm -f *~


install-data-hook:
chmod a+x $(DESTDIR)$(pkgdatadir)/filters/*
chmod a+x $(DESTDIR)$(pkgdatadir)/filters/*

Loading