aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-04-08 06:57:54 +0000
committerRichard M. Stallman1993-04-08 06:57:54 +0000
commit6de6752c6cdc63f759805f6d110f94bba599201e (patch)
tree8f7fb65cec528aa86b236dac8ae754bf0e6c9af3
parent3941a1796f392df6a5235c2459a0f55e0b1b3e93 (diff)
downloademacs-6de6752c6cdc63f759805f6d110f94bba599201e.tar.gz
emacs-6de6752c6cdc63f759805f6d110f94bba599201e.zip
Add copyright notice.
-rw-r--r--lisp/emacs-lisp/lucid.el22
1 files changed, 22 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/lucid.el b/lisp/emacs-lisp/lucid.el
index d1b541d34b9..5ff77c5b01e 100644
--- a/lisp/emacs-lisp/lucid.el
+++ b/lisp/emacs-lisp/lucid.el
@@ -1,3 +1,23 @@
1;;; lucid.el --- Emulate some Lucid Emacs functions.
2;; Copyright (C) 1993 Free Software Foundation, Inc.
3
4;; This file is part of GNU Emacs.
5
6;; GNU Emacs is free software; you can redistribute it and/or modify
7;; it under the terms of the GNU General Public License as published by
8;; the Free Software Foundation; either version 2, or (at your option)
9;; any later version.
10
11;; GNU Emacs is distributed in the hope that it will be useful,
12;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;; GNU General Public License for more details.
15
16;; You should have received a copy of the GNU General Public License
17;; along with GNU Emacs; see the file COPYING. If not, write to
18;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20
1(defun add-timeout (secs function object &optional resignal) 21(defun add-timeout (secs function object &optional resignal)
2 (run-at-time secs resignal function object)) 22 (run-at-time secs resignal function object))
3 23
@@ -152,3 +172,5 @@ ll (fset 'set-screen-width 'set-frame-width)
152(fset 'window-screen 'window-frame) 172(fset 'window-screen 'window-frame)
153(fset 'x-create-screen 'x-create-frame) 173(fset 'x-create-screen 'x-create-frame)
154(fset 'x-new-screen 'new-frame) 174(fset 'x-new-screen 'new-frame)
175
176;;; end of lucid.el