update packages

This commit is contained in:
2025-02-26 20:16:44 +01:00
parent 59db017445
commit 45d49daef0
291 changed files with 16240 additions and 522600 deletions

View File

@@ -1,4 +1,4 @@
;;; org-invoice.el --- Help manage client invoices in OrgMode
;;; org-invoice.el --- Help manage client invoices in OrgMode -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2008-2014, 2021 pmade inc. (Peter Jones pjones@pmade.com)
;;
@@ -46,10 +46,9 @@
;;
;; git clone git://pmade.com/elisp
(eval-when-compile
(require 'cl)
(require 'org))
(declare-function org-duration-from-minutes "org-duration" (minutes &optional fmt fractional))
(require 'cl-lib))
(require 'org-duration)
(require 'org)
(defgroup org-invoice nil
"OrgMode Invoice Helper"
@@ -387,7 +386,9 @@ I place mine under a third-level heading like so:
(let ((report (org-invoice-in-report-p)))
(when (and (not report) jump)
(when (re-search-forward "^#\\+BEGIN:[ \t]+invoice" nil t)
(org-show-entry)
(if (fboundp 'org-fold-show-entry)
(org-fold-show-entry)
(with-no-warnings (org-show-entry)))
(beginning-of-line)
(setq report (point))))
(if report (goto-char report)