]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling fixes.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 19 Feb 2013 14:44:03 +0000 (06:44 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 19 Feb 2013 14:44:03 +0000 (06:44 -0800)
doc/misc/tramp.texi
etc/ChangeLog
src/ChangeLog.10
src/lisp.h
src/marker.c

index 64b5ea40f244cc66a450ff776000c5400b9a30da..77a4f632cff6d7afc345f736ea09a73c99367b96 100644 (file)
@@ -2030,8 +2030,8 @@ You can instruct @value{tramp} by this form:
 @noindent
 with @samp{192.168.0.26} being the IP address of your Android device.
 
-The user settings for the @code{$PATH} environment valiable must be
-preserved. Add this setting:
+The user settings for the @code{$PATH} environment variable must be
+preserved.  Add this setting:
 
 @lisp
 (add-to-list 'tramp-remote-path 'tramp-own-remote-path)
index 48db23a59e2fce44da60addf4816d7753b3ba436..2e0eb2d70566477621649d48f198a5b3576960fe 100644 (file)
 
 2009-01-27  Kenichi Handa  <handa@m17n.org>
 
-       * NEWS: New function `coding-sytem-from-name'.
+       * NEWS: New function `coding-system-from-name'.
 
 2009-01-25  Carsten Dominik  <dominik@science.uva.nl>
 
index c878c48a4f40af040abd8d96067e68022909dad7..508a2a9dd4c19e3fae4840de5b40d32d77765608 100644 (file)
        * coding.c (code_convert_region_unwind):
        Set Vlast_coding_system_used to the argument.
        (code_convert_region): If post-read-conversion function changed
-       the value of last-coding-sytem, keep the new value in
+       the value of last-coding-system, keep the new value in
        coding->symbol so that it won't be overridden.
        (run_pre_post_conversion_on_str): Likewise.
        (coding_system_accept_latin_extra_p): New function.
index 44a5bd571ff7bb31e1d4b835b45aa300a1dd2828..79fc9616d67b8118fb99762fee9d04b444efa541 100644 (file)
@@ -3048,7 +3048,7 @@ extern Lisp_Object Qautomatic_gc;
 extern Lisp_Object Qchar_table_extra_slots;
 extern struct Lisp_Vector *allocate_vector (EMACS_INT);
 
-/* Make an unitialized vector for SIZE objects.  NOTE: you must
+/* Make an uninitialized vector for SIZE objects.  NOTE: you must
    be sure that GC cannot happen until the vector is completely
    initialized.  E.g. the following code is likely to crash:
 
index 0d992c0abfa19b1db97c00efe33a759a24d00d59..63027d3be5ed304d95392c77b5b183b8c64dccf4 100644 (file)
@@ -500,7 +500,7 @@ set_marker_internal (Lisp_Object marker, Lisp_Object position,
       register ptrdiff_t charpos, bytepos;
 
       /* Do not use CHECK_NUMBER_COERCE_MARKER because we
-        don't want to call buf_charpos_to_bytepos if POSTION
+        don't want to call buf_charpos_to_bytepos if POSITION
         is a marker and so we know the bytepos already.  */
       if (INTEGERP (position))
        charpos = XINT (position), bytepos = -1;