This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From cf2a87a156aeb14d09c4d04b4b8857185803d9d4 Mon Sep 17 00:00:00 2001 | |
From: Matthew Brush <[email protected]> | |
Date: Sun, 10 Dec 2017 19:09:54 -0800 | |
Subject: [PATCH 1/2] Switch to using recursive make for build system | |
This makes it easier to grok what's going on since it puts related | |
rules into separate files and allows for cleaner path specifications. | |
As part of refactoring, various improvements where made to Autotools | |
practices. It now passes make distcheck and can be built out-of-tree. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* one.c -- Lua core, libraries, and interpreter in a single file (Lua 5.3) | |
*/ | |
/* default is to build the full interpreter */ | |
#ifndef MAKE_LIB | |
#ifndef MAKE_LUAC | |
#ifndef MAKE_LUA | |
#define MAKE_LUA | |
#endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/libmain.c b/src/libmain.c | |
index fe4f377..6b8bf8a 100644 | |
--- a/src/libmain.c | |
+++ b/src/libmain.c | |
@@ -110,6 +110,7 @@ static gboolean print_prefix = FALSE; | |
#ifdef HAVE_PLUGINS | |
static gboolean no_plugins = FALSE; | |
#endif | |
+static gboolean open_untitled = FALSE; | |
static gboolean dummy = FALSE; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (c) 2015 Rozhuk Ivan <[email protected]> | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions | |
# are met: | |
# 1. Redistributions of source code must retain the above copyright | |
# notice, this list of conditions and the following disclaimer. | |
# 2. Redistributions in binary form must reproduce the above copyright |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# ╭─┬╮╭─┬─┬─┬┬╮ ╭┬─┬─┬─┬─┬─╮╭┬─╮ | |
# ├╴│╰┼╴│╭┼╴├ ┤ ╭╯│││╶┤ │╶┤ ├╯│││ | |
# │││╶┤││││││││ │││╶┤ │││ │││││╶┤ | |
# ╰─┴─┴─┴╯╰─┴┴╯ ╰─┴─┴─┴─┴─┴─┴─┴─╯ | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# ╭─┬╮╭─┬─┬─┬┬╮ ╭┬─┬─┬─┬─┬─╮╭┬─╮ | |
# ├╴│╰┼╴│╭┼╴├ ┤ ╭╯│││╶┤ │╶┤ ├╯│││ | |
# │││╶┤││││││││ │││╶┤ │││ │││││╶┤ | |
# ╰─┴─┴─┴╯╰─┴┴╯ ╰─┴─┴─┴─┴─┴─┴─┴─╯ | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# No explicit license or copyright info available but part of the | |
# `gedit-themes` project: | |
# https://github.com/mig/gedit-themes/blob/master/zenburn.xml | |
# | |
# Ported to Geany by Matthew Brush <matt(at)geany(dot)org> | |
# | |
[theme_info] | |
name=Nanna |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Only in geanypy: aclocal.m4 | |
Only in geany-plugins/geanypy: AUTHORS | |
Only in geanypy: autogen.sh | |
Only in geanypy: autom4te.cache | |
Only in geanypy: build-aux | |
Only in geany-plugins/geanypy: ChangeLog | |
Only in geanypy: config.log | |
Only in geanypy: config.status | |
Only in geanypy: configure | |
Only in geanypy: configure.ac |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
<libstdcxx_emergency_buffer> | |
Memcheck:Leak | |
match-leak-kinds: reachable | |
fun:malloc | |
... | |
fun:call_init.part.0 | |
fun:call_init | |
fun:_dl_init | |
... |