Skip to content

Commit

Permalink
Updated version number to 200.36.1.
Browse files Browse the repository at this point in the history
Updated lib/show.tec for recent changes to flags.
Adjusted comments in a couple of test scripts.
Fixed Doxygen warnings.
  • Loading branch information
fpjohnston committed Jun 4, 2023
1 parent 96a62c7 commit b3988ca
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 47 deletions.
4 changes: 0 additions & 4 deletions etc/pattern/exec.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,8 @@ extern bool next_yank(void);

extern bool read_EI(void);

extern void reset_if(void);

extern void reset_indirect(void);

extern void reset_loop(void);

extern void reset_search(void);

extern bool skip_cmd(struct cmd *cmd, const char *skip);
Expand Down
8 changes: 0 additions & 8 deletions include/estack.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,8 @@ extern void scan_x(struct cmd *cmd);

extern void store_add(void);

extern void store_and(void);

extern void store_complement(void);

extern void store_mul(void);

extern void store_oper(enum x_oper type);

extern void store_or(void);

extern void store_sub(void);

extern void store_val(int_t value);
Expand Down
4 changes: 0 additions & 4 deletions include/exec.h
Original file line number Diff line number Diff line change
Expand Up @@ -477,12 +477,8 @@ extern bool next_yank(void);

extern bool read_EI(void);

extern void reset_if(void);

extern void reset_indirect(void);

extern void reset_loop(void);

extern void reset_search(void);

extern bool skip_cmd(struct cmd *cmd, const char *skip);
Expand Down
10 changes: 0 additions & 10 deletions include/teco.h
Original file line number Diff line number Diff line change
Expand Up @@ -284,12 +284,6 @@ extern void *expand_mem(void *p1, uint_t size, uint_t delta);

extern void free_mem(void *ptr);

extern uint getloop_base(void);

extern uint getloop_depth(void);

extern uint_t getloop_start(void);

extern void init_env(void);

extern void init_options(int argc, const char * const argv[]);
Expand All @@ -300,10 +294,6 @@ extern void print_size(uint_t size);

extern void reset_map(void);

extern void setloop_depth(uint depth);

extern void setloop_base(uint base);

extern void *shrink_mem(void *p1, uint_t size, uint_t delta);

extern int teco_env(int n, bool colon);
Expand Down
2 changes: 1 addition & 1 deletion include/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ enum release_version ///< TECO release version numbers
{
major_version = 200,
minor_version = 36,
patch_version = 0
patch_version = 1
};

#endif // !defined(_VERSION_H)
17 changes: 9 additions & 8 deletions lib/show.tec
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ E1 U1 ! Save extended features flag !
E2:@=/E2 = 0x%x: /
E2&1 "N @^A/zero / '
E2&2 "N @^A/oper / '
E2&4 "N @^A/atsign / '
E2&8 "N @^A/colon / '
E2&16 "N @^A/comma / '
E2&32 "N @^A/m_arg / '
E2&64 "N @^A/n_arg / '
E2&4 "N @^A/number / '
E2&8 "N @^A/m_arg / '
E2&16 "N @^A/n_arg / '
E2&32 "N @^A/colon / '
E2&64 "N @^A/atsign / '
E2&128 "N @^A/loop / '
E2&256 "N @^A/quote / '
E2&512 "N @^A/page / '
Expand All @@ -74,6 +74,7 @@ E1 U1 ! Save extended features flag !
E3&8 "N @^A/CR_out / '
E3&16 "N @^A/noin / '
E3&32 "N @^A/noout / '
E3&64 "N @^A/unicode / '
E3&128 "N @^A/keepnul / '
E3&256 "N @^A/CR_type / '
-1^T
Expand Down Expand Up @@ -110,9 +111,9 @@ E1 U1 ! Save extended features flag !
@^A/concise/
'
'
EH&4 "N @^A/what / '
EH&8 "N @^A/where / '
EH&16 "N @^A/who / '
EH&4 "N @^A/ what/ '
EH&8 "N @^A/ where/ '
EH&16 "N @^A/ who/ '
-1^T
}

Expand Down
4 changes: 2 additions & 2 deletions src/cmd_estack.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
#if defined(INLINE)

#undef INLINE
#define INLINE inline
#define INLINE inline ///< Enable inline functions

#else

#define INLINE
#define INLINE ///< Disable inline functions

#endif

Expand Down
4 changes: 2 additions & 2 deletions src/cmd_exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
#if defined(INLINE)

#undef INLINE
#define INLINE inline
#define INLINE inline ///< Enable inline functions

#else

#define INLINE
#define INLINE ///< Disable inline functions

#endif

Expand Down
4 changes: 2 additions & 2 deletions src/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
#if defined(INLINE)

#undef INLINE
#define INLINE inline
#define INLINE inline ///< Enable inline functions

#else

#define INLINE
#define INLINE ///< Disable inline functions

#endif

Expand Down
4 changes: 2 additions & 2 deletions src/memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@
#if DEBUG != 2 && DEBUG != 3

#undef DEBUG
#define DEBUG 1
#define DEBUG 1 ///< Enable basic debugging features

#endif

#else

#define DEBUG 0
#define DEBUG 0 ///< Disable debugging features

#endif

Expand Down
4 changes: 2 additions & 2 deletions src/qreg.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@
#if defined(INLINE)

#undef INLINE
#define INLINE inline
#define INLINE inline ///< Enable inline functions

#else

#define INLINE
#define INLINE ///< Disable inline functions

#endif

Expand Down
2 changes: 1 addition & 1 deletion test/scripts/O/O_02a.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

! Function: Branch to null tag !
! Command: O !
! TECO: ?NOT !
! TECO-64: ?NOT !

[[enter]]

Expand Down
2 changes: 1 addition & 1 deletion test/scripts/O/O_02b.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

! Function: Branch to null tag !
! Command: O !
! TECO: ?NOT !
! TECO-64: ?NOT !

[[enter]]

Expand Down

0 comments on commit b3988ca

Please sign in to comment.