Overview
| Comment: | Cleanup of compilation warnings * Add the -Wall compilation flag * Use rl_ding() instead of undeclared ding() |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk | origin/devel |
| Files: | files | file ages | folders |
| SHA1: |
a9511ba2db32531caffb5ea210b304e5 |
| User & Date: | quentin@minster.io on 2014-02-26 22:37:52.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2014-03-17
| ||
| 21:17 | Harmonize style in all Tcl files Brace arguments of if/expr constructs check-in: dc9268f6ad user: quentin@minster.io tags: trunk, origin/devel | |
|
2014-02-26
| ||
| 22:37 | Cleanup of compilation warnings * Add the -Wall compilation flag * Use rl_ding() instead of undeclared ding() check-in: a9511ba2db user: quentin@minster.io tags: trunk, origin/devel | |
| 00:38 | Harmonize file headers, indent and whitespace in all files check-in: 5f3ab55c4a user: quentin@minster.io tags: trunk, origin/devel | |
Changes
Modified Makefile.am
from [45d2bf5cbc]
to [552bf072e7].
| ︙ | |||
14 15 16 17 18 19 20 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | + - + | libtclreadline_la_SOURCES = config.h tclreadline.c tclreadline.h include_HEADERS = tclreadline.h INCLUDES = -I$(TCL_INCLUDE_DIR) -I$(READLINE_INCLUDE_DIR) ## libtclreadline_la_LIBADD = $(LIBS) libtclreadline_la_CFLAGS = -Wall |
| ︙ |
Modified tclreadline.c
from [eb4c3e5998]
to [8e0b5f7ca4].
| ︙ | |||
411 412 413 414 415 416 417 | 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 | - + |
/*
* ring the terminal bell obeying the current
* settings -- audible or visible.
*/
|
| ︙ |