comparison man/xemacs-faq.texi @ 353:3b3709405255 r21-1-6

Import from CVS: tag r21-1-6
author cvs
date Mon, 13 Aug 2007 10:55:33 +0200
parents 8bec6624d99b
children 8e84bee8ddd0
comparison
equal deleted inserted replaced
352:e7288c5461ae 353:3b3709405255
5 @setchapternewpage off 5 @setchapternewpage off
6 @c %**end of header 6 @c %**end of header
7 @finalout 7 @finalout
8 @titlepage 8 @titlepage
9 @title XEmacs FAQ 9 @title XEmacs FAQ
10 @subtitle Frequently asked questions about XEmacs @* Last Modified: $Date: 1999/05/13 12:19:40 $ 10 @subtitle Frequently asked questions about XEmacs @* Last Modified: $Date: 1999/08/15 01:29:53 $
11 @sp 1 11 @sp 1
12 @author Tony Rossini <arossini@@stat.sc.edu> 12 @author Tony Rossini <arossini@@stat.sc.edu>
13 @author Ben Wing <wing@@666.com> 13 @author Ben Wing <wing@@666.com>
14 @author Chuck Thompson <cthomp@@xemacs.org> 14 @author Chuck Thompson <cthomp@@xemacs.org>
15 @author Steve Baur <steve@@xemacs.org> 15 @author Steve Baur <steve@@xemacs.org>
303 * Q4.3.4:: Movemail is also distributed by Netscape? Can that cause problems? 303 * Q4.3.4:: Movemail is also distributed by Netscape? Can that cause problems?
304 * Q4.3.5:: Where do I find pstogif (required by tm)? 304 * Q4.3.5:: Where do I find pstogif (required by tm)?
305 305
306 Sparcworks, EOS, and WorkShop: 306 Sparcworks, EOS, and WorkShop:
307 * Q4.4.1:: What is SPARCworks, EOS, and WorkShop 307 * Q4.4.1:: What is SPARCworks, EOS, and WorkShop
308 * Q4.4.2:: How do I start the Sun Workshop support in XEmacs 21?
308 309
309 Energize: 310 Energize:
310 * Q4.5.1:: What is/was Energize? 311 * Q4.5.1:: What is/was Energize?
311 312
312 Infodock: 313 Infodock:
4084 * Q4.3.4:: Movemail is also distributed by Netscape? Can that cause problems? 4085 * Q4.3.4:: Movemail is also distributed by Netscape? Can that cause problems?
4085 * Q4.3.5:: Where do I find pstogif (required by tm)? 4086 * Q4.3.5:: Where do I find pstogif (required by tm)?
4086 4087
4087 Sparcworks, EOS, and WorkShop: 4088 Sparcworks, EOS, and WorkShop:
4088 * Q4.4.1:: What is SPARCworks, EOS, and WorkShop 4089 * Q4.4.1:: What is SPARCworks, EOS, and WorkShop
4090 * Q4.4.2:: How do I start the Sun Workshop support in XEmacs 21?
4089 4091
4090 Energize: 4092 Energize:
4091 * Q4.5.1:: What is/was Energize? 4093 * Q4.5.1:: What is/was Energize?
4092 4094
4093 Infodock: 4095 Infodock:
4537 @iftex 4539 @iftex
4538 @* 4540 @*
4539 @end iftex 4541 @end iftex
4540 @uref{ftp://ftp.cdrom.com/pub/tex/ctan/support/latex2html/}. 4542 @uref{ftp://ftp.cdrom.com/pub/tex/ctan/support/latex2html/}.
4541 4543
4542 @node Q4.4.1, Q4.5.1, Q4.3.5, Subsystems 4544 @node Q4.4.1, Q4.4.2, Q4.3.5, Subsystems
4543 @unnumberedsec 4.4: Sparcworks, EOS, and WorkShop 4545 @unnumberedsec 4.4: Sparcworks, EOS, and WorkShop
4544 @unnumberedsubsec Q4.4.1: What is SPARCworks, EOS, and WorkShop? 4546 @unnumberedsubsec Q4.4.1: What is SPARCworks, EOS, and WorkShop?
4545 4547
4546 @email{turner@@lanl.gov, John Turner} writes: 4548 @email{turner@@lanl.gov, John Turner} writes:
4547 4549
4581 @* 4583 @*
4582 @end iftex 4584 @end iftex
4583 @uref{http://www.sun.com/software/Products/Developer-products/programs.html}. 4585 @uref{http://www.sun.com/software/Products/Developer-products/programs.html}.
4584 @end quotation 4586 @end quotation
4585 4587
4586 @node Q4.5.1, Q4.6.1, Q4.4.1, Subsystems 4588 @node Q4.4.2, Q4.5.1, Q4.4.1, Subsystems
4589 @unnumberedsubsec Q4.4.2: How do I start the Sun Workshop support in XEmacs 21?
4590
4591 Add the switch ---with-workshop to the configure command when building
4592 XEmacs and put the following in one of your startup files
4593 (e.g. site-start.el or .emacs):
4594
4595 @lisp
4596 (when (featurep 'tooltalk)
4597 (load "tooltalk-macros")
4598 (load "tooltalk-util")
4599 (load "tooltalk-init"))
4600 (when (featurep 'sparcworks)
4601 (load "sunpro-init")
4602 (load "ring")
4603 (load "comint")
4604 (load "annotations")
4605 (sunpro-startup))
4606 @end lisp
4607
4608 If you are not using the latest Workshop (5.0) you have to apply the
4609 following patch:
4610
4611 @format
4612 --- /opt/SUNWspro/lib/eserve.el.ORIG Fri May 14 15:23:26 1999
4613 +++ /opt/SUNWspro/lib/eserve.el Fri May 14 15:24:54 1999
4614 @@@@ -42,7 +42,7 @@@@
4615 (defvar running-xemacs nil "t if we're running XEmacs")
4616 (defvar running-emacs nil "t if we're running GNU Emacs 19")
4617
4618 -(if (string-match "^\\(19\\|20\\)\..*\\(XEmacs\\|Lucid\\)" emacs-version)
4619 +(if (string-match "\\(XEmacs\\|Lucid\\)" emacs-version)
4620 (setq running-xemacs t)
4621 (setq running-emacs t))
4622 @end format
4623
4624
4625
4626 @node Q4.5.1, Q4.6.1, Q4.4.2, Subsystems
4587 @unnumberedsec 4.5: Energize 4627 @unnumberedsec 4.5: Energize
4588 @unnumberedsubsec Q4.5.1: What is/was Energize? 4628 @unnumberedsubsec Q4.5.1: What is/was Energize?
4589 4629
4590 @email{gray@@meteor.harlequin.com, David N Gray} writes: 4630 @email{gray@@meteor.harlequin.com, David N Gray} writes:
4591 @quotation 4631 @quotation
5109 5149
5110 This will then start a second shell. The key is that no buffer named 5150 This will then start a second shell. The key is that no buffer named
5111 @samp{*shell*} can exist. It might be preferable to use @kbd{M-x 5151 @samp{*shell*} can exist. It might be preferable to use @kbd{M-x
5112 rename-uniquely} to rename the @code{*shell*} buffer instead of @kbd{M-x 5152 rename-uniquely} to rename the @code{*shell*} buffer instead of @kbd{M-x
5113 rename-buffer}. 5153 rename-buffer}.
5154
5155 Alternately, you can set the variable @code{shell-multiple-shells}.
5156 If the value of this variable is non-nil, each time shell mode is invoked,
5157 a new shell is made
5114 5158
5115 @node Q5.0.7, Q5.0.8, Q5.0.6, Miscellaneous 5159 @node Q5.0.7, Q5.0.8, Q5.0.6, Miscellaneous
5116 @unnumberedsubsec Q5.0.7: Telnet from shell filters too much 5160 @unnumberedsubsec Q5.0.7: Telnet from shell filters too much
5117 5161
5118 I'm using the Emacs @kbd{M-x shell} function, and I would like to invoke 5162 I'm using the Emacs @kbd{M-x shell} function, and I would like to invoke