mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
Doxygen: Begin commands with @ not \.
This commit is contained in:
parent
0cb047b298
commit
76c6f38169
@ -150,7 +150,7 @@ struct document {
|
||||
* until it gets resolved and loaded. New items are guaranteed to
|
||||
* always appear at the list end. */
|
||||
LIST_OF(struct string_list_item) onload_snippets;
|
||||
/** \todo FIXME: We should externally maybe using cache_entry store the
|
||||
/** @todo FIXME: We should externally maybe using cache_entry store the
|
||||
* dependencies between the various entries so nothing gets removed
|
||||
* unneeded. */
|
||||
struct uri_list ecmascript_imports;
|
||||
@ -158,7 +158,7 @@ struct document {
|
||||
timer_id_T timeout;
|
||||
#endif
|
||||
#ifdef CONFIG_CSS
|
||||
/** \todo FIXME: We should externally maybe using cache_entry store the
|
||||
/** @todo FIXME: We should externally maybe using cache_entry store the
|
||||
* dependencies between the various entries so nothing gets removed
|
||||
* unneeded. */
|
||||
struct uri_list css_imports;
|
||||
@ -172,7 +172,7 @@ struct document {
|
||||
struct cache_entry *cached;
|
||||
|
||||
struct frame_desc *frame;
|
||||
struct frameset_desc *frame_desc; /**< \todo RENAME ME */
|
||||
struct frameset_desc *frame_desc; /**< @todo RENAME ME */
|
||||
struct document_refresh *refresh;
|
||||
|
||||
struct line *data;
|
||||
@ -239,7 +239,7 @@ void shrink_format_cache(int);
|
||||
|
||||
extern struct module document_module;
|
||||
|
||||
/** \todo FIXME: support for entities and all Unicode characters.
|
||||
/** @todo FIXME: support for entities and all Unicode characters.
|
||||
* (Unpaired surrogates should be rejected, so that the ECMAScript
|
||||
* interface can convert the access key to UTF-16.)
|
||||
* For now, we only support simple printable character. */
|
||||
|
@ -63,7 +63,7 @@ struct screen_char {
|
||||
* In the screen image, they have attribute SCREEN_ATTR_FRAME;
|
||||
* you should drop them to the image using draw_border_char().
|
||||
*
|
||||
* \todo TODO: When we'll support internal Unicode, this should be
|
||||
* @todo TODO: When we'll support internal Unicode, this should be
|
||||
* changed to some Unicode sequences. --pasky
|
||||
*
|
||||
* Codes extracted from twin-0.4.6 GPL project, a Textmode WINdow environment,
|
||||
|
@ -1,7 +1,7 @@
|
||||
/** Support for keyboard interface
|
||||
* @file
|
||||
*
|
||||
* \todo TODO: move stuff from here to itrm.{c,h} and mouse.{c,h}
|
||||
* @todo TODO: move stuff from here to itrm.{c,h} and mouse.{c,h}
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
@ -73,8 +73,8 @@ free_all_itrms(void)
|
||||
|
||||
|
||||
/** A select_handler_T write_func for itrm_out.sock. This is called
|
||||
* when there is data in \c itrm->out.queue and it is possible to write
|
||||
* it to \c itrm->out.sock. When \c itrm->out.queue becomes empty, this
|
||||
* when there is data in @c itrm->out.queue and it is possible to write
|
||||
* it to @c itrm->out.sock. When @c itrm->out.queue becomes empty, this
|
||||
* handler is temporarily removed. */
|
||||
static void
|
||||
itrm_queue_write(struct itrm *itrm)
|
||||
|
@ -1,7 +1,7 @@
|
||||
/** Terminal color palettes.
|
||||
* @file
|
||||
*
|
||||
* \todo TODO: We should probably autogenerate this using xterm's perl
|
||||
* @todo TODO: We should probably autogenerate this using xterm's perl
|
||||
* script. */
|
||||
|
||||
/** The 16 ANSI colors. */
|
||||
|
@ -308,8 +308,8 @@ static const struct screen_driver_opt *const screen_driver_opts[] = {
|
||||
|
||||
static INIT_LIST_OF(struct screen_driver, active_screen_drivers);
|
||||
|
||||
/** Set screen_driver.opt according to screen_driver.type and \a term_spec.
|
||||
* Other members of \a *driver need not have been initialized.
|
||||
/** Set screen_driver.opt according to screen_driver.type and @a term_spec.
|
||||
* Other members of @a *driver need not have been initialized.
|
||||
*
|
||||
* If you modify anything here, check whether option descriptions
|
||||
* should be updated. */
|
||||
@ -1165,7 +1165,7 @@ init_screen(void)
|
||||
}
|
||||
|
||||
/*! The two images are allocated in one chunk.
|
||||
* \todo TODO: It seems allocation failure here is fatal.
|
||||
* @todo TODO: It seems allocation failure here is fatal.
|
||||
* We should do something! */
|
||||
void
|
||||
resize_screen(struct terminal *term, int width, int height)
|
||||
|
@ -56,7 +56,7 @@ enum term_redrawing_state {
|
||||
* is currently displayed on it) etc. It also maintains some runtime
|
||||
* information about the actual ELinks instance owning this terminal.
|
||||
*
|
||||
* \todo TODO: Regroup the following into logical chunks. --pasky */
|
||||
* @todo TODO: Regroup the following into logical chunks. --pasky */
|
||||
struct terminal {
|
||||
LIST_HEAD(struct terminal); /*!< ::terminals is the sentinel. */
|
||||
|
||||
|
@ -32,7 +32,7 @@ unsigned char *get_filename_position(unsigned char *filename);
|
||||
* The returned file name is allocated. */
|
||||
unsigned char *expand_tilde(unsigned char *filename);
|
||||
|
||||
/*! \brief Generate a unique file name by trial and error based on the
|
||||
/*! @brief Generate a unique file name by trial and error based on the
|
||||
* @a fileprefix by adding suffix counter (e.g. '.42').
|
||||
*
|
||||
* The returned file name is allocated if @a fileprefix is not unique. */
|
||||
|
@ -29,7 +29,7 @@ static void transform_md5(uint32_t buf[4], uint32_t const in[16]);
|
||||
|
||||
/** Swap the bytes of each uint32_t, if necessary.
|
||||
* This code is harmless on little-endian machines.
|
||||
* \todo FIXME: Optimize it away on little-endian machines. */
|
||||
* @todo FIXME: Optimize it away on little-endian machines. */
|
||||
static void
|
||||
reverse_md5_bytes(unsigned char *buf, unsigned int longs)
|
||||
{
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
/**
|
||||
* \struct memory_list
|
||||
* @struct memory_list
|
||||
* memory_list is used to track information about all allocated memory
|
||||
* belonging to something. Then we can free it when we won't need it
|
||||
* anymore, but the one who allocated it won't be able to get control
|
||||
|
@ -163,7 +163,7 @@ mem_align_alloc__(
|
||||
|
||||
|
||||
/** @name Maybe-free macros
|
||||
* \todo TODO: Think about making what they do more obvious in their
|
||||
* @todo TODO: Think about making what they do more obvious in their
|
||||
* identifier, they could be obfuscating their users a little for the
|
||||
* newcomers otherwise.
|
||||
* @{ */
|
||||
|
Loading…
x
Reference in New Issue
Block a user