aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorWerner LEMBERG2005-03-25 10:06:23 +0000
committerWerner LEMBERG2005-03-25 10:06:23 +0000
commit2e8b9c7d513e2e1723f0cc69826bab378ebe63ff (patch)
tree84d57de448fe0d5de7bc5b55bbaad01fd0ea19a8 /lisp
parent0486e05aada487bf0d897fa67e7379df3348bf77 (diff)
downloademacs-2e8b9c7d513e2e1723f0cc69826bab378ebe63ff.tar.gz
emacs-2e8b9c7d513e2e1723f0cc69826bab378ebe63ff.zip
* progmodes/cperl-mode.el, progmodes/idlw-shell.el,
progmodes/idlwave.el, progmodes/vhdl-mode.el: Replace `legal' with `valid'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/progmodes/cperl-mode.el4
-rw-r--r--lisp/progmodes/idlw-shell.el6
-rw-r--r--lisp/progmodes/idlwave.el6
-rw-r--r--lisp/progmodes/vhdl-mode.el4
5 files changed, 13 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b48c14cf823..8d5ddc13c5a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -4,6 +4,9 @@
4 * calendar/calendar.el: Replace `legal' with `valid'. 4 * calendar/calendar.el: Replace `legal' with `valid'.
5 * emacs-lisp/advice.el: Replace `legal' with `valid'. 5 * emacs-lisp/advice.el: Replace `legal' with `valid'.
6 * mail/supercite.el: Replace `legal' with `valid'. 6 * mail/supercite.el: Replace `legal' with `valid'.
7 * progmodes/cperl-mode.el, progmodes/idlw-shell.el,
8 progmodes/idlwave.el, progmodes/vhdl-mode.el: Replace `legal' with
9 `valid'.
7 10
82005-03-25 Werner Lemberg <wl@gnu.org> 112005-03-25 Werner Lemberg <wl@gnu.org>
9 12
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el
index 64f039f54f9..700fa1c9efe 100644
--- a/lisp/progmodes/cperl-mode.el
+++ b/lisp/progmodes/cperl-mode.el
@@ -1,6 +1,6 @@
1;;; cperl-mode.el --- Perl code editing commands for Emacs 1;;; cperl-mode.el --- Perl code editing commands for Emacs
2 2
3;; Copyright (C) 1985,86,87,91,92,93,94,95,96,97,98,99,2000,03,2004 3;; Copyright (C) 1985,86,87,91,92,93,94,95,96,97,98,99,2000,03,2004,2005
4;; Free Software Foundation, Inc. 4;; Free Software Foundation, Inc.
5 5
6;; Author: Ilya Zakharevich and Bob Olson 6;; Author: Ilya Zakharevich and Bob Olson
@@ -713,7 +713,7 @@ should work if the balance of delimiters is not broken by POD).
713 713
714The main trick (to make $ a \"backslash\") makes constructions like 714The main trick (to make $ a \"backslash\") makes constructions like
715${aaa} look like unbalanced braces. The only trick I can think of is 715${aaa} look like unbalanced braces. The only trick I can think of is
716to insert it as $ {aaa} (legal in perl5, not in perl4). 716to insert it as $ {aaa} (valid in perl5, not in perl4).
717 717
718Similar problems arise in regexps, when /(\\s|$)/ should be rewritten 718Similar problems arise in regexps, when /(\\s|$)/ should be rewritten
719as /($|\\s)/. Note that such a transposition is not always possible. 719as /($|\\s)/. Note that such a transposition is not always possible.
diff --git a/lisp/progmodes/idlw-shell.el b/lisp/progmodes/idlw-shell.el
index 44675470b67..221a6f4aebb 100644
--- a/lisp/progmodes/idlw-shell.el
+++ b/lisp/progmodes/idlw-shell.el
@@ -1,5 +1,5 @@
1;; idlw-shell.el --- run IDL as an inferior process of Emacs. 1;; idlw-shell.el --- run IDL as an inferior process of Emacs.
2;; Copyright (c) 1999,2000,2001,2002,2003,2004 Free Software Foundation 2;; Copyright (c) 1999,2000,2001,2002,2003,2004,2005 Free Software Foundation
3 3
4;; Authors: J.D. Smith <jdsmith@as.arizona.edu> 4;; Authors: J.D. Smith <jdsmith@as.arizona.edu>
5;; Carsten Dominik <dominik@astro.uva.nl> 5;; Carsten Dominik <dominik@astro.uva.nl>
@@ -437,7 +437,7 @@ end"
437 437
438(defcustom idlwave-shell-mark-stop-line t 438(defcustom idlwave-shell-mark-stop-line t
439 "*Non-nil means, mark the source code line where IDL is currently stopped. 439 "*Non-nil means, mark the source code line where IDL is currently stopped.
440Value decides about the method which is used to mark the line. Legal values 440Value decides about the method which is used to mark the line. Valid values
441are: 441are:
442 442
443nil Do not mark the line 443nil Do not mark the line
@@ -494,7 +494,7 @@ where IDL is stopped, when in Electric Debug Mode."
494 494
495(defcustom idlwave-shell-mark-breakpoints t 495(defcustom idlwave-shell-mark-breakpoints t
496 "*Non-nil means, mark breakpoints in the source files. 496 "*Non-nil means, mark breakpoints in the source files.
497Legal values are: 497Valid values are:
498nil Do not mark breakpoints. 498nil Do not mark breakpoints.
499'face Highlight line with `idlwave-shell-breakpoint-face'. 499'face Highlight line with `idlwave-shell-breakpoint-face'.
500'glyph Red dot at the beginning of line. If the display does not 500'glyph Red dot at the beginning of line. If the display does not
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el
index 86ade8dec0f..35e4b68c9b8 100644
--- a/lisp/progmodes/idlwave.el
+++ b/lisp/progmodes/idlwave.el
@@ -585,7 +585,7 @@ for which to assume this can be set here."
585(defcustom idlwave-completion-show-classes 1 585(defcustom idlwave-completion-show-classes 1
586 "*Number of classes to show when completing object methods and keywords. 586 "*Number of classes to show when completing object methods and keywords.
587When completing methods or keywords for an object with unknown class, 587When completing methods or keywords for an object with unknown class,
588the *Completions* buffer will show the legal classes for each completion 588the *Completions* buffer will show the valid classes for each completion
589like this: 589like this:
590 590
591MyMethod <Class1,Class2,Class3> 591MyMethod <Class1,Class2,Class3>
@@ -5338,7 +5338,7 @@ end
5338 5338
5339(defun idlwave-complete (&optional arg module class) 5339(defun idlwave-complete (&optional arg module class)
5340 "Complete a function, procedure or keyword name at point. 5340 "Complete a function, procedure or keyword name at point.
5341This function is smart and figures out what can be legally completed 5341This function is smart and figures out what can be completed
5342at this point. 5342at this point.
5343- At the beginning of a statement it completes procedure names. 5343- At the beginning of a statement it completes procedure names.
5344- In the middle of a statement it completes function names. 5344- In the middle of a statement it completes function names.
@@ -7729,7 +7729,7 @@ from all classes if class equals t."
7729 keywords)) 7729 keywords))
7730 7730
7731(defun idlwave-expand-keyword (keyword module) 7731(defun idlwave-expand-keyword (keyword module)
7732 "Expand KEYWORD to one of the legal keyword parameters of MODULE. 7732 "Expand KEYWORD to one of the valid keyword parameters of MODULE.
7733KEYWORD may be an exact match or an abbreviation of a keyword. 7733KEYWORD may be an exact match or an abbreviation of a keyword.
7734If the match is exact, KEYWORD itself is returned, even if there may be other 7734If the match is exact, KEYWORD itself is returned, even if there may be other
7735keywords of which KEYWORD is an abbreviation. This is necessary because some 7735keywords of which KEYWORD is an abbreviation. This is necessary because some
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el
index ab7fa42e252..7e30a816e15 100644
--- a/lisp/progmodes/vhdl-mode.el
+++ b/lisp/progmodes/vhdl-mode.el
@@ -1,6 +1,6 @@
1;;; vhdl-mode.el --- major mode for editing VHDL code 1;;; vhdl-mode.el --- major mode for editing VHDL code
2 2
3;; Copyright (C) 1992-2003 Free Software Foundation, Inc. 3;; Copyright (C) 1992-2003, 2005 Free Software Foundation, Inc.
4 4
5;; Authors: Reto Zimmermann <reto@gnu.org> 5;; Authors: Reto Zimmermann <reto@gnu.org>
6;; Rodney J. Whitby <software.vhdl-mode@rwhitby.net> 6;; Rodney J. Whitby <software.vhdl-mode@rwhitby.net>
@@ -5065,7 +5065,7 @@ Try to increase performance by using this macro."
5065 5065
5066(defun vhdl-read-offset (langelem) 5066(defun vhdl-read-offset (langelem)
5067 "Read new offset value for LANGELEM from minibuffer. 5067 "Read new offset value for LANGELEM from minibuffer.
5068Return a legal value only." 5068Return a valid value only."
5069 (let ((oldoff (format "%s" (cdr-safe (assq langelem vhdl-offsets-alist)))) 5069 (let ((oldoff (format "%s" (cdr-safe (assq langelem vhdl-offsets-alist))))
5070 (errmsg "Offset must be int, func, var, or one of +, -, ++, --: ") 5070 (errmsg "Offset must be int, func, var, or one of +, -, ++, --: ")
5071 (prompt "Offset: ") 5071 (prompt "Offset: ")