summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-11-04 14:50:09 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-11-04 14:50:59 -0700
commitacae275b2752357497a2411876b83240ce7c8aec (patch)
treef933ac34ea480ea0a8071baf191cd3f30f253dcf /src
parentd8fac734e563df1169e3d8d715cca3481dfec8ac (diff)
downloademacs-acae275b2752357497a2411876b83240ce7c8aec.tar.gz
; Spelling fixes
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c2
-rw-r--r--src/lread.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 2480dfc603a..f8d5dfa3c6e 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1167,7 +1167,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem
/* Called before syms_of_fileio, because it sets up Qerror_condition. */
syms_of_data ();
- syms_of_fns (); /* Before syms_of_charset which uses hashtables. */
+ syms_of_fns (); /* Before syms_of_charset which uses hash tables. */
syms_of_fileio ();
/* Before syms_of_coding to initialize Vgc_cons_threshold. */
syms_of_alloc ();
diff --git a/src/lread.c b/src/lread.c
index 8a368806e15..0bc34b228cc 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2500,7 +2500,7 @@ read1 (Lisp_Object readcharfun, int *pch, bool first_in_list)
c = READCHAR;
if (c == '(')
{
- /* Accept extended format for hashtables (extensible to
+ /* Accept extended format for hash tables (extensible to
other types), e.g.
#s(hash-table size 2 test equal data (k1 v1 k2 v2)) */
Lisp_Object tmp = read_list (0, readcharfun);
@@ -2546,10 +2546,10 @@ read1 (Lisp_Object readcharfun, int *pch, bool first_in_list)
if (!NILP (params[param_count + 1]))
param_count += 2;
- /* This is the hashtable data. */
+ /* This is the hash table data. */
data = Fplist_get (tmp, Qdata);
- /* Now use params to make a new hashtable and fill it. */
+ /* Now use params to make a new hash table and fill it. */
ht = Fmake_hash_table (param_count, params);
while (CONSP (data))
@@ -2557,7 +2557,7 @@ read1 (Lisp_Object readcharfun, int *pch, bool first_in_list)
key = XCAR (data);
data = XCDR (data);
if (!CONSP (data))
- error ("Odd number of elements in hashtable data");
+ error ("Odd number of elements in hash table data");
val = XCAR (data);
data = XCDR (data);
Fputhash (key, val, ht);