Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ghostty-org/ghostty
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 76b3a8b06dfea12998de9cd5db37f598f3b2c981
Choose a base ref
..
head repository: ghostty-org/ghostty
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 98d77788f4b233d422606482294cef8142c235b5
Choose a head ref
Showing with 0 additions and 6 deletions.
  1. +0 −6 src/config/edit.zig
6 changes: 0 additions & 6 deletions src/config/edit.zig
Original file line number Diff line number Diff line change
@@ -48,12 +48,6 @@ pub fn open(alloc_gpa: Allocator) !void {
///
/// The allocator must be an arena allocator. No memory is freed by this
/// function and the resulting path is not all the memory that is allocated.
///
/// NOTE: WHY IS THIS INLINE? This is inline because when this is not
/// inline then Zig 0.13 crashes [most of the time] when trying to compile
/// this file. This is a workaround for that issue. This function is only
/// called from one place that is not performance critical so it is fine
/// to be inline.
fn configPath(alloc_arena: Allocator) ![]const u8 {
const paths: []const []const u8 = try configPathCandidates(alloc_arena);
assert(paths.len > 0);