aboutsummaryrefslogtreecommitdiffstats
path: root/estruct.h
diff options
context:
space:
mode:
authorThiago Farina <tfransosi@gmail.com>2010-10-30 23:07:41 -0200
committerLinus Torvalds <torvalds@linux-foundation.org>2010-10-30 18:09:40 -0700
commit6491f4c4f04ec84879a751d3a406bc903478441a (patch)
treed91d1650669b9db510dc8a99685fa44bd521a3e7 /estruct.h
parent18342f6246bef932f9b6f3ca0fe1137f05a76e74 (diff)
downloaduemacs-6491f4c4f04ec84879a751d3a406bc903478441a.tar.gz
uemacs: convert typedef struct WHBLOCK to struct while_block.
Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'estruct.h')
-rw-r--r--estruct.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/estruct.h b/estruct.h
index 998f169..97caebb 100644
--- a/estruct.h
+++ b/estruct.h
@@ -623,12 +623,12 @@ typedef struct VDESC {
the following structure
*/
-typedef struct WHBLOCK {
- struct line *w_begin; /* ptr to !while statement */
- struct line *w_end; /* ptr to the !endwhile statement */
- int w_type; /* block type */
- struct WHBLOCK *w_next; /* next while */
-} WHBLOCK;
+struct while_block {
+ struct line *w_begin; /* ptr to !while statement */
+ struct line *w_end; /* ptr to the !endwhile statement */
+ int w_type; /* block type */
+ struct while_block *w_next; /* next while */
+};
#define BTWHILE 1
#define BTBREAK 2