diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-07-16 07:45:52 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-07-16 07:45:52 +0000 |
commit | c7607b94f52c04bcc4e1e8b00ce954c9e34c3e19 (patch) | |
tree | 8d84d5379ef49e50fa966cb3fc06f2c974b1bdb5 /src/s/vms.h | |
parent | 2c369af74f77c013250f3f7ba2cca52abb941e39 (diff) | |
download | emacs-c7607b94f52c04bcc4e1e8b00ce954c9e34c3e19.tar.gz |
* sysdep.c: Remove code depending on NEED_PTEM_H, unused. Remove
if 0-ed code.
(baud_convert): Don't depend on BAUD_CONVERT, all definitions the
were the same as the default.
* s/vms.h (BAUD_CONVERT): Remove, same as the default.
Remove boilerplate comments.
* s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
(HAVE_SYSVIPC): Remove, unused.
(LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
Diffstat (limited to 'src/s/vms.h')
-rw-r--r-- | src/s/vms.h | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/src/s/vms.h b/src/s/vms.h index 6e269e61a0d..7c2d4ad43d1 100644 --- a/src/s/vms.h +++ b/src/s/vms.h @@ -33,43 +33,18 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #define SYSTEM_TYPE "vax-vms" -/* NOMULTIPLEJOBS should be defined if your system's shell - does not have "job control" (the ability to stop a program, - run some other program, then continue the first one). */ - -/* #define NOMULTIPLEJOBS */ - -/* INTERRUPT_INPUT controls a default for Unix systems. - VMS uses a separate mechanism. */ - -/* #define INTERRUPT_INPUT */ - /* Letter to use in finding device name of first pty, if system supports pty's. 'a' means it is /dev/ptya0 */ #define FIRST_PTY_LETTER 'a' /* - * Define HAVE_PTYS if the system supports pty devices. - */ - -/* #define HAVE_PTYS */ - -/* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */ - -/* #define HAVE_SOCKETS */ - -/* * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate * The 4.2 opendir, etc., library functions. */ #define NONSYSTEM_DIR_LIBRARY -/* Define this symbol if your system has the functions bcopy, etc. */ - -/* #define BSTRING */ - /* subprocesses should be defined if you want to have code for asynchronous subprocesses (as used in M-x compile and M-x shell). @@ -78,24 +53,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #define subprocesses -/* If your system uses COFF (Common Object File Format) then define the - preprocessor symbol "COFF". */ - -/* #define COFF */ - -/* define MAIL_USE_FLOCK if the mailer uses flock - to interlock access to /usr/spool/mail/$USER. - The alternative is that a lock file named - /usr/spool/mail/$USER.lock. */ - -/* #define MAIL_USE_FLOCK */ - -/* Define CLASH_DETECTION if you want lock files to be written - so that Emacs can tell instantly when you try to modify - a file that someone else has modified in his Emacs. */ - -/* #define CLASH_DETECTION */ - /* Define the maximum record length for print strings, if needed. */ #define MAX_PRINT_CHARS 300 @@ -225,12 +182,6 @@ globalref char sdata[]; #define DATA_START (((int) sdata + 511) & ~511) #define TEXT_START 512 -/* Baud-rate values from tty status are not standard. */ - -#define BAUD_CONVERT \ -{ 0, 50, 75, 110, 134, 150, 300, 600, 1200, 1800, \ - 2000, 2400, 3600, 4800, 7200, 9600, 19200 } - #define PURESIZE 330000 /* Stdio FILE type has extra indirect on VMS, so must alter this macro. */ |