From 47c423b6cae87b64069bf4c057ff6ba218e9ece8 Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Thu, 15 Jan 2009 16:59:36 +0000 Subject: Docs: grammar and spelling fixes, and some character entity usage. --- doc/hackersguide/overview.sgml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'doc/hackersguide/overview.sgml') diff --git a/doc/hackersguide/overview.sgml b/doc/hackersguide/overview.sgml index c8d15a4f9..eb62e5bd3 100644 --- a/doc/hackersguide/overview.sgml +++ b/doc/hackersguide/overview.sgml @@ -460,7 +460,7 @@ Contains various video output driver plugins. Video output drivers are thin abstraction layers over various video output platforms - (e.g. X11, directfb, directX,...). Video output driver plugins + (e.g. X11, directfb, directX, …). Video output driver plugins provide functions like frame allocation and drawing and handle stuff like hardware acceleration, scaling and colorspace conversion if necessary. They do not handle a/v sync since this is done @@ -497,7 +497,7 @@ xine-engine - The heart of xine - it's engine. Contains code to + The heart of xine – its engine. Contains code to load and handle all the plugins, the configuration repository as well as the generic decoding loops and code for synchronized output. A lot of helper functions for plugins to use live here as well. @@ -573,7 +573,7 @@    static void push (my_stack_t *this_gen, int i) {     intstack_t *this = (intstack_t *)this_gen; -    this->values[MAX_STACK_SIZE - ++this->stack_size] = i; +    this->values[MAX_STACK_SIZE - ++this->stack_size] = i;    } @@ -613,15 +613,15 @@     this = malloc(sizeof(intstack_t));         /* fill in methods */ -    this->push = push; -    this->add = add; -    this->pop = pop; +    this->push = push; +    this->add = add; +    this->pop = pop;         /* init data fields */ -    this->stack_size = 0; +    this->stack_size = 0;         /* return public part */ -    return &this->stack; +    return &this->stack;    } @@ -686,7 +686,7 @@ use something like -    printf("module: ..."[,...]); +    printf("module: ..."[,…]); for console output. All console output goes to stdout and must be prefixed by the module name which generates the output (see example above). @@ -714,7 +714,7 @@ Output which is done thru this function will be displayed for the end user by the frontend. - If xine->verbosity is not 0 the messages will also + If xine->verbosity is not 0 the messages will also be displayed on the console. Ideally these strings are translated. This function is for information which the user should @@ -727,7 +727,7 @@ xprintf - This macro uses the xine->verbosity value to decide + This macro uses the xine->verbosity value to decide if the string should be printed to the console. Possible values are XINE_VERBOSITY_NONE, XINE_VERBOSITY_LOG or XINE_VERBOSITY_DEBUG. By default nothing is printed. @@ -821,7 +821,7 @@ committing it locally and using hg export . >foo.patch to create the file to be attached is acceptable (but note that the first - line - up to the first line feed - of the commit message is regarded as + line – up to the first line feed – of the commit message is regarded as the patch summary; if you're not sure, check with hg log -r.. Alternatively, use From: and Subject: lines -- cgit v1.2.3