aboutsummaryrefslogtreecommitdiff
path: root/doc/modules
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.dev>2025-01-30 08:49:52 +0200
committerBozhidar Batsov <bozhidar@batsov.dev>2025-01-30 08:51:26 +0200
commit147162babd65aeaf88d5d8791041ad50b7804f73 (patch)
tree26420ca006781117b043388535ff3e75d5212f0b /doc/modules
parent69af288a8bb529e445b05e58b751a77516288f2d (diff)
Drop support for Emacs 25
Emacs 25 is ancient at this point and likely no one is using it anymore.
Diffstat (limited to 'doc/modules')
-rw-r--r--doc/modules/ROOT/pages/installation.adoc2
-rw-r--r--doc/modules/ROOT/pages/projectile_vs_project.adoc2
-rw-r--r--doc/modules/ROOT/pages/projects.adoc6
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/modules/ROOT/pages/installation.adoc b/doc/modules/ROOT/pages/installation.adoc
index 058ba71..7181254 100644
--- a/doc/modules/ROOT/pages/installation.adoc
+++ b/doc/modules/ROOT/pages/installation.adoc
@@ -1,6 +1,6 @@
= Installation
-NOTE: Projectile officially supports Emacs 25.1+.
+NOTE: Projectile officially supports Emacs 26.1+.
The recommended way to install Projectile is via `package.el`.
diff --git a/doc/modules/ROOT/pages/projectile_vs_project.adoc b/doc/modules/ROOT/pages/projectile_vs_project.adoc
index 9e86103..01ffff3 100644
--- a/doc/modules/ROOT/pages/projectile_vs_project.adoc
+++ b/doc/modules/ROOT/pages/projectile_vs_project.adoc
@@ -106,7 +106,7 @@ rely on the third-party applications and it's significance today is not that big
== Projectile's Pros
-* Projectile targets Emacs 25, so you can get all the features even with older Emacs releases
+* Projectile targets Emacs 26, so you can get all the features even with older Emacs releases
* Projectile has different project indexing strategies, which offer you a lot of flexibility in different situations
* Projectile supports a lot of project types out-of-the-box (e.g. `ruby`, `Rails`, `cabal` and `dune`)
* Projectile has a lot more features, although one can argue that some of them are rarely needed
diff --git a/doc/modules/ROOT/pages/projects.adoc b/doc/modules/ROOT/pages/projects.adoc
index 6206145..7da369c 100644
--- a/doc/modules/ROOT/pages/projects.adoc
+++ b/doc/modules/ROOT/pages/projects.adoc
@@ -549,9 +549,9 @@ A custom function for the project using multiple programming languages with diff
(defun my/related-files(file)
(let ((ext-to-test-prefix '(("cpp" . "Test")
("py" . "test_"))))
- (if-let ((ext (file-name-extension file))
- (test-prefix (assoc-default ext ext-to-test-prefix))
- (file-name (file-name-nondirectory file)))
+ (if-let* ((ext (file-name-extension file))
+ (test-prefix (assoc-default ext ext-to-test-prefix))
+ (file-name (file-name-nondirectory file)))
(if (string-prefix-p test-prefix file-name)
(let ((suffix (concat "/" (substring file-name (length test-prefix)))))
(list :impl (lambda (other-file)