]> code.delx.au - gnu-emacs/blobdiff - src/cm.h
Simplify part of previous Fwrite_region change
[gnu-emacs] / src / cm.h
index 8f23990ce55c404fae07da63660d75a01b0a4b02..6d49dda9419274f18b7aea9a23a7d6444273351f 100644 (file)
--- a/src/cm.h
+++ b/src/cm.h
@@ -1,5 +1,5 @@
 /* Cursor motion calculation definitions for GNU Emacs
-   Copyright (C) 1985, 1989, 2001-201 Free Software Foundation, Inc.
+   Copyright (C) 1985, 1989, 2001-2013 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -16,7 +16,7 @@ GNU General Public License for more details.
 You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
-/* Holds the minimum and maximum costs for the parametrized capabilities.  */
+/* Holds the minimum and maximum costs for the parameterized capabilities.  */
 struct parmcap
   {
     int mincost, maxcost;
@@ -66,7 +66,7 @@ struct cm
                                   location */
     unsigned int cm_autolf:1;  /* \r performs a \r\n (rn) */
 
-    /* Parametrized capabilities.  This needs to be a struct since
+    /* Parameterized capabilities.  This needs to be a struct since
        the costs are accessed through pointers.  */
 
 #if 0
@@ -79,7 +79,7 @@ struct cm
     struct parmcap cc_multiright; /* multiple right (RI) */
 #endif
 
-    /* Costs for the non-parametrized capabilities */
+    /* Costs for the non-parameterized capabilities */
     int cc_up;                 /* cost for up */
     int cc_down;               /* etc. */
     int cc_left;