Mercurial > emacs
annotate lisp/progmodes/octave-mod.el @ 52747:43147b71150c
*** empty log message ***
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 04 Oct 2003 09:03:16 +0000 |
parents | 695cf19ef79e |
children | 069cb76731fd 375f2633d815 |
rev | line source |
---|---|
17517 | 1 ;;; octave-mod.el --- editing Octave source files under Emacs |
16901 | 2 |
17517 | 3 ;; Copyright (C) 1997 Free Software Foundation, Inc. |
16901 | 4 |
5 ;; Author: Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> | |
6 ;; Author: John Eaton <jwe@bevo.che.wisc.edu> | |
7 ;; Maintainer: Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> | |
8 ;; Keywords: languages | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
27 ;;; Commentary: | |
28 | |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
29 ;; This package provides Emacs support for Octave. |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
30 ;; It defines Octave mode, a major mode for editing |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
31 ;; Octave code. |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
32 |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
33 ;; The file octave-hlp.el provides `octave-help', a facility for looking up |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
34 ;; documentation on a symbol in the Octave info files. |
16901 | 35 |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
36 ;; The file octave-inf.el contains code for interacting with an inferior |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
37 ;; Octave process using comint. |
16901 | 38 |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
39 ;; See the documentation of `octave-mode', `octave-help' and |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
40 ;; `run-octave' for further information on usage and customization. |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
41 |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
42 ;;; Code: |
26157
313a03652df3
Added (require 'custom) and deleted :version line from
Stephen Eglen <stephen@gnu.org>
parents:
25277
diff
changeset
|
43 (require 'custom) |
16901 | 44 |
20781 | 45 (defgroup octave nil |
46 "Major mode for editing Octave source files." | |
47 :group 'languages) | |
48 | |
17533
997e9c9b618b
(inferior-octave-output-list): Declare here
Richard M. Stallman <rms@gnu.org>
parents:
17517
diff
changeset
|
49 (defvar inferior-octave-output-list nil) |
997e9c9b618b
(inferior-octave-output-list): Declare here
Richard M. Stallman <rms@gnu.org>
parents:
17517
diff
changeset
|
50 (defvar inferior-octave-output-string nil) |
997e9c9b618b
(inferior-octave-output-list): Declare here
Richard M. Stallman <rms@gnu.org>
parents:
17517
diff
changeset
|
51 (defvar inferior-octave-receive-in-progress nil) |
997e9c9b618b
(inferior-octave-output-list): Declare here
Richard M. Stallman <rms@gnu.org>
parents:
17517
diff
changeset
|
52 |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
53 (defconst octave-maintainer-address |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
54 "Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>, bug-gnu-emacs@gnu.org" |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
55 "Current maintainer of the Emacs Octave package.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
56 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
57 (defvar octave-abbrev-table nil |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
58 "Abbrev table for Octave's reserved words. |
42445
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
59 Used in `octave-mode' and inferior-octave-mode buffers. |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
60 All Octave abbrevs start with a grave accent (`).") |
42445
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
61 (unless octave-abbrev-table |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
62 (let ((ac abbrevs-changed)) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
63 (define-abbrev-table 'octave-abbrev-table ()) |
42445
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
64 (define-abbrev octave-abbrev-table "`a" "all_va_args" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
65 (define-abbrev octave-abbrev-table "`b" "break" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
66 (define-abbrev octave-abbrev-table "`cs" "case" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
67 (define-abbrev octave-abbrev-table "`ca" "catch" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
68 (define-abbrev octave-abbrev-table "`c" "continue" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
69 (define-abbrev octave-abbrev-table "`el" "else" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
70 (define-abbrev octave-abbrev-table "`eli" "elseif" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
71 (define-abbrev octave-abbrev-table "`et" "end_try_catch" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
72 (define-abbrev octave-abbrev-table "`eu" "end_unwind_protect" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
73 (define-abbrev octave-abbrev-table "`ef" "endfor" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
74 (define-abbrev octave-abbrev-table "`efu" "endfunction" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
75 (define-abbrev octave-abbrev-table "`ei" "endif" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
76 (define-abbrev octave-abbrev-table "`es" "endswitch" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
77 (define-abbrev octave-abbrev-table "`ew" "endwhile" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
78 (define-abbrev octave-abbrev-table "`f" "for" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
79 (define-abbrev octave-abbrev-table "`fu" "function" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
80 (define-abbrev octave-abbrev-table "`gl" "global" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
81 (define-abbrev octave-abbrev-table "`gp" "gplot" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
82 (define-abbrev octave-abbrev-table "`gs" "gsplot" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
83 (define-abbrev octave-abbrev-table "`if" "if ()" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
84 (define-abbrev octave-abbrev-table "`o" "otherwise" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
85 (define-abbrev octave-abbrev-table "`rp" "replot" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
86 (define-abbrev octave-abbrev-table "`r" "return" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
87 (define-abbrev octave-abbrev-table "`s" "switch" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
88 (define-abbrev octave-abbrev-table "`t" "try" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
89 (define-abbrev octave-abbrev-table "`up" "unwind_protect" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
90 (define-abbrev octave-abbrev-table "`upc" "unwind_protect_cleanup" nil 0 t) |
3dbc8d04a492
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík <Pavel@Janik.cz>
parents:
42205
diff
changeset
|
91 (define-abbrev octave-abbrev-table "`w" "while ()" nil 0 t) |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
92 (setq abbrevs-changed ac))) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
93 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
94 (defvar octave-comment-char ?# |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
95 "Character to start an Octave comment.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
96 (defvar octave-comment-start |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
97 (concat (make-string 1 octave-comment-char) " ") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
98 "String to insert to start a new Octave in-line comment.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
99 (defvar octave-comment-start-skip "\\s<+\\s-*" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
100 "Regexp to match the start of an Octave comment up to its body.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
101 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
102 (defvar octave-begin-keywords |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
103 '("for" "function" "if" "switch" "try" "unwind_protect" "while")) |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
104 (defvar octave-else-keywords |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
105 '("case" "catch" "else" "elseif" "otherwise" "unwind_protect_cleanup")) |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
106 (defvar octave-end-keywords |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
107 '("end" "endfor" "endfunction" "endif" "endswitch" "end_try_catch" |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
108 "end_unwind_protect" "endwhile")) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
109 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
110 (defvar octave-reserved-words |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
111 (append octave-begin-keywords |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
112 octave-else-keywords |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
113 octave-end-keywords |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
114 '("all_va_args" "break" "continue" "global" "gplot" "gsplot" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
115 "replot" "return")) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
116 "Reserved words in Octave.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
117 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
118 (defvar octave-text-functions |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
119 '("casesen" "cd" "chdir" "clear" "diary" "dir" "document" "echo" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
120 "edit_history" "format" "gset" "gshow" "help" "history" "hold" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
121 "load" "ls" "more" "run_history" "save" "set" "show" "type" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
122 "which" "who" "whos") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
123 "Text functions in Octave (these names are also reserved).") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
124 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
125 (defvar octave-variables |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
126 '("EDITOR" "EXEC_PATH" "F_DUPFD" "F_GETFD" "F_GETFL" "F_SETFD" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
127 "F_SETFL" "I" "IMAGEPATH" "INFO_FILE" "INFO_PROGRAM" "Inf" "J" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
128 "LOADPATH" "NaN" "OCTAVE_VERSION" "O_APPEND" "O_CREAT" "O_EXCL" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
129 "O_NONBLOCK" "O_RDONLY" "O_RDWR" "O_TRUNC" "O_WRONLY" "PAGER" "PS1" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
130 "PS2" "PS4" "PWD" "SEEK_CUR" "SEEK_END" "SEEK_SET" "__F_DUPFD__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
131 "__F_GETFD__" "__F_GETFL__" "__F_SETFD__" "__F_SETFL__" "__I__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
132 "__Inf__" "__J__" "__NaN__" "__OCTAVE_VERSION__" "__O_APPEND__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
133 "__O_CREAT__" "__O_EXCL__" "__O_NONBLOCK__" "__O_RDONLY__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
134 "__O_RDWR__" "__O_TRUNC__" "__O_WRONLY__" "__PWD__" "__SEEK_CUR__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
135 "__SEEK_END__" "__SEEK_SET__" "__argv__" "__e__" "__eps__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
136 "__error_text__" "__i__" "__inf__" "__j__" "__nan__" "__pi__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
137 "__program_invocation_name__" "__program_name__" "__realmax__" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
138 "__realmin__" "__stderr__" "__stdin__" "__stdout__" "ans" "argv" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
139 "automatic_replot" "beep_on_error" "completion_append_char" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
140 "default_return_value" "default_save_format" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
141 "define_all_return_values" "do_fortran_indexing" "e" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
142 "echo_executing_commands" "empty_list_elements_ok" "eps" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
143 "error_text" "gnuplot_binary" "gnuplot_has_multiplot" "history_file" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
144 "history_size" "ignore_function_time_stamp" "implicit_str_to_num_ok" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
145 "inf" "nan" "nargin" "ok_to_lose_imaginary_part" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
146 "output_max_field_width" "output_precision" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
147 "page_output_immediately" "page_screen_output" "pi" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
148 "prefer_column_vectors" "prefer_zero_one_indexing" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
149 "print_answer_id_name" "print_empty_dimensions" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
150 "program_invocation_name" "program_name" "propagate_empty_matrices" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
151 "realmax" "realmin" "resize_on_range_error" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
152 "return_last_computed_value" "save_precision" "saving_history" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
153 "silent_functions" "split_long_rows" "stderr" "stdin" "stdout" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
154 "string_fill_char" "struct_levels_to_print" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
155 "suppress_verbose_help_message" "treat_neg_dim_as_zero" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
156 "warn_assign_as_truth_value" "warn_comma_in_global_decl" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
157 "warn_divide_by_zero" "warn_function_name_clash" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
158 "warn_missing_semicolon" "whitespace_in_literal_matrix") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
159 "Builtin variables in Octave.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
160 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
161 (defvar octave-function-header-regexp |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
162 (concat "^\\s-*\\<\\(function\\)\\>" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
163 "\\([^=;\n]*=[ \t]*\\|[ \t]*\\)\\(\\w+\\)\\>") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
164 "Regexp to match an Octave function header. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
165 The string `function' and its name are given by the first and third |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
166 parenthetical grouping.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
167 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
168 (defvar octave-font-lock-keywords |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
169 (list |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
170 ;; Fontify all builtin keywords. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
171 (cons (concat "\\<\\(" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
172 (mapconcat 'identity octave-reserved-words "\\|") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
173 (mapconcat 'identity octave-text-functions "\\|") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
174 "\\)\\>") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
175 'font-lock-keyword-face) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
176 ;; Fontify all builtin operators. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
177 (cons "\\(&\\||\\|<=\\|>=\\|==\\|<\\|>\\|!=\\|!\\)" |
28070
7079931424be
(octave-font-lock-keywords): To font-lock the
Gerd Moellmann <gerd@gnu.org>
parents:
26157
diff
changeset
|
178 (if (boundp 'font-lock-builtin-face) |
7079931424be
(octave-font-lock-keywords): To font-lock the
Gerd Moellmann <gerd@gnu.org>
parents:
26157
diff
changeset
|
179 'font-lock-builtin-face |
7079931424be
(octave-font-lock-keywords): To font-lock the
Gerd Moellmann <gerd@gnu.org>
parents:
26157
diff
changeset
|
180 'font-lock-preprocessor-face)) |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
181 ;; Fontify all builtin variables. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
182 (cons (concat "\\<\\(" |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
183 (mapconcat 'identity octave-variables "\\|") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
184 "\\)\\>") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
185 'font-lock-variable-name-face) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
186 ;; Fontify all function declarations. |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
187 (list octave-function-header-regexp |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
188 '(1 font-lock-keyword-face) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
189 '(3 font-lock-function-name-face nil t))) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
190 "Additional Octave expressions to highlight.") |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
191 |
20781 | 192 (defcustom inferior-octave-buffer "*Inferior Octave*" |
193 "*Name of buffer for running an inferior Octave process." | |
194 :type 'string | |
195 :group 'octave-inferior) | |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
196 |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
197 (defvar inferior-octave-process nil) |
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
198 |
16901 | 199 (defvar octave-mode-map nil |
200 "Keymap used in Octave mode.") | |
201 (if octave-mode-map | |
202 () | |
203 (let ((map (make-sparse-keymap))) | |
204 (define-key map "`" 'octave-abbrev-start) | |
205 (define-key map ";" 'octave-electric-semi) | |
206 (define-key map " " 'octave-electric-space) | |
207 (define-key map "\n" 'octave-reindent-then-newline-and-indent) | |
208 (define-key map "\t" 'indent-according-to-mode) | |
209 (define-key map "\e;" 'octave-indent-for-comment) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
210 (define-key map "\e\n" 'octave-indent-new-comment-line) |
16901 | 211 (define-key map "\e\t" 'octave-complete-symbol) |
212 (define-key map "\M-\C-a" 'octave-beginning-of-defun) | |
213 (define-key map "\M-\C-e" 'octave-end-of-defun) | |
214 (define-key map "\M-\C-h" 'octave-mark-defun) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
215 (define-key map "\M-\C-q" 'octave-indent-defun) |
16901 | 216 (define-key map "\C-c;" 'octave-comment-region) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
217 (define-key map "\C-c:" 'octave-uncomment-region) |
16901 | 218 (define-key map "\C-c\C-b" 'octave-submit-bug-report) |
219 (define-key map "\C-c\C-p" 'octave-previous-code-line) | |
220 (define-key map "\C-c\C-n" 'octave-next-code-line) | |
221 (define-key map "\C-c\C-a" 'octave-beginning-of-line) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
222 (define-key map "\C-c\C-e" 'octave-end-of-line) |
16901 | 223 (define-key map "\C-c\M-\C-n" 'octave-forward-block) |
224 (define-key map "\C-c\M-\C-p" 'octave-backward-block) | |
225 (define-key map "\C-c\M-\C-u" 'octave-backward-up-block) | |
226 (define-key map "\C-c\M-\C-d" 'octave-down-block) | |
227 (define-key map "\C-c\M-\C-h" 'octave-mark-block) | |
228 (define-key map "\C-c]" 'octave-close-block) | |
49334
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
229 (define-key map "\C-c\C-f" 'octave-insert-defun) |
16901 | 230 (define-key map "\C-c\C-h" 'octave-help) |
49334
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
231 (define-key map "\C-c\C-il" 'octave-send-line) |
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
232 (define-key map "\C-c\C-ib" 'octave-send-block) |
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
233 (define-key map "\C-c\C-if" 'octave-send-defun) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
234 (define-key map "\C-c\C-ir" 'octave-send-region) |
49334
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
235 (define-key map "\C-c\C-is" 'octave-show-process-buffer) |
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
236 (define-key map "\C-c\C-ih" 'octave-hide-process-buffer) |
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
237 (define-key map "\C-c\C-ik" 'octave-kill-process) |
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
238 (define-key map "\C-c\C-i\C-l" 'octave-send-line) |
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
239 (define-key map "\C-c\C-i\C-b" 'octave-send-block) |
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
240 (define-key map "\C-c\C-i\C-f" 'octave-send-defun) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
241 (define-key map "\C-c\C-i\C-r" 'octave-send-region) |
49334
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
242 (define-key map "\C-c\C-i\C-s" 'octave-show-process-buffer) |
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
243 (define-key map "\C-c\C-i\C-h" 'octave-hide-process-buffer) |
8dad7ccccdcb
(octave-mode-map): Change C-c i bindings to C-c C-i.
Richard M. Stallman <rms@gnu.org>
parents:
47939
diff
changeset
|
244 (define-key map "\C-c\C-i\C-k" 'octave-kill-process) |
16901 | 245 (setq octave-mode-map map))) |
246 | |
247 (defvar octave-mode-menu | |
248 (list "Octave" | |
249 (list "Lines" | |
250 ["Previous Code Line" octave-previous-code-line t] | |
251 ["Next Code Line" octave-next-code-line t] | |
252 ["Begin of Continuation" octave-beginning-of-line t] | |
253 ["End of Continuation" octave-end-of-line t] | |
254 ["Split Line at Point" octave-indent-new-comment-line t]) | |
255 (list "Blocks" | |
256 ["Next Block" octave-forward-block t] | |
257 ["Previous Block" octave-backward-block t] | |
258 ["Down Block" octave-down-block t] | |
259 ["Up Block" octave-backward-up-block t] | |
260 ["Mark Block" octave-mark-block t] | |
261 ["Close Block" octave-close-block t]) | |
262 (list "Functions" | |
263 ["Begin of Function" octave-beginning-of-defun t] | |
264 ["End of Function" octave-end-of-defun t] | |
265 ["Mark Function" octave-mark-defun t] | |
266 ["Indent Function" octave-indent-defun t] | |
267 ["Insert Function" octave-insert-defun t]) | |
268 "-" | |
269 (list "Debug" | |
270 ["Send Current Line" octave-send-line t] | |
271 ["Send Current Block" octave-send-block t] | |
272 ["Send Current Function" octave-send-defun t] | |
273 ["Send Region" octave-send-region t] | |
274 ["Show Process Buffer" octave-show-process-buffer t] | |
275 ["Hide Process Buffer" octave-hide-process-buffer t] | |
276 ["Kill Process" octave-kill-process t]) | |
277 "-" | |
278 ["Indent Line" indent-according-to-mode t] | |
279 ["Complete Symbol" octave-complete-symbol t] | |
280 "-" | |
281 ["Toggle Abbrev Mode" abbrev-mode t] | |
282 ["Toggle Auto-Fill Mode" auto-fill-mode t] | |
283 "-" | |
284 ["Submit Bug Report" octave-submit-bug-report t] | |
285 "-" | |
286 ["Describe Octave Mode" octave-describe-major-mode t] | |
287 ["Lookup Octave Index" octave-help t]) | |
288 "Menu for Octave mode.") | |
289 | |
290 (defvar octave-mode-syntax-table nil | |
291 "Syntax table in use in octave-mode buffers.") | |
292 (if octave-mode-syntax-table | |
293 () | |
294 (let ((table (make-syntax-table))) | |
295 (modify-syntax-entry ?\r " " table) | |
296 (modify-syntax-entry ?+ "." table) | |
297 (modify-syntax-entry ?- "." table) | |
298 (modify-syntax-entry ?= "." table) | |
299 (modify-syntax-entry ?* "." table) | |
300 (modify-syntax-entry ?/ "." table) | |
301 (modify-syntax-entry ?> "." table) | |
302 (modify-syntax-entry ?< "." table) | |
303 (modify-syntax-entry ?& "." table) | |
304 (modify-syntax-entry ?| "." table) | |
305 (modify-syntax-entry ?! "." table) | |
306 (modify-syntax-entry ?\\ "\\" table) | |
307 (modify-syntax-entry ?\' "." table) | |
308 (modify-syntax-entry ?\` "w" table) | |
309 (modify-syntax-entry ?\" "\"" table) | |
310 (modify-syntax-entry ?. "w" table) | |
311 (modify-syntax-entry ?_ "w" table) | |
312 (modify-syntax-entry ?\% "." table) | |
313 (modify-syntax-entry ?\# "<" table) | |
314 (modify-syntax-entry ?\n ">" table) | |
315 (setq octave-mode-syntax-table table))) | |
316 | |
20781 | 317 (defcustom octave-auto-indent nil |
318 "*Non-nil means indent line after a semicolon or space in Octave mode." | |
319 :type 'boolean | |
26157
313a03652df3
Added (require 'custom) and deleted :version line from
Stephen Eglen <stephen@gnu.org>
parents:
25277
diff
changeset
|
320 :group 'octave) |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
321 |
20781 | 322 (defcustom octave-auto-newline nil |
323 "*Non-nil means automatically newline after a semicolon in Octave mode." | |
324 :type 'boolean | |
325 :group 'octave) | |
16901 | 326 |
20781 | 327 (defcustom octave-blink-matching-block t |
16901 | 328 "*Control the blinking of matching Octave block keywords. |
329 Non-nil means show matching begin of block when inserting a space, | |
20781 | 330 newline or semicolon after an else or end keyword." |
331 :type 'boolean | |
332 :group 'octave) | |
333 (defcustom octave-block-offset 2 | |
334 "*Extra indentation applied to statements in Octave block structures." | |
335 :type 'integer | |
336 :group 'octave) | |
16901 | 337 |
338 (defvar octave-block-begin-regexp | |
339 (concat "\\<\\(" | |
340 (mapconcat 'identity octave-begin-keywords "\\|") | |
341 "\\)\\>")) | |
342 (defvar octave-block-else-regexp | |
343 (concat "\\<\\(" | |
344 (mapconcat 'identity octave-else-keywords "\\|") | |
345 "\\)\\>")) | |
346 (defvar octave-block-end-regexp | |
347 (concat "\\<\\(" | |
348 (mapconcat 'identity octave-end-keywords "\\|") | |
349 "\\)\\>")) | |
350 (defvar octave-block-begin-or-end-regexp | |
351 (concat octave-block-begin-regexp "\\|" octave-block-end-regexp)) | |
352 (defvar octave-block-else-or-end-regexp | |
353 (concat octave-block-else-regexp "\\|" octave-block-end-regexp)) | |
354 (defvar octave-block-match-alist | |
355 '(("for" . ("end" "endfor")) | |
356 ("function" . ("end" "endfunction")) | |
357 ("if" . ("else" "elseif" "end" "endif")) | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
358 ("switch" . ("case" "otherwise" "end" "endswitch")) |
16901 | 359 ("try" . ("catch" "end" "end_try_catch")) |
360 ("unwind_protect" . ("unwind_protect_cleanup" "end" | |
361 "end_unwind_protect")) | |
362 ("while" . ("end" "endwhile"))) | |
363 "Alist with Octave's matching block keywords. | |
364 Has Octave's begin keywords as keys and a list of the matching else or | |
365 end keywords as associated values.") | |
366 | |
367 (defvar octave-block-comment-start | |
368 (concat (make-string 2 octave-comment-char) " ") | |
369 "String to insert to start a new Octave comment on an empty line.") | |
370 | |
20781 | 371 (defcustom octave-continuation-offset 4 |
372 "*Extra indentation applied to Octave continuation lines." | |
373 :type 'integer | |
374 :group 'octave) | |
16901 | 375 (defvar octave-continuation-regexp |
376 "[^#%\n]*\\(\\\\\\|\\.\\.\\.\\)\\s-*\\(\\s<.*\\)?$") | |
20781 | 377 (defcustom octave-continuation-string "\\" |
378 "*Character string used for Octave continuation lines. Normally \\." | |
379 :type 'string | |
380 :group 'octave) | |
16901 | 381 |
382 (defvar octave-completion-alist nil | |
383 "Alist of Octave symbols for completion in Octave mode. | |
384 Each element looks like (VAR . VAR), where the car and cdr are the same | |
385 symbol (an Octave command or variable name). | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
386 Currently, only builtin variables can be completed.") |
16901 | 387 |
388 (defvar octave-mode-imenu-generic-expression | |
389 (list | |
390 ;; Functions | |
391 (list nil octave-function-header-regexp 3)) | |
392 "Imenu expression for Octave mode. See `imenu-generic-expression'.") | |
393 | |
20781 | 394 (defcustom octave-mode-startup-message t |
42205 | 395 "*nil means do not display the Octave mode startup message." |
20781 | 396 :type 'boolean |
397 :group 'octave) | |
16901 | 398 |
20781 | 399 (defcustom octave-mode-hook nil |
400 "*Hook to be run when Octave mode is started." | |
401 :type 'hook | |
402 :group 'octave) | |
16901 | 403 |
20781 | 404 (defcustom octave-send-show-buffer t |
405 "*Non-nil means display `inferior-octave-buffer' after sending to it." | |
406 :type 'boolean | |
407 :group 'octave) | |
408 (defcustom octave-send-line-auto-forward t | |
16901 | 409 "*Control auto-forward after sending to the inferior Octave process. |
20781 | 410 Non-nil means always go to the next Octave code line after sending." |
411 :type 'boolean | |
412 :group 'octave) | |
413 (defcustom octave-send-echo-input t | |
414 "*Non-nil means echo input sent to the inferior Octave process." | |
415 :type 'boolean | |
416 :group 'octave) | |
16901 | 417 |
418 | |
419 ;;;###autoload | |
420 (defun octave-mode () | |
421 "Major mode for editing Octave code. | |
422 | |
423 This mode makes it easier to write Octave code by helping with | |
424 indentation, doing some of the typing for you (with Abbrev mode) and by | |
425 showing keywords, comments, strings, etc. in different faces (with | |
426 Font Lock mode on terminals that support it). | |
427 | |
428 Octave itself is a high-level language, primarily intended for numerical | |
429 computations. It provides a convenient command line interface for | |
430 solving linear and nonlinear problems numerically. Function definitions | |
431 can also be stored in files, and it can be used in a batch mode (which | |
432 is why you need this mode!). | |
433 | |
434 The latest released version of Octave is always available via anonymous | |
435 ftp from bevo.che.wisc.edu in the directory `/pub/octave'. Complete | |
436 source and binaries for several popular systems are available. | |
437 | |
438 Type \\[list-abbrevs] to display the built-in abbrevs for Octave keywords. | |
439 | |
440 Keybindings | |
441 =========== | |
442 | |
443 \\{octave-mode-map} | |
444 | |
445 Variables you can use to customize Octave mode | |
446 ============================================== | |
447 | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
448 octave-auto-indent |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
449 Non-nil means indent current line after a semicolon or space. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
450 Default is nil. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
451 |
16901 | 452 octave-auto-newline |
453 Non-nil means auto-insert a newline and indent after a semicolon. | |
454 Default is nil. | |
455 | |
456 octave-blink-matching-block | |
457 Non-nil means show matching begin of block when inserting a space, | |
458 newline or semicolon after an else or end keyword. Default is t. | |
459 | |
460 octave-block-offset | |
461 Extra indentation applied to statements in block structures. | |
462 Default is 2. | |
463 | |
464 octave-continuation-offset | |
465 Extra indentation applied to Octave continuation lines. | |
466 Default is 4. | |
467 | |
468 octave-continuation-string | |
469 String used for Octave continuation lines. | |
470 Default is a backslash. | |
471 | |
472 octave-mode-startup-message | |
42205 | 473 nil means do not display the Octave mode startup message. |
16901 | 474 Default is t. |
475 | |
476 octave-send-echo-input | |
477 Non-nil means always display `inferior-octave-buffer' after sending a | |
478 command to the inferior Octave process. | |
479 | |
480 octave-send-line-auto-forward | |
481 Non-nil means always go to the next unsent line of Octave code after | |
482 sending a line to the inferior Octave process. | |
483 | |
484 octave-send-echo-input | |
485 Non-nil means echo input sent to the inferior Octave process. | |
486 | |
487 Turning on Octave mode runs the hook `octave-mode-hook'. | |
488 | |
489 To begin using this mode for all `.m' files that you edit, add the | |
490 following lines to your `.emacs' file: | |
491 | |
492 (autoload 'octave-mode \"octave-mod\" nil t) | |
493 (setq auto-mode-alist | |
494 (cons '(\"\\\\.m$\" . octave-mode) auto-mode-alist)) | |
495 | |
496 To automatically turn on the abbrev, auto-fill and font-lock features, | |
497 add the following lines to your `.emacs' file as well: | |
498 | |
499 (add-hook 'octave-mode-hook | |
500 (lambda () | |
501 (abbrev-mode 1) | |
502 (auto-fill-mode 1) | |
503 (if (eq window-system 'x) | |
504 (font-lock-mode 1)))) | |
505 | |
506 To submit a problem report, enter \\[octave-submit-bug-report] from \ | |
507 an Octave mode buffer. | |
508 This automatically sets up a mail buffer with version information | |
509 already added. You just need to add a description of the problem, | |
510 including a reproducible test case and send the message." | |
511 (interactive) | |
512 (kill-all-local-variables) | |
513 | |
514 (use-local-map octave-mode-map) | |
515 (setq major-mode 'octave-mode) | |
516 (setq mode-name "Octave") | |
517 (setq local-abbrev-table octave-abbrev-table) | |
518 (set-syntax-table octave-mode-syntax-table) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
519 |
16901 | 520 (make-local-variable 'indent-line-function) |
521 (setq indent-line-function 'octave-indent-line) | |
522 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
523 (make-local-variable 'comment-start) |
16901 | 524 (setq comment-start octave-comment-start) |
525 (make-local-variable 'comment-end) | |
526 (setq comment-end "") | |
527 (make-local-variable 'comment-column) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
528 (setq comment-column 32) |
16901 | 529 (make-local-variable 'comment-start-skip) |
530 (setq comment-start-skip "\\s<+\\s-*") | |
531 (make-local-variable 'comment-indent-function) | |
532 (setq comment-indent-function 'octave-comment-indent) | |
533 | |
534 (make-local-variable 'parse-sexp-ignore-comments) | |
535 (setq parse-sexp-ignore-comments t) | |
536 (make-local-variable 'paragraph-start) | |
537 (setq paragraph-start (concat "\\s-*$\\|" page-delimiter)) | |
538 (make-local-variable 'paragraph-separate) | |
539 (setq paragraph-separate paragraph-start) | |
540 (make-local-variable 'paragraph-ignore-fill-prefix) | |
541 (setq paragraph-ignore-fill-prefix t) | |
542 (make-local-variable 'fill-paragraph-function) | |
543 (setq fill-paragraph-function 'octave-fill-paragraph) | |
544 (make-local-variable 'adaptive-fill-regexp) | |
545 (setq adaptive-fill-regexp nil) | |
546 (make-local-variable 'fill-column) | |
547 (setq fill-column 72) | |
548 (make-local-variable 'normal-auto-fill-function) | |
549 (setq normal-auto-fill-function 'octave-auto-fill) | |
550 | |
551 (make-local-variable 'font-lock-defaults) | |
552 (setq font-lock-defaults '(octave-font-lock-keywords nil nil)) | |
553 | |
554 (make-local-variable 'imenu-generic-expression) | |
20459 | 555 (setq imenu-generic-expression octave-mode-imenu-generic-expression |
556 imenu-case-fold-search nil) | |
16901 | 557 |
558 (octave-add-octave-menu) | |
559 (octave-initialize-completions) | |
16902
6a94efd704e6
(octave-mode): Delete the startup message.
Richard M. Stallman <rms@gnu.org>
parents:
16901
diff
changeset
|
560 (run-hooks 'octave-mode-hook)) |
16901 | 561 |
562 ;;; Miscellaneous useful functions | |
563 (defun octave-describe-major-mode () | |
564 "Describe the current major mode." | |
565 (interactive) | |
566 (describe-function major-mode)) | |
567 | |
568 (defun octave-point (position) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
569 "Returns the value of point at certain positions." |
16901 | 570 (save-excursion |
571 (cond | |
572 ((eq position 'bol) (beginning-of-line)) | |
573 ((eq position 'eol) (end-of-line)) | |
574 ((eq position 'boi) (back-to-indentation)) | |
575 ((eq position 'bonl) (forward-line 1)) | |
576 ((eq position 'bopl) (forward-line -1)) | |
577 (t (error "unknown buffer position requested: %s" position))) | |
578 (point))) | |
579 | |
580 (defsubst octave-in-comment-p () | |
581 "Returns t if point is inside an Octave comment, nil otherwise." | |
582 (interactive) | |
583 (save-excursion | |
584 (nth 4 (parse-partial-sexp (octave-point 'bol) (point))))) | |
585 | |
586 (defsubst octave-in-string-p () | |
587 "Returns t if point is inside an Octave string, nil otherwise." | |
588 (interactive) | |
589 (save-excursion | |
590 (nth 3 (parse-partial-sexp (octave-point 'bol) (point))))) | |
591 | |
592 (defsubst octave-not-in-string-or-comment-p () | |
593 "Returns t iff point is not inside an Octave string or comment." | |
594 (let ((pps (parse-partial-sexp (octave-point 'bol) (point)))) | |
595 (not (or (nth 3 pps) (nth 4 pps))))) | |
596 | |
597 (defun octave-in-block-p () | |
598 "Returns t if point is inside an Octave block, nil otherwise. | |
599 The block is taken to start at the first letter of the begin keyword and | |
600 to end after the end keyword." | |
601 (let ((pos (point))) | |
602 (save-excursion | |
603 (condition-case nil | |
604 (progn | |
605 (skip-syntax-forward "w") | |
606 (octave-up-block -1) | |
607 (octave-forward-block) | |
608 t) | |
609 (error nil)) | |
610 (< pos (point))))) | |
611 | |
612 (defun octave-in-defun-p () | |
613 "Returns t iff point is inside an Octave function declaration. | |
614 The function is taken to start at the `f' of `function' and to end after | |
615 the end keyword." | |
616 (let ((pos (point))) | |
617 (save-excursion | |
618 (or (and (looking-at "\\<function\\>") | |
619 (octave-not-in-string-or-comment-p)) | |
620 (and (octave-beginning-of-defun) | |
621 (condition-case nil | |
622 (progn | |
623 (octave-forward-block) | |
624 t) | |
625 (error nil)) | |
626 (< pos (point))))))) | |
627 | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
628 (defun octave-maybe-insert-continuation-string () |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
629 (if (or (octave-in-comment-p) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
630 (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
631 (beginning-of-line) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
632 (looking-at octave-continuation-regexp))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
633 nil |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
634 (delete-horizontal-space) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
635 (insert (concat " " octave-continuation-string)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
636 |
23848
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
637 (defvar octave-xemacs-p |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
638 (string-match "XEmacs\\|Lucid" emacs-version)) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
639 |
16901 | 640 ;;; Comments |
641 (defun octave-comment-region (beg end &optional arg) | |
642 "Comment or uncomment each line in the region as Octave code. | |
643 See `comment-region'." | |
644 (interactive "r\nP") | |
645 (let ((comment-start (char-to-string octave-comment-char))) | |
646 (comment-region beg end arg))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
647 |
16901 | 648 (defun octave-uncomment-region (beg end &optional arg) |
649 "Uncomment each line in the region as Octave code." | |
650 (interactive "r\nP") | |
651 (or arg (setq arg 1)) | |
652 (octave-comment-region beg end (- arg))) | |
653 | |
654 | |
655 ;;; Indentation | |
656 (defun calculate-octave-indent () | |
657 "Return appropriate indentation for current line as Octave code. | |
658 Returns an integer (the column to indent to) unless the line is a | |
659 comment line with fixed goal golumn. In that case, returns a list whose | |
660 car is the column to indent to, and whose cdr is the current indentation | |
661 level." | |
662 (let ((is-continuation-line | |
663 (save-excursion | |
664 (if (zerop (octave-previous-code-line)) | |
665 (looking-at octave-continuation-regexp)))) | |
666 (icol 0)) | |
667 (save-excursion | |
668 (beginning-of-line) | |
669 ;; If we can move backward out one level of parentheses, take 1 | |
670 ;; plus the indentation of that parenthesis. Otherwise, go back | |
671 ;; to the beginning of the previous code line, and compute the | |
672 ;; offset this line gives. | |
673 (if (condition-case nil | |
674 (progn | |
675 (up-list -1) | |
676 t) | |
677 (error nil)) | |
678 (setq icol (+ 1 (current-column))) | |
679 (if (zerop (octave-previous-code-line)) | |
680 (progn | |
681 (octave-beginning-of-line) | |
682 (back-to-indentation) | |
683 (setq icol (current-column)) | |
684 (let ((bot (point)) | |
685 (eol (octave-point 'eol))) | |
686 (while (< (point) eol) | |
687 (if (octave-not-in-string-or-comment-p) | |
688 (cond | |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
689 ((looking-at "\\<switch\\>") |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
690 (setq icol (+ icol (* 2 octave-block-offset)))) |
16901 | 691 ((looking-at octave-block-begin-regexp) |
692 (setq icol (+ icol octave-block-offset))) | |
693 ((looking-at octave-block-else-regexp) | |
694 (if (= bot (point)) | |
695 (setq icol (+ icol octave-block-offset)))) | |
696 ((looking-at octave-block-end-regexp) | |
697 (if (not (= bot (point))) | |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
698 (setq icol (- icol |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
699 (octave-block-end-offset))))))) |
16901 | 700 (forward-char))) |
701 (if is-continuation-line | |
702 (setq icol (+ icol octave-continuation-offset))))))) | |
703 (save-excursion | |
704 (back-to-indentation) | |
705 (cond | |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
706 ((and (looking-at octave-block-else-regexp) |
16901 | 707 (octave-not-in-string-or-comment-p)) |
708 (setq icol (- icol octave-block-offset))) | |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
709 ((and (looking-at octave-block-end-regexp) |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
710 (octave-not-in-string-or-comment-p)) |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
711 (setq icol (- icol (octave-block-end-offset)))) |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
712 ((or (looking-at "\\s<\\s<\\s<\\S<") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
713 (octave-before-magic-comment-p)) |
16901 | 714 (setq icol (list 0 icol))) |
715 ((looking-at "\\s<\\S<") | |
716 (setq icol (list comment-column icol))))) | |
717 icol)) | |
718 | |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
719 (defun octave-block-end-offset () |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
720 (save-excursion |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
721 (octave-backward-up-block 1) |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
722 (* octave-block-offset |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
723 (if (string-match (match-string 0) "switch") 2 1)))) |
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
724 |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
725 (defun octave-before-magic-comment-p () |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
726 (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
727 (beginning-of-line) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
728 (and (bobp) (looking-at "\\s-*#!")))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
729 |
16901 | 730 (defun octave-comment-indent () |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
731 (if (or (looking-at "\\s<\\s<\\s<") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
732 (octave-before-magic-comment-p)) |
16901 | 733 0 |
734 (if (looking-at "\\s<\\s<") | |
735 (calculate-octave-indent) | |
736 (skip-syntax-backward " ") | |
17151
0663a5ce936c
(octave-abbrev-table): Add abbrevs for switch,
Karl Heuer <kwzh@gnu.org>
parents:
16911
diff
changeset
|
737 (max (if (bolp) 0 (+ 1 (current-column))) |
16901 | 738 comment-column)))) |
739 | |
740 (defun octave-indent-for-comment () | |
741 "Maybe insert and indent an Octave comment. | |
742 If there is no comment already on this line, create a code-level comment | |
41773 | 743 \(started by two comment characters) if the line is empty, or an in-line |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
744 comment (started by one comment character) otherwise. |
16901 | 745 Point is left after the start of the comment which is properly aligned." |
746 (interactive) | |
747 (indent-for-comment) | |
748 (indent-according-to-mode)) | |
749 | |
750 (defun octave-indent-line (&optional arg) | |
751 "Indent current line as Octave code. | |
752 With optional ARG, use this as offset unless this line is a comment with | |
753 fixed goal column." | |
754 (interactive) | |
755 (or arg (setq arg 0)) | |
756 (let ((icol (calculate-octave-indent)) | |
757 (relpos (- (current-column) (current-indentation)))) | |
758 (if (listp icol) | |
759 (setq icol (car icol)) | |
760 (setq icol (+ icol arg))) | |
761 (if (< icol 0) | |
762 (error "Unmatched end keyword") | |
763 (indent-line-to icol) | |
764 (if (> relpos 0) | |
765 (move-to-column (+ icol relpos)))))) | |
766 | |
767 (defun octave-indent-new-comment-line () | |
768 "Break Octave line at point, continuing comment if within one. | |
769 If within code, insert `octave-continuation-string' before breaking the | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
770 line. If within a string, signal an error. |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
771 The new line is properly indented." |
16901 | 772 (interactive) |
773 (delete-horizontal-space) | |
774 (cond | |
775 ((octave-in-comment-p) | |
776 (indent-new-comment-line)) | |
777 ((octave-in-string-p) | |
778 (error "Cannot split a code line inside a string")) | |
779 (t | |
780 (insert (concat " " octave-continuation-string)) | |
781 (octave-reindent-then-newline-and-indent)))) | |
782 | |
783 (defun octave-indent-defun () | |
784 "Properly indents the Octave function which contains point." | |
785 (interactive) | |
786 (save-excursion | |
787 (octave-mark-defun) | |
788 (message "Indenting function...") | |
789 (indent-region (point) (mark) nil)) | |
790 (message "Indenting function...done.")) | |
791 | |
792 | |
793 ;;; Motion | |
794 (defun octave-next-code-line (&optional arg) | |
795 "Move ARG lines of Octave code forward (backward if ARG is negative). | |
796 Skips past all empty and comment lines. Default for ARG is 1. | |
797 | |
798 On success, return 0. Otherwise, go as far as possible and return -1." | |
799 (interactive "p") | |
800 (or arg (setq arg 1)) | |
801 (beginning-of-line) | |
802 (let ((n 0) | |
803 (inc (if (> arg 0) 1 -1))) | |
804 (while (and (/= arg 0) (= n 0)) | |
805 (setq n (forward-line inc)) | |
806 (while (and (= n 0) | |
807 (looking-at "\\s-*\\($\\|\\s<\\)")) | |
808 (setq n (forward-line inc))) | |
809 (setq arg (- arg inc))) | |
810 n)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
811 |
16901 | 812 (defun octave-previous-code-line (&optional arg) |
813 "Move ARG lines of Octave code backward (forward if ARG is negative). | |
814 Skips past all empty and comment lines. Default for ARG is 1. | |
815 | |
816 On success, return 0. Otherwise, go as far as possible and return -1." | |
817 (interactive "p") | |
818 (or arg (setq arg 1)) | |
819 (octave-next-code-line (- arg))) | |
820 | |
821 (defun octave-beginning-of-line () | |
822 "Move point to beginning of current Octave line. | |
823 If on an empty or comment line, go to the beginning of that line. | |
824 Otherwise, move backward to the beginning of the first Octave code line | |
825 which is not inside a continuation statement, i.e., which does not | |
826 follow a code line ending in `...' or `\\', or is inside an open | |
827 parenthesis list." | |
828 (interactive) | |
829 (beginning-of-line) | |
830 (if (not (looking-at "\\s-*\\($\\|\\s<\\)")) | |
831 (while (or (condition-case nil | |
832 (progn | |
833 (up-list -1) | |
834 (beginning-of-line) | |
835 t) | |
836 (error nil)) | |
837 (and (or (looking-at "\\s-*\\($\\|\\s<\\)") | |
838 (save-excursion | |
839 (if (zerop (octave-previous-code-line)) | |
840 (looking-at octave-continuation-regexp)))) | |
841 (zerop (forward-line -1))))))) | |
842 | |
843 (defun octave-end-of-line () | |
844 "Move point to end of current Octave line. | |
845 If on an empty or comment line, go to the end of that line. | |
846 Otherwise, move forward to the end of the first Octave code line which | |
847 does not end in `...' or `\\' or is inside an open parenthesis list." | |
848 (interactive) | |
849 (end-of-line) | |
850 (if (save-excursion | |
851 (beginning-of-line) | |
852 (looking-at "\\s-*\\($\\|\\s<\\)")) | |
853 () | |
854 (while (or (condition-case nil | |
855 (progn | |
856 (up-list 1) | |
857 (end-of-line) | |
858 t) | |
859 (error nil)) | |
860 (and (save-excursion | |
861 (beginning-of-line) | |
862 (or (looking-at "\\s-*\\($\\|\\s<\\)") | |
863 (looking-at octave-continuation-regexp))) | |
864 (zerop (forward-line 1))))) | |
865 (end-of-line))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
866 |
16901 | 867 (defun octave-scan-blocks (from count depth) |
868 "Scan from character number FROM by COUNT Octave begin-end blocks. | |
869 Returns the character number of the position thus found. | |
870 | |
871 If DEPTH is nonzero, block depth begins counting from that value. | |
872 Only places where the depth in blocks becomes zero are candidates for | |
873 stopping; COUNT such places are counted. | |
874 | |
875 If the beginning or end of the buffer is reached and the depth is wrong, | |
876 an error is signaled." | |
877 (let ((min-depth (if (> depth 0) 0 depth)) | |
878 (inc (if (> count 0) 1 -1))) | |
879 (save-excursion | |
880 (while (/= count 0) | |
881 (catch 'foo | |
882 (while (or (re-search-forward | |
883 octave-block-begin-or-end-regexp nil 'move inc) | |
884 (if (/= depth 0) | |
885 (error "Unbalanced block"))) | |
886 (if (octave-not-in-string-or-comment-p) | |
887 (progn | |
888 (cond | |
889 ((match-end 1) | |
890 (setq depth (+ depth inc))) | |
891 ((match-end 2) | |
892 (setq depth (- depth inc)))) | |
893 (if (< depth min-depth) | |
894 (error "Containing expression ends prematurely")) | |
895 (if (= depth 0) | |
896 (throw 'foo nil)))))) | |
897 (setq count (- count inc))) | |
898 (point)))) | |
899 | |
900 (defun octave-forward-block (&optional arg) | |
901 "Move forward across one balanced Octave begin-end block. | |
902 With argument, do it that many times. | |
903 Negative arg -N means move backward across N blocks." | |
904 (interactive "p") | |
905 (or arg (setq arg 1)) | |
906 (goto-char (or (octave-scan-blocks (point) arg 0) (buffer-end arg)))) | |
907 | |
908 (defun octave-backward-block (&optional arg) | |
909 "Move backward across one balanced Octave begin-end block. | |
910 With argument, do it that many times. | |
911 Negative arg -N means move forward across N blocks." | |
912 (interactive "p") | |
913 (or arg (setq arg 1)) | |
914 (octave-forward-block (- arg))) | |
915 | |
916 (defun octave-down-block (arg) | |
917 "Move forward down one begin-end block level of Octave code. | |
918 With argument, do this that many times. | |
919 A negative argument means move backward but still go down a level. | |
920 In Lisp programs, an argument is required." | |
921 (interactive "p") | |
922 (let ((inc (if (> arg 0) 1 -1))) | |
923 (while (/= arg 0) | |
924 (goto-char (or (octave-scan-blocks (point) inc -1) | |
925 (buffer-end arg))) | |
926 (setq arg (- arg inc))))) | |
927 | |
928 (defun octave-backward-up-block (arg) | |
929 "Move backward out of one begin-end block level of Octave code. | |
930 With argument, do this that many times. | |
931 A negative argument means move forward but still to a less deep spot. | |
932 In Lisp programs, an argument is required." | |
933 (interactive "p") | |
934 (octave-up-block (- arg))) | |
935 | |
936 (defun octave-up-block (arg) | |
937 "Move forward out of one begin-end block level of Octave code. | |
938 With argument, do this that many times. | |
939 A negative argument means move backward but still to a less deep spot. | |
940 In Lisp programs, an argument is required." | |
941 (interactive "p") | |
942 (let ((inc (if (> arg 0) 1 -1))) | |
943 (while (/= arg 0) | |
944 (goto-char (or (octave-scan-blocks (point) inc 1) | |
945 (buffer-end arg))) | |
946 (setq arg (- arg inc))))) | |
947 | |
948 (defun octave-mark-block () | |
949 "Put point at the beginning of this Octave block, mark at the end. | |
950 The block marked is the one that contains point or follows point." | |
951 (interactive) | |
952 (let ((pos (point))) | |
953 (if (or (and (octave-in-block-p) | |
954 (skip-syntax-forward "w")) | |
955 (condition-case nil | |
956 (progn | |
957 (octave-down-block 1) | |
958 (octave-in-block-p)) | |
959 (error nil))) | |
960 (progn | |
961 (octave-up-block -1) | |
962 (push-mark (point)) | |
963 (octave-forward-block) | |
964 (exchange-point-and-mark)) | |
965 (goto-char pos) | |
966 (message "No block to mark found")))) | |
967 | |
968 (defun octave-close-block () | |
969 "Close the current Octave block on a separate line. | |
970 An error is signaled if no block to close is found." | |
971 (interactive) | |
972 (let (bb-keyword) | |
973 (condition-case nil | |
974 (progn | |
975 (save-excursion | |
976 (octave-backward-up-block 1) | |
977 (setq bb-keyword (buffer-substring-no-properties | |
978 (match-beginning 1) (match-end 1)))) | |
979 (if (save-excursion | |
980 (beginning-of-line) | |
981 (looking-at "^\\s-*$")) | |
982 (indent-according-to-mode) | |
983 (octave-reindent-then-newline-and-indent)) | |
984 (insert (car (reverse | |
985 (assoc bb-keyword | |
986 octave-block-match-alist)))) | |
987 (octave-reindent-then-newline-and-indent) | |
988 t) | |
989 (error (message "No block to close found"))))) | |
990 | |
991 (defun octave-blink-matching-block-open () | |
992 "Blink the matching Octave begin block keyword. | |
993 If point is right after an Octave else or end type block keyword, move | |
994 cursor momentarily to the corresponding begin keyword. | |
995 Signal an error if the keywords are incompatible." | |
996 (interactive) | |
997 (let (bb-keyword bb-arg eb-keyword pos eol) | |
998 (if (and (octave-not-in-string-or-comment-p) | |
999 (looking-at "\\>") | |
1000 (save-excursion | |
1001 (skip-syntax-backward "w") | |
1002 (looking-at octave-block-else-or-end-regexp))) | |
1003 (save-excursion | |
1004 (cond | |
1005 ((match-end 1) | |
1006 (setq eb-keyword | |
1007 (buffer-substring-no-properties | |
1008 (match-beginning 1) (match-end 1))) | |
1009 (octave-backward-up-block 1)) | |
1010 ((match-end 2) | |
1011 (setq eb-keyword | |
1012 (buffer-substring-no-properties | |
1013 (match-beginning 2) (match-end 2))) | |
1014 (octave-backward-block))) | |
1015 (setq pos (match-end 0) | |
1016 bb-keyword | |
1017 (buffer-substring-no-properties | |
1018 (match-beginning 0) pos) | |
1019 pos (+ pos 1) | |
1020 eol (octave-point 'eol) | |
1021 bb-arg | |
1022 (save-excursion | |
1023 (save-restriction | |
1024 (goto-char pos) | |
1025 (while (and (skip-syntax-forward "^<" eol) | |
1026 (octave-in-string-p) | |
1027 (not (forward-char 1)))) | |
1028 (skip-syntax-backward " ") | |
1029 (buffer-substring-no-properties pos (point))))) | |
1030 (if (member eb-keyword | |
1031 (cdr (assoc bb-keyword octave-block-match-alist))) | |
1032 (progn | |
1033 (message "Matches `%s %s'" bb-keyword bb-arg) | |
1034 (if (pos-visible-in-window-p) | |
1035 (sit-for blink-matching-delay))) | |
1036 (error "Block keywords `%s' and `%s' do not match" | |
1037 bb-keyword eb-keyword)))))) | |
1038 | |
1039 (defun octave-beginning-of-defun (&optional arg) | |
1040 "Move backward to the beginning of an Octave function. | |
1041 With positive ARG, do it that many times. Negative argument -N means | |
1042 move forward to Nth following beginning of a function. | |
1043 Returns t unless search stops at the beginning or end of the buffer." | |
1044 (interactive "p") | |
1045 (let* ((arg (or arg 1)) | |
1046 (inc (if (> arg 0) 1 -1)) | |
1047 (found)) | |
1048 (and (not (eobp)) | |
1049 (not (and (> arg 0) (looking-at "\\<function\\>"))) | |
1050 (skip-syntax-forward "w")) | |
1051 (while (and (/= arg 0) | |
1052 (setq found | |
1053 (re-search-backward "\\<function\\>" nil 'move inc))) | |
1054 (if (octave-not-in-string-or-comment-p) | |
1055 (setq arg (- arg inc)))) | |
1056 (if found | |
1057 (progn | |
1058 (and (< inc 0) (goto-char (match-beginning 0))) | |
1059 t)))) | |
1060 | |
1061 (defun octave-end-of-defun (&optional arg) | |
1062 "Move forward to the end of an Octave function. | |
1063 With positive ARG, do it that many times. Negative argument -N means | |
1064 move back to Nth preceding end of a function. | |
1065 | |
1066 An end of a function occurs right after the end keyword matching the | |
1067 `function' keyword that starts the function." | |
1068 (interactive "p") | |
1069 (or arg (setq arg 1)) | |
1070 (and (< arg 0) (skip-syntax-backward "w")) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1071 (and (> arg 0) (skip-syntax-forward "w")) |
16901 | 1072 (if (octave-in-defun-p) |
1073 (setq arg (- arg 1))) | |
1074 (if (= arg 0) (setq arg -1)) | |
1075 (if (octave-beginning-of-defun (- arg)) | |
1076 (octave-forward-block))) | |
1077 | |
1078 (defun octave-mark-defun () | |
1079 "Put point at the beginning of this Octave function, mark at its end. | |
1080 The function marked is the one containing point or following point." | |
1081 (interactive) | |
1082 (let ((pos (point))) | |
1083 (if (or (octave-in-defun-p) | |
1084 (and (octave-beginning-of-defun -1) | |
1085 (octave-in-defun-p))) | |
1086 (progn | |
1087 (skip-syntax-forward "w") | |
1088 (octave-beginning-of-defun) | |
1089 (push-mark (point)) | |
1090 (octave-end-of-defun) | |
1091 (exchange-point-and-mark)) | |
1092 (goto-char pos) | |
1093 (message "No function to mark found")))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1094 |
16901 | 1095 |
1096 ;;; Filling | |
1097 (defun octave-auto-fill () | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1098 "Perform auto-fill in Octave mode. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1099 Returns nil if no feasible place to break the line could be found, and t |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1100 otherwise." |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1101 (let (fc give-up) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1102 (if (or (null (setq fc (current-fill-column))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1103 (save-excursion |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1104 (beginning-of-line) |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1105 (and auto-fill-inhibit-regexp |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1106 (looking-at auto-fill-inhibit-regexp)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1107 nil ; Can't do anything |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1108 (if (and (not (octave-in-comment-p)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1109 (> (current-column) fc)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1110 (setq fc (- fc (+ (length octave-continuation-string) 1)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1111 (while (and (not give-up) (> (current-column) fc)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1112 (let* ((opoint (point)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1113 (fpoint |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1114 (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1115 (move-to-column (+ fc 1)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1116 (skip-chars-backward "^ \t\n") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1117 ;; If we're at the beginning of the line, break after |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1118 ;; the first word |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1119 (if (bolp) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1120 (re-search-forward "[ \t]" opoint t)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1121 ;; If we're in a comment line, don't break after the |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1122 ;; comment chars |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1123 (if (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1124 (skip-syntax-backward " <") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1125 (bolp)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1126 (re-search-forward "[ \t]" (octave-point 'eol) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1127 'move)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1128 ;; If we're not in a comment line and just ahead the |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1129 ;; continuation string, don't break here. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1130 (if (and (not (octave-in-comment-p)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1131 (looking-at |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1132 (concat "\\s-*" |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1133 (regexp-quote |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1134 octave-continuation-string) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1135 "\\s-*$"))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1136 (end-of-line)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1137 (skip-chars-backward " \t") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1138 (point)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1139 (if (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1140 (goto-char fpoint) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1141 (not (or (bolp) (eolp)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1142 (let ((prev-column (current-column))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1143 (if (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1144 (skip-chars-backward " \t") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1145 (= (point) fpoint)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1146 (progn |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1147 (octave-maybe-insert-continuation-string) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1148 (indent-new-comment-line t)) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1149 (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1150 (goto-char fpoint) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1151 (octave-maybe-insert-continuation-string) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1152 (indent-new-comment-line t))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1153 (if (>= (current-column) prev-column) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1154 (setq give-up t))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1155 (setq give-up t)))) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1156 (not give-up)))) |
16901 | 1157 |
1158 (defun octave-fill-paragraph (&optional arg) | |
1159 "Fill paragraph of Octave code, handling Octave comments." | |
1160 (interactive "P") | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1161 (save-excursion |
16901 | 1162 (let ((end (progn (forward-paragraph) (point))) |
1163 (beg (progn | |
1164 (forward-paragraph -1) | |
1165 (skip-chars-forward " \t\n") | |
1166 (beginning-of-line) | |
1167 (point))) | |
1168 (cfc (current-fill-column)) | |
1169 (ind (calculate-octave-indent)) | |
1170 comment-prefix) | |
1171 (save-restriction | |
1172 (goto-char beg) | |
1173 (narrow-to-region beg end) | |
1174 (if (listp ind) (setq ind (nth 1 ind))) | |
1175 (while (not (eobp)) | |
1176 (condition-case nil | |
1177 (octave-indent-line ind) | |
1178 (error nil)) | |
1179 (if (and (> ind 0) | |
1180 (not | |
1181 (save-excursion | |
1182 (beginning-of-line) | |
1183 (looking-at "^\\s-*\\($\\|\\s<+\\)")))) | |
1184 (setq ind 0)) | |
1185 (move-to-column cfc) | |
1186 ;; First check whether we need to combine non-empty comment lines | |
1187 (if (and (< (current-column) cfc) | |
1188 (octave-in-comment-p) | |
1189 (not (save-excursion | |
1190 (beginning-of-line) | |
1191 (looking-at "^\\s-*\\s<+\\s-*$")))) | |
1192 ;; This is a nonempty comment line which does not extend | |
47939
5f47d61ffbdc
Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents:
42445
diff
changeset
|
1193 ;; past the fill column. If it is followed by a nonempty |
16901 | 1194 ;; comment line with the same comment prefix, try to |
1195 ;; combine them, and repeat this until either we reach the | |
1196 ;; fill-column or there is nothing more to combine. | |
1197 (progn | |
1198 ;; Get the comment prefix | |
1199 (save-excursion | |
1200 (beginning-of-line) | |
1201 (while (and (re-search-forward "\\s<+") | |
1202 (not (octave-in-comment-p)))) | |
1203 (setq comment-prefix (match-string 0))) | |
1204 ;; And keep combining ... | |
1205 (while (and (< (current-column) cfc) | |
1206 (save-excursion | |
1207 (forward-line 1) | |
1208 (and (looking-at | |
1209 (concat "^\\s-*" | |
1210 comment-prefix | |
1211 "\\S<")) | |
1212 (not (looking-at | |
1213 (concat "^\\s-*" | |
1214 comment-prefix | |
1215 "\\s-*$")))))) | |
1216 (delete-char 1) | |
1217 (re-search-forward comment-prefix) | |
1218 (delete-region (match-beginning 0) (match-end 0)) | |
1219 (fixup-whitespace) | |
1220 (move-to-column cfc)))) | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1221 ;; We might also try to combine continued code lines> Perhaps |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1222 ;; some other time ... |
16901 | 1223 (skip-chars-forward "^ \t\n") |
1224 (delete-horizontal-space) | |
1225 (if (or (< (current-column) cfc) | |
1226 (and (= (current-column) cfc) (eolp))) | |
1227 (forward-line 1) | |
1228 (if (not (eolp)) (insert " ")) | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1229 (or (octave-auto-fill) |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1230 (forward-line 1))))) |
16901 | 1231 t))) |
1232 | |
1233 | |
1234 ;;; Completions | |
1235 (defun octave-initialize-completions () | |
1236 "Create an alist for Octave completions." | |
1237 (if octave-completion-alist | |
1238 () | |
1239 (setq octave-completion-alist | |
1240 (mapcar '(lambda (var) (cons var var)) | |
1241 (append octave-reserved-words | |
1242 octave-text-functions | |
1243 octave-variables))))) | |
1244 | |
1245 (defun octave-complete-symbol () | |
1246 "Perform completion on Octave symbol preceding point. | |
1247 Compare that symbol against Octave's reserved words and builtin | |
1248 variables." | |
1249 ;; This code taken from lisp-complete-symbol | |
1250 (interactive) | |
1251 (let* ((end (point)) | |
1252 (beg (save-excursion (backward-sexp 1) (point))) | |
1253 (string (buffer-substring-no-properties beg end)) | |
1254 (completion (try-completion string octave-completion-alist))) | |
1255 (cond ((eq completion t)) ; ??? | |
1256 ((null completion) | |
1257 (message "Can't find completion for \"%s\"" string) | |
1258 (ding)) | |
1259 ((not (string= string completion)) | |
1260 (delete-region beg end) | |
1261 (insert completion)) | |
1262 (t | |
1263 (let ((list (all-completions string octave-completion-alist)) | |
1264 (conf (current-window-configuration))) | |
1265 ;; Taken from comint.el | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1266 (message "Making completion list...") |
16901 | 1267 (with-output-to-temp-buffer "*Completions*" |
1268 (display-completion-list list)) | |
1269 (message "Hit space to flush") | |
1270 (let (key first) | |
1271 (if (save-excursion | |
1272 (set-buffer (get-buffer "*Completions*")) | |
1273 (setq key (read-key-sequence nil) | |
1274 first (aref key 0)) | |
1275 (and (consp first) (consp (event-start first)) | |
1276 (eq (window-buffer (posn-window (event-start | |
1277 first))) | |
1278 (get-buffer "*Completions*")) | |
1279 (eq (key-binding key) 'mouse-choose-completion))) | |
1280 (progn | |
1281 (mouse-choose-completion first) | |
1282 (set-window-configuration conf)) | |
1283 (if (eq first ?\ ) | |
1284 (set-window-configuration conf) | |
1285 (setq unread-command-events | |
1286 (listify-key-sequence key)))))))))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1287 |
16901 | 1288 |
1289 ;;; Electric characters && friends | |
1290 (defun octave-reindent-then-newline-and-indent () | |
1291 "Reindent current Octave line, insert newline, and indent the new line. | |
1292 If Abbrev mode is on, expand abbrevs first." | |
1293 (interactive) | |
1294 (if abbrev-mode (expand-abbrev)) | |
1295 (if octave-blink-matching-block | |
1296 (octave-blink-matching-block-open)) | |
1297 (save-excursion | |
1298 (delete-region (point) (progn (skip-chars-backward " \t") (point))) | |
1299 (indent-according-to-mode)) | |
1300 (insert "\n") | |
1301 (indent-according-to-mode)) | |
1302 | |
1303 (defun octave-electric-semi () | |
1304 "Insert a semicolon in Octave mode. | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1305 Maybe expand abbrevs and blink matching block open keywords. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1306 Reindent the line of `octave-auto-indent' is non-nil. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1307 Insert a newline if `octave-auto-newline' is non-nil." |
16901 | 1308 (interactive) |
1309 (if (not (octave-not-in-string-or-comment-p)) | |
1310 (insert ";") | |
1311 (if abbrev-mode (expand-abbrev)) | |
1312 (if octave-blink-matching-block | |
1313 (octave-blink-matching-block-open)) | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1314 (if octave-auto-indent |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1315 (indent-according-to-mode)) |
16901 | 1316 (insert ";") |
1317 (if octave-auto-newline | |
1318 (newline-and-indent)))) | |
1319 | |
1320 (defun octave-electric-space () | |
1321 "Insert a space in Octave mode. | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1322 Maybe expand abbrevs and blink matching block open keywords. |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1323 Reindent the line of `octave-auto-indent' is non-nil." |
16901 | 1324 (interactive) |
1325 (setq last-command-char ? ) | |
1326 (if (not (octave-not-in-string-or-comment-p)) | |
1327 (progn | |
1328 (indent-according-to-mode) | |
1329 (self-insert-command 1)) | |
1330 (if abbrev-mode (expand-abbrev)) | |
1331 (if octave-blink-matching-block | |
1332 (octave-blink-matching-block-open)) | |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1333 (if (and octave-auto-indent |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1334 (save-excursion |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1335 (skip-syntax-backward " ") |
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1336 (not (bolp)))) |
16901 | 1337 (indent-according-to-mode)) |
1338 (self-insert-command 1))) | |
1339 | |
1340 (defun octave-abbrev-start () | |
1341 "Start entering an Octave abbreviation. | |
1342 If Abbrev mode is turned on, typing ` (grave accent) followed by ? or | |
1343 \\[help-command] lists all Octave abbrevs. Any other key combination is | |
1344 executed normally. | |
1345 Note that all Octave mode abbrevs start with a grave accent." | |
1346 (interactive) | |
1347 (if (not abbrev-mode) | |
1348 (self-insert-command 1) | |
1349 (let (c) | |
1350 (insert last-command-char) | |
23848
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1351 (if (if octave-xemacs-p |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1352 (or (eq (event-to-character (setq c (next-event))) ??) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1353 (eq (event-to-character c) help-char)) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1354 (or (eq (setq c (read-event)) ??) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1355 (eq c help-char))) |
7896e341d77f
(octave-abbrev-start): Use the correct
Karl Heuer <kwzh@gnu.org>
parents:
21669
diff
changeset
|
1356 (let ((abbrev-table-name-list '(octave-abbrev-table))) |
16901 | 1357 (list-abbrevs)) |
1358 (setq unread-command-events (list c)))))) | |
1359 | |
1360 (defun octave-insert-defun (name args vals) | |
1361 "Insert an Octave function skeleton. | |
1362 Prompt for the function's name, arguments and return values (to be | |
1363 entered without parens)." | |
1364 (interactive | |
1365 (list | |
1366 (read-from-minibuffer "Function name: " | |
1367 (substring (buffer-name) 0 -2)) | |
1368 (read-from-minibuffer "Arguments: ") | |
1369 (read-from-minibuffer "Return values: "))) | |
1370 (let ((string (format "%s %s (%s)" | |
1371 (cond | |
1372 ((string-equal vals "") | |
1373 vals) | |
1374 ((string-match "[ ,]" vals) | |
1375 (concat " [" vals "] =")) | |
1376 (t | |
1377 (concat " " vals " ="))) | |
1378 name | |
1379 args)) | |
1380 (prefix octave-block-comment-start)) | |
1381 (if (not (bobp)) (newline)) | |
1382 (insert "function" string) | |
1383 (indent-according-to-mode) | |
1384 (newline 2) | |
1385 (insert prefix "usage: " string) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1386 (reindent-then-newline-and-indent) |
16901 | 1387 (insert prefix) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1388 (reindent-then-newline-and-indent) |
16901 | 1389 (insert prefix) |
1390 (indent-according-to-mode) | |
1391 (save-excursion | |
1392 (newline 2) | |
1393 (insert "endfunction") | |
1394 (indent-according-to-mode)))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1395 |
16901 | 1396 |
1397 ;;; Menu | |
1398 (defun octave-add-octave-menu () | |
1399 "Adds the `Octave' menu to the menu bar in Octave mode." | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1400 (require 'easymenu) |
16901 | 1401 (easy-menu-define octave-mode-menu-map octave-mode-map |
1402 "Menu keymap for Octave mode." octave-mode-menu) | |
1403 (easy-menu-add octave-mode-menu-map octave-mode-map)) | |
1404 | |
1405 | |
1406 ;;; Communication with the inferior Octave process | |
1407 (defun octave-kill-process () | |
1408 "Kill inferior Octave process and its buffer." | |
1409 (interactive) | |
1410 (if inferior-octave-process | |
1411 (progn | |
1412 (process-send-string inferior-octave-process "quit;\n") | |
1413 (accept-process-output inferior-octave-process))) | |
1414 (if inferior-octave-buffer | |
1415 (kill-buffer inferior-octave-buffer))) | |
1416 | |
1417 (defun octave-show-process-buffer () | |
1418 "Make sure that `inferior-octave-buffer' is displayed." | |
1419 (interactive) | |
1420 (if (get-buffer inferior-octave-buffer) | |
1421 (display-buffer inferior-octave-buffer) | |
1422 (message "No buffer named %s" inferior-octave-buffer))) | |
1423 | |
1424 (defun octave-hide-process-buffer () | |
1425 "Delete all windows that display `inferior-octave-buffer'." | |
1426 (interactive) | |
1427 (if (get-buffer inferior-octave-buffer) | |
1428 (delete-windows-on inferior-octave-buffer) | |
1429 (message "No buffer named %s" inferior-octave-buffer))) | |
1430 | |
1431 (defun octave-send-region (beg end) | |
1432 "Send current region to the inferior Octave process." | |
1433 (interactive "r") | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1434 (inferior-octave t) |
16901 | 1435 (let ((proc inferior-octave-process) |
1436 (string (buffer-substring-no-properties beg end)) | |
1437 line) | |
1438 (save-excursion | |
1439 (set-buffer inferior-octave-buffer) | |
1440 (setq inferior-octave-output-list nil) | |
1441 (while (not (string-equal string "")) | |
1442 (if (string-match "\n" string) | |
1443 (setq line (substring string 0 (match-beginning 0)) | |
1444 string (substring string (match-end 0))) | |
1445 (setq line string string "")) | |
1446 (setq inferior-octave-receive-in-progress t) | |
1447 (inferior-octave-send-list-and-digest (list (concat line "\n"))) | |
1448 (while inferior-octave-receive-in-progress | |
1449 (accept-process-output proc)) | |
1450 (insert-before-markers | |
1451 (mapconcat 'identity | |
1452 (append | |
1453 (if octave-send-echo-input (list line) (list "")) | |
1454 (mapcar 'inferior-octave-strip-ctrl-g | |
1455 inferior-octave-output-list) | |
1456 (list inferior-octave-output-string)) | |
1457 "\n"))))) | |
1458 (if octave-send-show-buffer | |
1459 (display-buffer inferior-octave-buffer))) | |
1460 | |
1461 (defun octave-send-block () | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1462 "Send current Octave block to the inferior Octave process." |
16901 | 1463 (interactive) |
1464 (save-excursion | |
1465 (octave-mark-block) | |
1466 (octave-send-region (point) (mark)))) | |
1467 | |
1468 (defun octave-send-defun () | |
1469 "Send current Octave function to the inferior Octave process." | |
1470 (interactive) | |
1471 (save-excursion | |
1472 (octave-mark-defun) | |
1473 (octave-send-region (point) (mark)))) | |
1474 | |
1475 (defun octave-send-line (&optional arg) | |
1476 "Send current Octave code line to the inferior Octave process. | |
1477 With positive prefix ARG, send that many lines. | |
1478 If `octave-send-line-auto-forward' is non-nil, go to the next unsent | |
1479 code line." | |
1480 (interactive "P") | |
1481 (or arg (setq arg 1)) | |
1482 (if (> arg 0) | |
1483 (let (beg end) | |
1484 (beginning-of-line) | |
1485 (setq beg (point)) | |
1486 (octave-next-code-line (- arg 1)) | |
1487 (end-of-line) | |
1488 (setq end (point)) | |
1489 (if octave-send-line-auto-forward | |
1490 (octave-next-code-line 1)) | |
1491 (octave-send-region beg end)))) | |
1492 | |
1493 (defun octave-eval-print-last-sexp () | |
1494 "Evaluate Octave sexp before point and print value into current buffer." | |
1495 (interactive) | |
1496 (inferior-octave t) | |
1497 (let ((standard-output (current-buffer)) | |
1498 (print-escape-newlines nil) | |
1499 (opoint (point))) | |
1500 (terpri) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49334
diff
changeset
|
1501 (prin1 |
16901 | 1502 (save-excursion |
1503 (forward-sexp -1) | |
1504 (inferior-octave-send-list-and-digest | |
1505 (list (concat (buffer-substring-no-properties (point) opoint) | |
1506 "\n"))) | |
1507 (mapconcat 'identity inferior-octave-output-list "\n"))) | |
1508 (terpri))) | |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1509 |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1510 ;;; Bug reporting |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1511 (defun octave-submit-bug-report () |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1512 "Submit a bug report on the Emacs Octave package via mail." |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1513 (interactive) |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1514 (require 'reporter) |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1515 (and |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1516 (y-or-n-p "Do you want to submit a bug report? ") |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1517 (reporter-submit-bug-report |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1518 octave-maintainer-address |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1519 (concat "Emacs version " emacs-version) |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1520 (list |
20181
fe0f0a9bb43f
(octave-auto-indent): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
17533
diff
changeset
|
1521 'octave-auto-indent |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1522 'octave-auto-newline |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1523 'octave-blink-matching-block |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1524 'octave-block-offset |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1525 'octave-comment-char |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1526 'octave-continuation-offset |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1527 'octave-continuation-string |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1528 'octave-help-files |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1529 'octave-mode-startup-message |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1530 'octave-send-echo-input |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1531 'octave-send-line-auto-forward |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1532 'octave-send-show-buffer)))) |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1533 |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1534 ;;; provide ourself |
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1535 |
16911
123d19079d9f
Delete explicit autoload calls.
Richard M. Stallman <rms@gnu.org>
parents:
16905
diff
changeset
|
1536 (provide 'octave-mod) |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1537 |
52401 | 1538 ;;; arch-tag: 05f1ce09-be87-4c00-803e-4919ffa26c23 |
16905
a93836c8b52b
Merge in octave.el; don't require octave.el.
Richard M. Stallman <rms@gnu.org>
parents:
16902
diff
changeset
|
1539 ;;; octave-mod.el ends here |