]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/cedet/semantic/db.el (semanticdb-create-database): Remove obsolete arg
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 20 Dec 2023 22:50:48 +0000 (17:50 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 20 Dec 2023 22:50:48 +0000 (17:50 -0500)
lisp/calendar/time-date.el
lisp/cedet/semantic/db.el

index 319d1d1b91c8f2accee6794b5a9bfaf82e9e3a31..b2f9c1bd52d2e69e92c6f0ae7441f1719af53d58 100644 (file)
@@ -408,6 +408,7 @@ right of \"%x\", trailing zero units are not output."
   "Formatting used by the function `seconds-to-string'.")
 ;;;###autoload
 (defun seconds-to-string (delay)
+  ;; FIXME: There's a similar (tho fancier) function in mastodon.el!
   "Convert the time interval in seconds to a short string."
   (cond ((> 0 delay) (concat "-" (seconds-to-string (- delay))))
         ((= 0 delay) "0s")
index 0c78493542f8e0490904d5fc596ce0d713795dde..e8c008cb8c67218f264fb288861a4d0749e5eca1 100644 (file)
@@ -393,9 +393,7 @@ If a database for DIRECTORY has already been created, return it.
 If DIRECTORY doesn't exist, create a new one."
   (let ((db (semanticdb-directory-loaded-p directory)))
     (unless db
-      (setq db (semanticdb-project-database
-               (file-name-nondirectory directory)
-               :tables nil))
+      (setq db (semanticdb-project-database :tables nil))
       ;; Set this up here.   We can't put it in the constructor because it
       ;; would be saved, and we want DB files to be portable.
       (setf (slot-value db 'reference-directory) (file-truename directory)))