aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Preble1991-04-10 14:06:18 +0000
committerBrian Preble1991-04-10 14:06:18 +0000
commit5d11560e4c14b6665712fced04b16b62bc20d1fd (patch)
tree597e9a27b884c735211771d0203dd94419736955
parent570d76241f1618c716cbc2451f8cdb0bb46f0e20 (diff)
downloademacs-5d11560e4c14b6665712fced04b16b62bc20d1fd.tar.gz
emacs-5d11560e4c14b6665712fced04b16b62bc20d1fd.zip
*** empty log message ***
-rw-r--r--lisp/mouse.el2
-rw-r--r--lisp/progmodes/modula2.el50
2 files changed, 26 insertions, 26 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 9c9bc4921b6..5ca1c02c252 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -21,7 +21,7 @@
21 21
22 22
23(defun mouse-select () 23(defun mouse-select ()
24 "Select Emacs window the mouse is on." 24 "Select the Emacs window the mouse is on."
25 (interactive "@")) 25 (interactive "@"))
26 26
27(defun mouse-delete-window () 27(defun mouse-delete-window ()
diff --git a/lisp/progmodes/modula2.el b/lisp/progmodes/modula2.el
index 1027bfee09a..eee1ece3a00 100644
--- a/lisp/progmodes/modula2.el
+++ b/lisp/progmodes/modula2.el
@@ -8,7 +8,7 @@
8 8
9;;; Added by TEP 9;;; Added by TEP
10(defvar m2-mode-syntax-table nil 10(defvar m2-mode-syntax-table nil
11 "Syntax table in use in Modula-2-mode buffers.") 11 "Syntax table in use in Modula-2 buffers.")
12 12
13(defvar m2-compile-command "m2c" 13(defvar m2-compile-command "m2c"
14 "Command to compile Modula-2 programs") 14 "Command to compile Modula-2 programs")
@@ -76,28 +76,28 @@
76(defvar m2-indent 5 "*This variable gives the indentation in Modula-2-Mode") 76(defvar m2-indent 5 "*This variable gives the indentation in Modula-2-Mode")
77 77
78(defun modula-2-mode () 78(defun modula-2-mode ()
79"This is a mode intended to support program development in Modula-2. 79 "This is a mode intended to support program development in Modula-2.
80All control constructs of Modula-2 can be reached by typing 80All control constructs of Modula-2 can be reached by typing C-c
81Control-C followed by the first character of the construct. 81followed by the first character of the construct.
82\\{m2-mode-map} 82\\<m2-mode-map>
83 Control-c b begin Control-c c case 83 \\[m2-begin] begin \\[m2-case] case
84 Control-c d definition Control-c e else 84 \\[m2-definition] definition \\[m2-else] else
85 Control-c f for Control-c h header 85 \\[m2-for] for \\[m2-header] header
86 Control-c i if Control-c m module 86 \\[m2-if] if \\[m2-module] module
87 Control-c l loop Control-c o or 87 \\[m2-loop] loop \\[m2-or] or
88 Control-c p procedure Control-c Control-w with 88 \\[m2-procedure] procedure Control-c Control-w with
89 Control-c r record Control-c s stdio 89 \\[m2-record] record \\[m2-stdio] stdio
90 Control-c t type Control-c u until 90 \\[m2-type] type \\[m2-until] until
91 Control-c v var Control-c w while 91 \\[m2-var] var \\[m2-while] while
92 Control-c x export Control-c y import 92 \\[m2-export] export \\[m2-import] import
93 Control-c { begin-comment Control-c } end-comment 93 \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
94 Control-c Control-z suspend-emacs Control-c Control-t toggle 94 \\[suspend-emacs] suspend Emacs \\[m2-toggle] toggle
95 Control-c Control-c compile Control-x ` next-error 95 \\[m2-compile] compile \\[m2-next-error] next-error
96 Control-c Control-l link 96 \\[m2-link] link
97 97
98 m2-indent controls the number of spaces for each indentation. 98 `m2-indent' controls the number of spaces for each indentation.
99 m2-compile-command holds the command to compile a Modula-2 program. 99 `m2-compile-command' holds the command to compile a Modula-2 program.
100 m2-link-command holds the command to link a Modula-2 program." 100 `m2-link-command' holds the command to link a Modula-2 program."
101 (interactive) 101 (interactive)
102 (kill-all-local-variables) 102 (kill-all-local-variables)
103 (use-local-map m2-mode-map) 103 (use-local-map m2-mode-map)
@@ -303,14 +303,14 @@ Control-C followed by the first character of the construct.
303(defun m2-stdio () 303(defun m2-stdio ()
304 (interactive) 304 (interactive)
305 (insert " 305 (insert "
306>FROM TextIO IMPORT 306FROM TextIO IMPORT
307 WriteCHAR, ReadCHAR, WriteINTEGER, ReadINTEGER, 307 WriteCHAR, ReadCHAR, WriteINTEGER, ReadINTEGER,
308 WriteCARDINAL, ReadCARDINAL, WriteBOOLEAN, ReadBOOLEAN, 308 WriteCARDINAL, ReadCARDINAL, WriteBOOLEAN, ReadBOOLEAN,
309 WriteREAL, ReadREAL, WriteBITSET, ReadBITSET, 309 WriteREAL, ReadREAL, WriteBITSET, ReadBITSET,
310 WriteBasedCARDINAL, ReadBasedCARDINAL, WriteChars, ReadChars, 310 WriteBasedCARDINAL, ReadBasedCARDINAL, WriteChars, ReadChars,
311 WriteString, ReadString, WhiteSpace, EndOfLine; 311 WriteString, ReadString, WhiteSpace, EndOfLine;
312 312
313>FROM SysStreams IMPORT sysIn, sysOut, sysErr; 313FROM SysStreams IMPORT sysIn, sysOut, sysErr;
314 314
315")) 315"))
316 316