annotate src/m/ncr386.h @ 43322:80c00f33bf18

(eshell-hist-initialize): When in the minibuffer, use the global value of `eshell-history-ring', and never save it to disk, or ask to save it to disk. This allows users of session.el to control whether its global state should be persisted or not. (eshell-add-command-to-history): Don't write Eshell's history out to disk, let the governing mode control that upon exit. (eshell-add-input-to-history): New function, with most of the code from eshell-add-to-history. (eshell-add-command-to-history): New function, to record in eshell-history the commands run via eshell-command. (eshell-add-to-history): Call eshell-add-command-to-history to do most of the work.
author John Wiegley <johnw@newartisans.com>
date Sat, 16 Feb 2002 07:11:05 +0000
parents ca0aead90c7b
children 695cf19ef79e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11339
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 #include "intel386.h"
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3 #ifndef __GNUC__
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4 /* Allow emacs to link with "bcopy()" unresolved. Works around a
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 problem where /usr/lib/libX11.so provides bcopy, but
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 /usr/ccs/lib/libX11.so does not. */
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 #define LD_SWITCH_X_DEFAULT -Wl,-z,nodefs
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 #else /* __GNUC__ */
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 /* Assuming we are using GNU ld, pass a -R option to it
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 so that shared libraries will be found at execution time
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 just as they are found at link time. */
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 #define LD_SWITCH_X_DEFAULT -Xlinker LD_SWITCH_X_SITE_AUX
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14
ca0aead90c7b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 #endif /* __GNUC__ */