]> git.notmuchmail.org Git - notmuch/commitdiff
Typsos
authorIngmar Vanhassel <ingmar@exherbo.org>
Tue, 17 Nov 2009 23:23:42 +0000 (00:23 +0100)
committerCarl Worth <cworth@cworth.org>
Wed, 18 Nov 2009 11:21:36 +0000 (03:21 -0800)
15 files changed:
Makefile
README
gmime-filter-reply.h
lib/database.cc
lib/index.cc
lib/message.cc
lib/notmuch-private.h
lib/notmuch.h
lib/sha1.c
lib/thread.cc
notmuch-completion.bash
notmuch-new.c
notmuch-search.c
notmuch.el
show-message.c

index 436dacfc4c6318e76f076c007771afe34153f52f..96aaa7370c558d5ad6aabab5837fc6efefc0d579 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Default FLAGS, (can be overriden by user such as "make CFLAGS=-O2")
+# Default FLAGS, (can be overridden by user such as "make CFLAGS=-O2")
 WARN_FLAGS=-Wall -Wextra -Wmissing-declarations -Wwrite-strings -Wswitch-enum
 CFLAGS=-O2
 
@@ -14,7 +14,7 @@ override CXXFLAGS += $(WARN_FLAGS) $(extra_cflags) $(extra_cxxflags)
 override LDFLAGS += `pkg-config --libs glib-2.0 gmime-2.4 talloc` \
                        `xapian-config --libs`
 
-# Include our local Makfile.local first so that its first target is default
+# Include our local Makefile.local first so that its first target is default
 include Makefile.local
 include lib/Makefile.local
 
diff --git a/README b/README
index 40f05ab4bae6057e6d23c07da2f87430024d0d81..844bd3126a475c3d2b3eccf1bc3bc4bcecaaabec 100644 (file)
--- a/README
+++ b/README
@@ -3,7 +3,7 @@ Notmuch - thread-based email index, search and tagging.
 Notmuch is a system for indexing, searching, reading, and tagging
 large collections of email messages. It uses the Xapian library to
 provide fast, full-text search of very large collection of email with
-a very convenient search syntas.
+a very convenient search syntax.
 
 Notmuch is free software, released under the GNU General Public
 License version 3 (or later).
@@ -45,7 +45,7 @@ obtaining a more sophisticated interface:
        notmuch.el file in this distribution.
 
        If someone were to write a curses-based interface, or similar,
-       it might also be reasonable to buil on the "notmuch"
+       it might also be reasonable to build on the "notmuch"
        command-line interface.
 
      2. Build on top of the notmuch library interface.
@@ -65,6 +65,3 @@ obtaining a more sophisticated interface:
 As can be seen, alternate interfaces to the Notmuch mail system are
 still in development. We would appreciate any contributions to these
 efforts.
-
-
-       
\ No newline at end of file
index 41cbc1348a166aeae5bc06ea3a896811d333a81d..b7cbc6b10f742af6b7e48b5e573454f7b75013d5 100644 (file)
@@ -40,7 +40,7 @@ typedef struct _GMimeFilterReplyClass GMimeFilterReplyClass;
  * @saw_nl: previous char was a \n
  * @saw_angle: previous char was a >
  *
- * A filter to insert/remove reply markers (lines begining with >)
+ * A filter to insert/remove reply markers (lines beginning with >)
  **/
 struct _GMimeFilterReply {
        GMimeFilter parent_object;
index ce9a86bfddb8b525a19ecefe27d443bb803a8d01..726c5a98a02b1e153358c0daff820dac8cac3cc3 100644 (file)
@@ -185,7 +185,7 @@ notmuch_status_to_string (notmuch_status_t status)
     case NOTMUCH_STATUS_TAG_TOO_LONG:
        return "Tag value is too long (exceeds NOTMUCH_TAG_MAX)";
     case NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW:
-       return "Unblanced number of calls to notmuch_message_freeze/thaw";
+       return "Unbalanced number of calls to notmuch_message_freeze/thaw";
     default:
     case NOTMUCH_STATUS_LAST_STATUS:
        return "Unknown error status value";
index 65b83b3f706f4fc3df571cd2caefc86c1d25ec10..80df64bfb73a3edbf2ff9819e99c473c3d41f81b 100644 (file)
@@ -198,7 +198,7 @@ _index_mime_part (notmuch_message_t *message,
                if (i == 1)
                    continue;
                if (i > 1)
-                   fprintf (stderr, "Warning: Unexpected extra parts of mutlipart/signed. Indexing anyway.\n");
+                   fprintf (stderr, "Warning: Unexpected extra parts of multipart/signed. Indexing anyway.\n");
            }
            _index_mime_part (message,
                              g_mime_multipart_get_part (multipart, i));
index 5f8db50fb78b3df8157761387ee30cce4c83f76d..9488fb665ea18444bcc7670da991e0edcb91f5c1 100644 (file)
@@ -146,7 +146,7 @@ _notmuch_message_create (const void *talloc_owner,
 }
 
 /* Create a new notmuch_message_t object for a specific message ID,
- * (which may or may not already exist in the databas).
+ * (which may or may not already exist in the database).
  *
  * The 'notmuch' database will be the talloc owner of the returned
  * message.
index dad7e22e52689079ac53658fb327a489b333eff5..1583498ea72aa1689b2cb7d25cdd219684b39bf4 100644 (file)
@@ -234,7 +234,7 @@ notmuch_message_file_open (const char *filename);
 notmuch_message_file_t *
 _notmuch_message_file_open_ctx (void *ctx, const char *filename);
 
-/* Close a notmuch message preivously opened with notmuch_message_open. */
+/* Close a notmuch message previously opened with notmuch_message_open. */
 void
 notmuch_message_file_close (notmuch_message_file_t *message);
 
index f135fd3f2c1a8ab75814fafca2eeeab9db2dfd0e..cc713a3309af6d3a44d0e4bbeca315a8caa84bb0 100644 (file)
@@ -222,7 +222,7 @@ notmuch_database_get_timestamp (notmuch_database_t *database,
 
 /* Add a new message to the given notmuch database.
  *
- * Here,'filename' should be a path relative to the the path of
+ * Here,'filename' should be a path relative to the path of
  * 'database' (see notmuch_database_get_path), or else should be an
  * absolute filename with initial components that match the path of
  * 'database'.
@@ -258,7 +258,7 @@ notmuch_database_add_message (notmuch_database_t *database,
                              const char *filename,
                              notmuch_message_t **message);
 
-/* Find a message with the given messsage_id.
+/* Find a message with the given message_id.
  *
  * If the database contains a message with the given message_id, then
  * a new notmuch_message_t object is returned. The caller should call
@@ -620,7 +620,7 @@ notmuch_messages_advance (notmuch_messages_t *messages);
 /* Destroy a notmuch_messages_t object.
  *
  * It's not strictly necessary to call this function. All memory from
- * the notmuch_messages_t object will be reclaimed when the containg
+ * the notmuch_messages_t object will be reclaimed when the containing
  * query object is destroyed.
  */
 void
@@ -865,7 +865,7 @@ notmuch_tags_has_more (notmuch_tags_t *tags);
 /* Get the current tag from 'tags' as a string.
  *
  * Note: The returned string belongs to 'tags' and has a lifetime
- * identical to it (and the query to which it utlimately belongs).
+ * identical to it (and the query to which it ultimately belongs).
  *
  * See the documentation of notmuch_message_get_tags for example code
  * showing how to iterate over a notmuch_tags_t object.
@@ -884,7 +884,7 @@ notmuch_tags_advance (notmuch_tags_t *tags);
 /* Destroy a notmuch_tags_t object.
  *
  * It's not strictly necessary to call this function. All memory from
- * the notmuch_tags_t object will be reclaimed when the containg
+ * the notmuch_tags_t object will be reclaimed when the containing
  * message or query objects are destroyed.
  */
 void
index ff4dd164779bbfc74b87aa2ae54d597f02ca9241..cc481086c3aca6d443dfe249e6587e90755d3196 100644 (file)
@@ -43,7 +43,7 @@ _hex_of_sha1_digest (const unsigned char digest[SHA1_DIGEST_SIZE])
     return result;
 }
 
-/* Create a hexadcimal string version of the SHA-1 digest of 'str'
+/* Create a hexadecimal string version of the SHA-1 digest of 'str'
  * (including its null terminating character).
  *
  * This function returns a newly allocated string which the caller
index 9bb6a5e1f4d11b8ba50e89c7377e4e3122cc3ed4..267f4dbaa2bd15a315b6444911483c0b82293503 100644 (file)
@@ -190,7 +190,7 @@ _resolve_thread_relationships (unused (notmuch_thread_t *thread))
  * subject line, the total count of messages, and all authors). The
  * second search is for all messages that are in the thread and that
  * also match the given query_string. This is to allow for a separate
- * count of matched messages, and to allow a viewer to diplay these
+ * count of matched messages, and to allow a viewer to display these
  * messages differently.
  *
  * Here, 'ctx' is talloc context for the resulting thread object.
index 868e9cde9d7a3756a61750a83836954b9387f04f..42557173212a13c9359b3f3e64b352b9d8665450 100644 (file)
@@ -1,4 +1,4 @@
-# Bash completion for notmutch
+# Bash completion for notmuch
 #
 # Copyright © 2009 Carl Worth
 #
index 83a05ba654f1acd73a7fc984a1d836b0ec13d783..5405a9fc85fcd5ebf8f5099058cea4acc5f43449 100644 (file)
@@ -303,7 +303,7 @@ add_files (notmuch_database_t *notmuch,
 
 /* XXX: This should be merged with the add_files function since it
  * shares a lot of logic with it. */
-/* Recursively count all regular files in path and all sub-direcotries
+/* Recursively count all regular files in path and all sub-directories
  * of path.  The result is added to *count (which should be
  * initialized to zero by the top-level caller before calling
  * count_files). */
@@ -469,7 +469,7 @@ notmuch_new_command (void *ctx,
 
     if (elapsed > 1 && ! add_files_state.saw_read_only_directory) {
        printf ("\nTip: If you have any sub-directories that are archives (that is,\n"
-               "they will never receive new mail), marking these directores as\n"
+               "they will never receive new mail), marking these directories as\n"
                "read-only (chmod u-w /path/to/dir) will make \"notmuch new\"\n"
                "much more efficient (it won't even look in those directories).\n");
     }
index 91266c35b2635152d6b439fd960f2c3c4a2d9ad8..f7f9e70c041d746df56a6bc0386bc06358a67765 100644 (file)
@@ -135,7 +135,7 @@ notmuch_search_command (void *ctx, int argc, char *argv[])
 
     query_str = query_string_from_args (ctx, argc, argv);
     if (query_str == NULL) {
-       fprintf (stderr, "Out of moemory.\n");
+       fprintf (stderr, "Out of memory.\n");
        return 1;
     }
 
index 9de16e006fd3cac225be5c723936512279bd1022..014d15bc85508edf392fe15171c5eec9a4004add 100644 (file)
@@ -205,7 +205,7 @@ Unlike builtin `next-line' this version accepts no arguments."
 (defun notmuch-show-mark-read-then-archive-thread ()
   "Remove \"unread\" tag from each message, then archive and show next thread.
 
-Archive each message currrently shown by removing the \"unread\"
+Archive each message currently shown by removing the \"unread\"
 and \"inbox\" tag from each. Then kill this buffer and show the
 next thread from the search from which this thread was originally
 shown.
@@ -220,7 +220,7 @@ buffer."
 (defun notmuch-show-archive-thread ()
   "Archive each message in thread, and show next thread from search.
 
-Archive each message currrently shown by removing the \"inbox\"
+Archive each message currently shown by removing the \"inbox\"
 tag from each. Then kill this buffer and show the next thread
 from the search from which this thread was originally shown.
 
@@ -340,7 +340,7 @@ there are no more unread messages past the current point."
       (notmuch-show-next-message)))
 
 (defun notmuch-show-next-open-message ()
-  "Advance to the the next message which is not hidden.
+  "Advance to the next message which is not hidden.
 
 If read messages are currently hidden, advance to the next unread
 message. Otherwise, advance to the next message."
@@ -674,7 +674,7 @@ thread from that buffer can be show when done with this one)."
       )))
 
 (defvar notmuch-search-authors-width 40
-  "Number of columns to use to diplay authors in a notmuch-search buffer.")
+  "Number of columns to use to display authors in a notmuch-search buffer.")
 
 (defvar notmuch-search-mode-map
   (let ((map (make-sparse-keymap)))
@@ -910,7 +910,7 @@ the beginning of the buffer).
 
 This command toggles the sort order for the current search.
 
-Note that any fitlered searches created by
+Note that any filtered searches created by
 `notmuch-search-filter' retain the search order of the parent
 search."
   (interactive)
index 79b02e2fd2688294591122cb44e75a868ab5183e..38f5897aac75ca6cf6673e982d5fab41d90ea70d 100644 (file)
@@ -38,7 +38,7 @@ show_message_part (GMimeObject *part, int *part_count,
                if (i == 1)
                    continue;
                if (i > 1)
-                   fprintf (stderr, "Warning: Unexpected extra parts of mutlipart/signed. Continuing.\n");
+                   fprintf (stderr, "Warning: Unexpected extra parts of multipart/signed. Continuing.\n");
            }
            show_message_part (g_mime_multipart_get_part (multipart, i),
                               part_count, show_part);