aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-03-04 19:59:35 -0800
committerGlenn Morris2013-03-04 19:59:35 -0800
commit28b6b84d4e91cf39c85f194c29b8e044ae6bac87 (patch)
treec66b211afe8fbeda52c5cfe68bacf1bbb3d6243e
parent3bfc46eb53ed50ec32711b5595cffc5b7b543249 (diff)
parent408ffa0fef7a4e9a91a2b864700d5ced8783dd59 (diff)
downloademacs-28b6b84d4e91cf39c85f194c29b8e044ae6bac87.tar.gz
emacs-28b6b84d4e91cf39c85f194c29b8e044ae6bac87.zip
Merge from emacs-24; up to 2012-12-24T15:56:17Z!eliz@gnu.org
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in8
-rw-r--r--doc/lispintro/ChangeLog2
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi2
-rw-r--r--src/ChangeLog10
-rw-r--r--src/sysdep.c8
6 files changed, 31 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2737f6284b0..293a554c9f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12013-03-05 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (install-man): Ignore gzip exit status.
4
12013-03-03 Glenn Morris <rgm@gnu.org> 52013-03-03 Glenn Morris <rgm@gnu.org>
2 6
3 * make-dist: Remove lzma (it's replaced by xz). 7 * make-dist: Remove lzma (it's replaced by xz).
diff --git a/Makefile.in b/Makefile.in
index 42b900401f7..b112c6abf11 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -624,6 +624,12 @@ install-info: info
624 ${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$elt); \ 624 ${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$elt); \
625 done) 625 done)
626 626
627## "gzip || true" is because some gzips exit with non-zero status
628## if compression would not reduce the file size. Eg, the gzip in
629## OpenBSD 4.9 seems to do this (2013/03). In Emacs, this can
630## only happen with the tiny ctags.1 manpage. We don't really care if
631## ctags.1 is compressed or not. "gzip -f" is another option here,
632## but not sure if portable.
627install-man: 633install-man:
628 umask 022; ${MKDIR_P} $(DESTDIR)${man1dir} 634 umask 022; ${MKDIR_P} $(DESTDIR)${man1dir}
629 thisdir=`/bin/pwd`; \ 635 thisdir=`/bin/pwd`; \
@@ -634,7 +640,7 @@ install-man:
634 ${INSTALL_DATA} ${mansrcdir}/$${page} $(DESTDIR)${man1dir}/$${dest}); \ 640 ${INSTALL_DATA} ${mansrcdir}/$${page} $(DESTDIR)${man1dir}/$${dest}); \
635 ( [ -n "${GZIP_INFO}" ] && [ -n "${GZIP_PROG}" ] ) || continue ; \ 641 ( [ -n "${GZIP_INFO}" ] && [ -n "${GZIP_PROG}" ] ) || continue ; \
636 rm -f $(DESTDIR)${man1dir}/$${dest}.gz; \ 642 rm -f $(DESTDIR)${man1dir}/$${dest}.gz; \
637 ${GZIP_PROG} -9n $(DESTDIR)${man1dir}/$${dest}; \ 643 ${GZIP_PROG} -9n $(DESTDIR)${man1dir}/$${dest} || true; \
638 done 644 done
639 645
640## Install those items from etc/ that need to end up elsewhere. 646## Install those items from etc/ that need to end up elsewhere.
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index 615551225cb..e31c63fd8f6 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,7 +1,7 @@
12013-03-03 Glenn Morris <rgm@gnu.org> 12013-03-03 Glenn Morris <rgm@gnu.org>
2 2
3 * emacs-lisp-intro.texi (Digression into C): Update example. 3 * emacs-lisp-intro.texi (Digression into C): Update example.
4 (defcustom): Fix typo. 4 (defcustom, Simple Extension): Fix typos.
5 5
62012-12-22 Glenn Morris <rgm@gnu.org> 62012-12-22 Glenn Morris <rgm@gnu.org>
7 7
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index f1f9315747a..43e2539d2f2 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -17811,7 +17811,7 @@ emacs -q --no-site-file -eval '(blink-cursor-mode nil)'
17811 17811
17812@exdent Or nowadays, using an even more sophisticated set of options, 17812@exdent Or nowadays, using an even more sophisticated set of options,
17813 17813
17814emacs -Q - D 17814emacs -Q -D
17815@end smallexample 17815@end smallexample
17816}: 17816}:
17817 17817
diff --git a/src/ChangeLog b/src/ChangeLog
index b511550624f..23071b03bee 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12013-03-05 Paul Eggert <eggert@cs.ucla.edu>
2
3 Fix a build failure on OpenBSD 4.x and MirBSD.
4 * sysdep.c (KERN_PROC, kinfo_proc)
5 [BSD_SYSTEM && (!KERN_PROC || __MirBSD__)]:
6 Define to KERN_PROC2 and kinfo_proc2, for OpenBSD 4.9 and MirBSD.
7 list-system-processes still returns nil, but at least it doesn't crash.
8 Problem reported by Nelson H. F. Beebe in
9 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>.
10
12013-03-05 Dmitry Antipov <dmantipov@yandex.ru> 112013-03-05 Dmitry Antipov <dmantipov@yandex.ru>
2 12
3 * composite.c (get_composition_id, fill_gstring_header): 13 * composite.c (get_composition_id, fill_gstring_header):
diff --git a/src/sysdep.c b/src/sysdep.c
index 606a5b038ca..c4b937183ca 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -2543,6 +2543,14 @@ list_system_processes (void)
2543 2543
2544#elif defined BSD_SYSTEM 2544#elif defined BSD_SYSTEM
2545 2545
2546/* OpenBSD 4.9 and earlier do not have KERN_PROC. Approximate it with
2547 KERN_PROC2. MirBSD's KERN_PROC seems to be busted. */
2548# if !defined KERN_PROC || defined __MirBSD__
2549# undef KERN_PROC
2550# define KERN_PROC KERN_PROC2
2551# define kinfo_proc kinfo_proc2
2552# endif
2553
2546Lisp_Object 2554Lisp_Object
2547list_system_processes (void) 2555list_system_processes (void)
2548{ 2556{