mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
lib: clarify description of notmuch_database_add_message
Since we're accumulating the index when we add a new file to the message, the semantics have slightly changed. This tries to align the documentation with the actual functionality.
This commit is contained in:
parent
fdf2b3007a
commit
55f9f6505e
1 changed files with 7 additions and 4 deletions
|
@ -542,8 +542,10 @@ notmuch_database_get_directory (notmuch_database_t *database,
|
||||||
notmuch_directory_t **directory);
|
notmuch_directory_t **directory);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a new message to the given notmuch database or associate an
|
* Add a message file to a database, indexing it for retrieval by
|
||||||
* additional filename with an existing message.
|
* future searches. If a message already exists with the same message
|
||||||
|
* ID as the specified file, their indexes will be merged, and this
|
||||||
|
* new filename will also be associated with the existing message.
|
||||||
*
|
*
|
||||||
* Here, 'filename' should be a path relative to 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
|
* 'database' (see notmuch_database_get_path), or else should be an
|
||||||
|
@ -556,8 +558,9 @@ notmuch_database_get_directory (notmuch_database_t *database,
|
||||||
* entire contents of the file.
|
* entire contents of the file.
|
||||||
*
|
*
|
||||||
* If another message with the same message ID already exists in the
|
* If another message with the same message ID already exists in the
|
||||||
* database, rather than creating a new message, this adds 'filename'
|
* database, rather than creating a new message, this adds the search
|
||||||
* to the list of the filenames for the existing message.
|
* terms from the identified file to the existing message's index, and
|
||||||
|
* adds 'filename' to the list of filenames known for the message.
|
||||||
*
|
*
|
||||||
* If 'message' is not NULL, then, on successful return
|
* If 'message' is not NULL, then, on successful return
|
||||||
* (NOTMUCH_STATUS_SUCCESS or NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) '*message'
|
* (NOTMUCH_STATUS_SUCCESS or NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) '*message'
|
||||||
|
|
Loading…
Reference in a new issue