blob: 533595a5b9e76bd4e8f3f813d7a9a3c6168dadf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/sh
#
# Insane amount of empty lines and comments
#
#
#
#
#
#
#
#
#
#
#
#
# This line makes the next one a comment in Tcl \
exec wish "$0" -- ${1+"$@"}
# lintian should not check the following for syntax
# if it detects the line above correctly
# Code snippet taken from eTkTab
if { [array names prefs keybindings] != "" } {
# Read in the file
array set unparsed_bindings [ read_settings_file $prefs(keybindings)]
}
|