summaryrefslogtreecommitdiff
path: root/lisp/term/x-win.el
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1993-03-12 19:53:22 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1993-03-12 19:53:22 +0000
commit5cdb3f1e62a589b37d8989fc257d85bfad7bda36 (patch)
treeca8555a94cde442a2fe84c17b0a3dbd99c659e9d /lisp/term/x-win.el
parent43ab8ca40662f6cc981c39901ec563ef422a6a64 (diff)
downloademacs-5cdb3f1e62a589b37d8989fc257d85bfad7bda36.tar.gz
emacs-5cdb3f1e62a589b37d8989fc257d85bfad7bda36.tar.bz2
emacs-5cdb3f1e62a589b37d8989fc257d85bfad7bda36.zip
Added library headers.
Diffstat (limited to 'lisp/term/x-win.el')
-rw-r--r--lisp/term/x-win.el11
1 files changed, 10 insertions, 1 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index 3df0f978913..988c0b3d28f 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -1,4 +1,8 @@
-;; Parse switches controlling how Emacs interfaces with X window system.
+;;; x-win.el --- parse switches controlling interface with X window system
+
+;; Author: FSF
+;; Keywords: terminals
+
;; Copyright (C) 1990 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -18,6 +22,7 @@
;; file named COPYING. Among other things, the copyright notice
;; and this notice must be preserved on all copies.
+;;; Commentary:
;; X-win.el: this file is loaded from ../lisp/startup.el when it recognizes
;; that X windows are to be used. Command line switches are parsed and those
@@ -26,6 +31,8 @@
;; startup.el will then examine startup files, and eventually call the hooks
;; which create the first window (s).
+
+;;; Code:
;; These are the standard X switches from the Xt Initialize.c file of
;; Release 4.
@@ -520,3 +527,5 @@ This returns ARGS with the arguments that have been processed removed."
;;; Turn off window-splitting optimization; X is usually fast enough
;;; that this is only annoying.
(setq split-window-keep-point t)
+
+;;; x-win.el ends here