]> code.delx.au - gnu-emacs/blobdiff - src/lread.c
Minor typo fixes in vc-src.el.
[gnu-emacs] / src / lread.c
index 59af12cf6da98f21b236e05e6df14c7e4e237969..6f71ff5f468c2786a83bd0f5ef7ff53d2af3e177 100644 (file)
@@ -66,7 +66,8 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 /* Hash table read constants.  */
 static Lisp_Object Qhash_table, Qdata;
-static Lisp_Object Qtest, Qsize;
+static Lisp_Object Qtest;
+Lisp_Object Qsize;
 static Lisp_Object Qweakness;
 static Lisp_Object Qrehash_size;
 static Lisp_Object Qrehash_threshold;
@@ -3661,8 +3662,8 @@ read_list (bool flag, Lisp_Object readcharfun)
               We don't use Fexpand_file_name because that would make
               the directory absolute now.  */
            {
-             AUTO_STRING (dotdotlisp, "../lisp/");
-             elt = concat2 (dotdotlisp, Ffile_name_nondirectory (elt));
+             AUTO_STRING (dot_dot_lisp, "../lisp/");
+             elt = concat2 (dot_dot_lisp, Ffile_name_nondirectory (elt));
            }
        }
       else if (EQ (elt, Vload_file_name)