Compare commits

...

1 Commits
master ... f22

Author SHA1 Message Date
Vitezslav Crhonek 8a1f2a1346 Fix missing C-n binding in info 2015-09-15 10:57:18 +02:00
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,11 @@
diff -up texinfo-5.2/info/infomap.c.orig texinfo-5.2/info/infomap.c
--- texinfo-5.2/info/infomap.c.orig 2015-09-15 10:40:14.464877073 +0200
+++ texinfo-5.2/info/infomap.c 2015-09-15 10:40:35.269964560 +0200
@@ -297,6 +297,7 @@ static unsigned char default_emacs_like_
CONTROL('f'), NUL, A_info_forward_char,
CONTROL('h'), NUL, A_info_get_help_window,
CONTROL('l'), NUL, A_info_redraw_display,
+ CONTROL('n'), NUL, A_info_next_line,
CONTROL('p'), NUL, A_info_prev_line,
CONTROL('r'), NUL, A_isearch_backward,
CONTROL('s'), NUL, A_isearch_forward,

View File

@ -5,7 +5,7 @@
Summary: Tools needed to create Texinfo format documentation files
Name: texinfo
Version: 5.2
Release: 8%{?dist}
Release: 9%{?dist}
License: GPLv3+
Group: Applications/Publishing
Url: http://www.gnu.org/software/texinfo/
@ -22,6 +22,8 @@ Patch0: texinfo-4.12-zlib.patch
Patch1: texinfo-4.13a-powerpc.patch
# Patch2: bz#1053129, already upstream
Patch2: texinfo-5.2-non-existing-info-page-segfault.patch
# Patch3: bz#1257370, already upstream
Patch3: texinfo-5.2-missing-c-n-binding.patch
Requires(post): /sbin/install-info
Requires(preun): /sbin/install-info
Requires: perl >= 5.7.3, perl(Text::Unidecode)
@ -71,6 +73,7 @@ for printing using TeX.
%patch0 -p1 -b .zlib
%patch1 -p1 -b .powerpc
%patch2 -p1 -b .non-existing-info-page-segfault
%patch3 -p1 -b .missing-c-n-binding
%build
%configure --with-external-Text-Unidecode \
@ -175,6 +178,10 @@ fi
%{_mandir}/man1/pdftexi2dvi.1*
%changelog
* Tue Sep 15 2015 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.2-9
- Fix missing C-n binding in info
Resolves: #1257370
* Mon Feb 02 2015 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.2-8
- Add macros.info
Resolves: #948735