From c04149a7bdcfe8578c6527f86cc117ec03331a24 Mon Sep 17 00:00:00 2001
From: Oscar Najera <hi@oscarnajera.com>
Date: Wed, 26 Feb 2025 22:23:22 +0100
Subject: vtable fix on emacs 30 is shorter

---
 config/doom/config.org | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/config/doom/config.org b/config/doom/config.org
index 7ef66e4..4db7459 100644
--- a/config/doom/config.org
+++ b/config/doom/config.org
@@ -138,22 +138,7 @@ Because I always need help and it should come up quickly
 #+end_src
 ** Fixes
 #+begin_src emacs-lisp
-;; this imports fixes of emacs 30
 (after! vtable
-  (defun vtable-beginning-of-table ()
-    "Go to the start of the current table."
-    (if (or (text-property-search-backward 'vtable (vtable-current-table) #'eq)
-            (get-text-property (point) 'vtable))
-        (point)
-      (goto-char (point-min))))
-
-  (defun vtable-end-of-table ()
-    "Go to the end of the current table."
-    (if (text-property-search-forward 'vtable (vtable-current-table) #'eq)
-        (point)
-      (goto-char (point-max))))
-
-  ;; This is my own fix
   (defun vtable-header-line-sort (e)
     "Sort a vtable from the header line."
     (interactive "e")
-- 
cgit v1.2.3