* progmodes/cperl-mode.el, progmodes/idlw-shell.el,
progmodes/idlwave.el, progmodes/vhdl-mode.el: Replace `legal' with `valid'.
This commit is contained in:
@@ -4,6 +4,9 @@
|
||||
* calendar/calendar.el: Replace `legal' with `valid'.
|
||||
* emacs-lisp/advice.el: Replace `legal' with `valid'.
|
||||
* mail/supercite.el: Replace `legal' with `valid'.
|
||||
* progmodes/cperl-mode.el, progmodes/idlw-shell.el,
|
||||
progmodes/idlwave.el, progmodes/vhdl-mode.el: Replace `legal' with
|
||||
`valid'.
|
||||
|
||||
2005-03-25 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; cperl-mode.el --- Perl code editing commands for Emacs
|
||||
|
||||
;; Copyright (C) 1985,86,87,91,92,93,94,95,96,97,98,99,2000,03,2004
|
||||
;; Copyright (C) 1985,86,87,91,92,93,94,95,96,97,98,99,2000,03,2004,2005
|
||||
;; Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Ilya Zakharevich and Bob Olson
|
||||
@@ -713,7 +713,7 @@ should work if the balance of delimiters is not broken by POD).
|
||||
|
||||
The main trick (to make $ a \"backslash\") makes constructions like
|
||||
${aaa} look like unbalanced braces. The only trick I can think of is
|
||||
to insert it as $ {aaa} (legal in perl5, not in perl4).
|
||||
to insert it as $ {aaa} (valid in perl5, not in perl4).
|
||||
|
||||
Similar problems arise in regexps, when /(\\s|$)/ should be rewritten
|
||||
as /($|\\s)/. Note that such a transposition is not always possible.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
;; idlw-shell.el --- run IDL as an inferior process of Emacs.
|
||||
;; Copyright (c) 1999,2000,2001,2002,2003,2004 Free Software Foundation
|
||||
;; Copyright (c) 1999,2000,2001,2002,2003,2004,2005 Free Software Foundation
|
||||
|
||||
;; Authors: J.D. Smith <jdsmith@as.arizona.edu>
|
||||
;; Carsten Dominik <dominik@astro.uva.nl>
|
||||
@@ -437,7 +437,7 @@ end"
|
||||
|
||||
(defcustom idlwave-shell-mark-stop-line t
|
||||
"*Non-nil means, mark the source code line where IDL is currently stopped.
|
||||
Value decides about the method which is used to mark the line. Legal values
|
||||
Value decides about the method which is used to mark the line. Valid values
|
||||
are:
|
||||
|
||||
nil Do not mark the line
|
||||
@@ -494,7 +494,7 @@ where IDL is stopped, when in Electric Debug Mode."
|
||||
|
||||
(defcustom idlwave-shell-mark-breakpoints t
|
||||
"*Non-nil means, mark breakpoints in the source files.
|
||||
Legal values are:
|
||||
Valid values are:
|
||||
nil Do not mark breakpoints.
|
||||
'face Highlight line with `idlwave-shell-breakpoint-face'.
|
||||
'glyph Red dot at the beginning of line. If the display does not
|
||||
|
||||
@@ -585,7 +585,7 @@ for which to assume this can be set here."
|
||||
(defcustom idlwave-completion-show-classes 1
|
||||
"*Number of classes to show when completing object methods and keywords.
|
||||
When completing methods or keywords for an object with unknown class,
|
||||
the *Completions* buffer will show the legal classes for each completion
|
||||
the *Completions* buffer will show the valid classes for each completion
|
||||
like this:
|
||||
|
||||
MyMethod <Class1,Class2,Class3>
|
||||
@@ -5338,7 +5338,7 @@ end
|
||||
|
||||
(defun idlwave-complete (&optional arg module class)
|
||||
"Complete a function, procedure or keyword name at point.
|
||||
This function is smart and figures out what can be legally completed
|
||||
This function is smart and figures out what can be completed
|
||||
at this point.
|
||||
- At the beginning of a statement it completes procedure names.
|
||||
- In the middle of a statement it completes function names.
|
||||
@@ -7729,7 +7729,7 @@ from all classes if class equals t."
|
||||
keywords))
|
||||
|
||||
(defun idlwave-expand-keyword (keyword module)
|
||||
"Expand KEYWORD to one of the legal keyword parameters of MODULE.
|
||||
"Expand KEYWORD to one of the valid keyword parameters of MODULE.
|
||||
KEYWORD may be an exact match or an abbreviation of a keyword.
|
||||
If the match is exact, KEYWORD itself is returned, even if there may be other
|
||||
keywords of which KEYWORD is an abbreviation. This is necessary because some
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; vhdl-mode.el --- major mode for editing VHDL code
|
||||
|
||||
;; Copyright (C) 1992-2003 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 1992-2003, 2005 Free Software Foundation, Inc.
|
||||
|
||||
;; Authors: Reto Zimmermann <reto@gnu.org>
|
||||
;; Rodney J. Whitby <software.vhdl-mode@rwhitby.net>
|
||||
@@ -5065,7 +5065,7 @@ Try to increase performance by using this macro."
|
||||
|
||||
(defun vhdl-read-offset (langelem)
|
||||
"Read new offset value for LANGELEM from minibuffer.
|
||||
Return a legal value only."
|
||||
Return a valid value only."
|
||||
(let ((oldoff (format "%s" (cdr-safe (assq langelem vhdl-offsets-alist))))
|
||||
(errmsg "Offset must be int, func, var, or one of +, -, ++, --: ")
|
||||
(prompt "Offset: ")
|
||||
|
||||
Reference in New Issue
Block a user