Mercurial > emacs
comparison lisp/emulation/edt-mapper.el @ 90200:f9a65d7ebd29
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-68
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 459-473)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 86-87)
- Update from CVS
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 07 Jul 2005 12:43:14 +0000 |
parents | 68c22ea6027c 18a818a2ee7c |
children | edf295560b5a |
comparison
equal
deleted
inserted
replaced
90199:bb71c6cf2009 | 90200:f9a65d7ebd29 |
---|---|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
19 ;; GNU General Public License for more details. | 19 ;; GNU General Public License for more details. |
20 | 20 |
21 ;; You should have received a copy of the GNU General Public License | 21 ;; You should have received a copy of the GNU General Public License |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02111-1307, USA. | 24 ;; Boston, MA 02110-1301, USA. |
25 | 25 |
26 ;;; Commentary: | 26 ;;; Commentary: |
27 ;; | 27 ;; |
28 | 28 |
29 ;; [Part of the GNU Emacs EDT Emulation.] | 29 ;; [Part of the GNU Emacs EDT Emulation.] |
111 | 111 |
112 Press any key to exit. ") | 112 Press any key to exit. ") |
113 (sit-for 600) | 113 (sit-for 600) |
114 (kill-emacs t))) | 114 (kill-emacs t))) |
115 | 115 |
116 | |
117 ;;; | 116 ;;; |
118 ;;; Decide Emacs Variant, GNU Emacs or XEmacs (aka Lucid Emacs). | 117 ;;; Decide Emacs Variant, GNU Emacs or XEmacs (aka Lucid Emacs). |
119 ;;; Determine Window System, and X Server Vendor (if appropriate). | 118 ;;; Determine Window System, and X Server Vendor (if appropriate). |
120 ;;; | 119 ;;; |
121 (defconst edt-x-emacs-p (string-match "XEmacs" emacs-version) | 120 (defconst edt-x-emacs-p (string-match "XEmacs" emacs-version) |
143 (defvar edt-return nil) | 142 (defvar edt-return nil) |
144 (defvar edt-key-seq nil) | 143 (defvar edt-key-seq nil) |
145 (defvar edt-enter-seq nil) | 144 (defvar edt-enter-seq nil) |
146 (defvar edt-return-seq nil) | 145 (defvar edt-return-seq nil) |
147 (defvar edt-term nil) | 146 (defvar edt-term nil) |
147 | |
148 ;; To silence the byte-compiler | |
149 (eval-when-compile | |
150 (defvar EDT-key-name) | |
151 (defvar edt-save-function-key-map)) | |
148 | 152 |
149 ;;; | 153 ;;; |
150 ;;; Determine Terminal Type (if appropriate). | 154 ;;; Determine Terminal Type (if appropriate). |
151 ;;; | 155 ;;; |
152 | 156 |