User: malcolmp
Date: 05/11/16 13:13:04
Modified: xemacs/lisp ChangeLog help.el menubar-items.el
Added: xemacs/etc .cvsignore
Log:
Adding PROBLEMS to the Help Menu.
Revision Changes Path
1.471 +5 -0 XEmacs/xemacs/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/ChangeLog,v
retrieving revision 1.470
retrieving revision 1.471
diff -u -p -r1.470 -r1.471
--- ChangeLog 2005/11/16 11:53:47 1.470
+++ ChangeLog 2005/11/16 12:12:57 1.471
@@ -1,5 +1,10 @@
2005-11-08 Malcolm Purvis <malcolmp(a)xemacs.org>
+ * Makefile.in.in: Install PROBLEMS into .../etc
+ * PROBLEMS: Update description of MacOS X stack size limit.
+
+2005-11-08 Malcolm Purvis <malcolmp(a)xemacs.org>
+
* configure.ac : Reorganised the option list so that the help
output looks like configure.usage from 21.4
1.28 +5 -1 XEmacs/xemacs/Makefile.in.in
Index: Makefile.in.in
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/Makefile.in.in,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -p -r1.27 -r1.28
--- Makefile.in.in 2005/11/13 10:39:39 1.27
+++ Makefile.in.in 2005/11/16 12:12:57 1.28
@@ -238,7 +238,7 @@ INSTALL_ARCH_DEP_SUBDIR = @INSTALL_ARCH_
## instead, we have written out explicit code in the `install' targets.
COPYDIR = ${srcdir}/etc ${srcdir}/lisp
COPYDESTS = ${etcdir} ${lispdir}
-GENERATED_HEADERS = src/paths.h src/Emacs.ad.h src/config.h lwlib/config.h
src/sheap-adjust.h src/xemacs.def
+GENERATED_HEADERS = src/paths.h src/Emacs.ad.h src/config.h lwlib/config.h
src/sheap-adjust.h src/xemacs.def etc/PROBLEMS
## MAKE_SUBDIR will always be of the form lib-src ... src, where
## `...' includes various other directories that may be inserted by
@@ -344,6 +344,9 @@ lwlib/config.h: ${srcdir}/lwlib/config.h
src/xemacs.def: $(srcdir)/src/xemacs.def.in.in
./config.status && touch $@
+etc/PROBLEMS: $(srcdir)/PROBLEMS
+ cp $^ $@
+
## ==================== Installation ====================
## If we let lib-src do its own installation, that means we
@@ -552,6 +555,7 @@ top-clean: FRC.clean
$(RM) core lisp/auto-autoloads.el* lisp/custom-load.el*
$(RM) lisp/mule/auto-autoloads.el* lisp/mule/custom-load.el*
$(RM) modules/auto-autoloads.el* modules/custom-load.el*
+ $(RM) etc/PROBLEMS
clean: top-mostlyclean top-clean
for d in $(SUBDIR); do (cd ./$$d && $(MAKE) $(RECURSIVE_MAKE_ARGS) $@); done
1.71 +4 -4 XEmacs/xemacs/PROBLEMS
Index: PROBLEMS
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/PROBLEMS,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -p -r1.70 -r1.71
--- PROBLEMS 2005/03/10 11:49:00 1.70
+++ PROBLEMS 2005/11/16 12:12:57 1.71
@@ -1387,10 +1387,10 @@ shell.
*** XEmacs crashes on MacOS within font-lock, or when dealing
with large compilation buffers, or in other regex applications.
-The default stack size under MacOS/X is rather small (512k as opposed
-to Solaris 8M), hosing the regexp code, which uses alloca()
-extensively, overflowing the stack when complex regexps are used.
-Workarounds:
+The default stack size under MacOS/X prior to 10.3 (Panther) is rather
+small (512k as opposed to Solaris 8M), hosing the regexp code, which
+uses alloca() extensively, overflowing the stack when complex regexps
+are used. Workarounds:
1) Increase your stack size, using `ulimit -s 8192' or a (t)csh
equivalent;
1.64 +4 -0 XEmacs/xemacs/etc/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/etc/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -p -r1.63 -r1.64
--- ChangeLog 2005/10/26 15:13:25 1.63
+++ ChangeLog 2005/11/16 12:13:01 1.64
@@ -1,3 +1,7 @@
+2005-11-16 Malcolm Purvis <malcolmp(a)xemacs.org>
+
+ * .cvsignore: New
+
2005-10-26 Stephen J. Turnbull <stephen(a)xemacs.org>
* XEmacs 21.5.23 "daikon" is released.
1.2 +1 -0 XEmacs/xemacs/etc/.cvsignore
Index: .cvsignore
===================================================================
RCS file: .cvsignore
diff -N .cvsignore
--- /dev/null Wed Nov 16 13:12:59 2005
+++ /tmp/cvsAAAf9ayVs Wed Nov 16 13:13:01 2005
@@ -0,0 +1 @@
+PROBLEMS
1.698 +6 -0 XEmacs/xemacs/lisp/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/ChangeLog,v
retrieving revision 1.697
retrieving revision 1.698
diff -u -p -r1.697 -r1.698
--- ChangeLog 2005/11/16 07:22:40 1.697
+++ ChangeLog 2005/11/16 12:13:02 1.698
@@ -1,3 +1,9 @@
+2005-11-08 Malcolm Purvis <malcolmp(a)xemacs.org>
+
+ * help.el:
+ * menubar-items.el (default-menubar):
+ Add 'Known Problems' to the Help menu.
+
2005-11-16 Stephen J. Turnbull <stephen(a)xemacs.org>
* select.el (get-selection):
1.47 +7 -0 XEmacs/xemacs/lisp/help.el
Index: help.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/help.el,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -p -r1.46 -r1.47
--- help.el 2005/11/13 10:52:48 1.46
+++ help.el 2005/11/16 12:13:02 1.47
@@ -109,6 +109,7 @@
(define-key help-map "p" 'finder-by-keyword)
(define-key help-map "\C-p" 'describe-pointer)
+(define-key help-map "P" 'view-xemacs-problems)
(define-key help-map "q" 'help-quit)
@@ -840,6 +841,11 @@ of the key sequence that ran this comman
(interactive)
(Help-find-file (expand-file-name "NEWS" data-directory)))
+(defun view-xemacs-problems ()
+ "Display known problems with XEmacs."
+ (interactive)
+ (Help-find-file (expand-file-name "PROBLEMS" data-directory)))
+
(defun xemacs-www-page ()
"Go to the XEmacs World Wide Web page."
(interactive)
@@ -995,6 +1001,7 @@ Miscellaneous:
"
"")
"
+\\[view-xemacs-problems] Known problems.
\\[customize] Customize Emacs options.
\\[describe-distribution] How to obtain XEmacs.
\\[describe-last-error] Information about the most recent error.
1.48 +1 -0 XEmacs/xemacs/lisp/menubar-items.el
Index: menubar-items.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/menubar-items.el,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -p -r1.47 -r1.48
--- menubar-items.el 2005/05/10 17:35:58 1.47
+++ menubar-items.el 2005/11/16 12:13:03 1.48
@@ -1559,6 +1559,7 @@ Write your filter like this:
("%_Other"
["%_Current Installation Info" describe-installation
:active (boundp 'Installation-string)]
+ ["%_Known Problems" view-xemacs-problems ]
["%_Obtaining the Latest Version" describe-distribution]
["%_No Warranty" describe-no-warranty]
["XEmacs %_License" describe-copying]