function, which was moved into its own file because it is so long.
src/util.c::
-Contains useful functions which are not really dependant on anything.
+Contains useful functions which are not really dependent on anything.
src/window.c::
Handlers to update X11 window properties like +WM_CLASS+, +_NET_WM_NAME+,
# This list can be used to convert X11 Keysyms to Unicode 2.1 character.
# The list is not checked for correctness by Unicode officials. Use it
# at your own risk and the creator is not responsable for any damage that
-# occured due to using this list.
+# occurred due to using this list.
#
# The list is created by looking at the Keysym names and the Unicode data
# file. Other mapping tables were used as a reference where needed.
}
/*
- * Restores the X11 input focus to whereever it was before.
+ * Restores the X11 input focus to wherever it was before.
* This is necessary because i3-input’s window has override_redirect=1
* (→ unmanaged by the window manager) and thus i3-input changes focus itself.
* This function is called on exit().
state = yajl_parse(handle, (const unsigned char *)json, strlen(json));
- /* FIXME: Propper error handling for JSON parsing */
+ /* FIXME: Proper error handling for JSON parsing */
switch (state) {
case yajl_status_ok:
break;
state = yajl_parse(handle, (const unsigned char *)json, strlen(json));
- /* FIXME: Propper errorhandling for JSON-parsing */
+ /* FIXME: Proper errorhandling for JSON-parsing */
switch (state) {
case yajl_status_ok:
break;
state = yajl_parse(handle, (const unsigned char *)json, strlen(json));
- /* FIXME: Propper error handling for JSON parsing */
+ /* FIXME: Proper error handling for JSON parsing */
switch (state) {
case yajl_status_ok:
break;
/*
* Handle a button press event (i.e. a mouse click on one of our bars).
- * We determine, whether the click occured on a workspace button or if the scroll-
+ * We determine, whether the click occurred on a workspace button or if the scroll-
* wheel was used and change the workspace appropriately
*
*/
/* Byte offset where the next line will be written to. */
uint32_t offset_next_write;
- /* Byte offset where the last wrap occured. */
+ /* Byte offset where the last wrap occurred. */
uint32_t offset_last_wrap;
/* The size of the logfile in bytes. Since the size is limited to 25 MiB
} \
} while (0)
-/** If an error occured during parsing of the criteria, we want to exit instead
+/** If an error occurred during parsing of the criteria, we want to exit instead
* of relying on fallback behavior. See #2091. */
#define HANDLE_INVALID_MATCH \
do { \
/* In case the workspace we just moved was visible but there was no
* other workspace to switch to, we need to initialize the source
- * output aswell */
+ * output as well */
if (visible && previous == NULL) {
LOG("There is no workspace left on \"%s\", re-initializing\n",
workspace_out->name);
/* By rendering the stacked container again, we handle the case
* that we have a non-leaf-container inside the stack. In that
* case, the children of the non-leaf-container need to be raised
- * aswell. */
+ * as well. */
render_con(child, false);
}
waitpid(pid_gdb, &status, 0);
- /* see if the backtrace was succesful or not */
+ /* see if the backtrace was successful or not */
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
DLOG("GDB did not run properly\n");
return -1;
static int sig_handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
uint16_t state = event->state;
- /* Apparantly, after activating numlock once, the numlock modifier
+ /* Apparently, after activating numlock once, the numlock modifier
* stays turned on (use xev(1) to verify). So, to resolve useful
* keysyms, we remove the numlock flag from the event state */
state &= ~xcb_numlock_mask;
TAILQ_FOREACH(current, &(con->nodes_head), nodes)
mark_unmapped(current);
if (con->type == CT_WORKSPACE) {
- /* We need to call mark_unmapped on floating nodes aswell since we can
+ /* We need to call mark_unmapped on floating nodes as well since we can
* make containers floating. */
TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
mark_unmapped(current);
# subshell or situations like that.
AnyEvent::Util::close_all_fds_except(0, 1, 2);
-# convinience wrapper to write to the log file
+# convenience wrapper to write to the log file
my $log;
sub Log { say $log "@_" }
$aggregator->stop();
-# print empty lines to seperate failed tests from statuslines
+# print empty lines to separate failed tests from statuslines
print "\n\n";
for (@done) {
status_completed(0);
}
-# generates the status text, prints it in the appropiate line
-# and returns it, so it can be used in conjuction with C<Log()>
+# generates the status text, prints it in the appropriate line
+# and returns it, so it can be used in conjunction with C<Log()>
sub status {
my ($display, $msg) = @_;
my $status = "[$display] $msg";
my $i3 = i3;
-# Switch to the nineth workspace
+# Switch to the ninth workspace
$i3->command('9')->recv;
#####################################################################
my $i3 = i3;
-# Switch to the nineth workspace
+# Switch to the ninth workspace
$i3->command('9')->recv;
#####################################################################
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
# (unless you are already familiar with Perl)
#
-# Check if stacking containers can be used independantly of
+# Check if stacking containers can be used independently of
# the split mode (horizontal/vertical) of the underlying
# container.
#
exit_gracefully($pid);
#####################################################################
-# configuration file case: socket gets placed whereever we specify
+# configuration file case: socket gets placed wherever we specify
#####################################################################
my $tmpdir = tempdir(CLEANUP => 1);