aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorPo Lu2022-12-11 09:34:03 +0800
committerPo Lu2022-12-11 09:34:03 +0800
commit6d6ca47aba7b72d2a770d7ed01c849d3cc729e21 (patch)
treee8181f7188a3a74147549b7ba76ea9c3a696259c /doc/misc
parente08564432918aa87b49da58ac90bb43718424364 (diff)
parent44c5f3614973d8dc389ddcdc1b3f8ab1c809194d (diff)
downloademacs-6d6ca47aba7b72d2a770d7ed01c849d3cc729e21.tar.gz
emacs-6d6ca47aba7b72d2a770d7ed01c849d3cc729e21.zip
Merge from origin/emacs-29
44c5f361497 ; Fix two byte-compiler warnings a8ee046fb50 Ensure 'package-vc--version' always returns a version 022ab1061b2 Ensure 'package-vc--main-file' always returns an existing... 357fe91996b Check if package already exists before installing from ch... 5e8bc79f6b2 ; Fix reference in docstring to 'package-vc-install-from-... af88b00b19c Refresh the package quickstart file in package-vc 5a092c8e461 ; * admin/notes/tree-sitter/starter-guide (Indent): Minor... ebef8905b0d Make indirect buffers use tree-sitter parsers of their ba... 8f53fa10d94 Fontify "this" as a keyword in c++-ts-mode (bug#59924) 8de8f1dc051 Add class_body indentation for typescript (bug#59680) 839341d7370 Make more granular defun-type-regexp (bug#59873) 8f49137c9bf Add dockerfile-ts-mode (Bug#59894) 1014bcc8e32 Fix fontification of method-invocations in js-ts-mode (bu... 7141920c6af Fix escape-sequence feature in typescript-ts-mode (bug#59... 4df35e3491c Improve fontification in csharp-ts-mode (bug#59909) 33a8415eb7e Use 'project--value-in-dir' for 'project-vc-include-untra... 594267395d5 Update Turkish Hello 940d9070e97 Support newer glib versions (Bug#59061) 0bd26abf7fb ; * doc/misc/use-package.texi: Fix @file. bcf235acd58 Merge branch 'emacs-29' of git.savannah.gnu.org:/srv/git/... 2ea7a357fd1 ; * doc/misc/use-package.texi: Fix @acronym. d268ab1c5d7 Bring back the project--value-in-dir logic
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/use-package.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/misc/use-package.texi b/doc/misc/use-package.texi
index daf27ec5bbc..d3b6ee99003 100644
--- a/doc/misc/use-package.texi
+++ b/doc/misc/use-package.texi
@@ -190,7 +190,7 @@ immediately. In most cases, this is not necessary or desirable, as
190that will slow down Emacs startup. Instead, you should try to set 190that will slow down Emacs startup. Instead, you should try to set
191things up so that packages are only loaded when they are actually 191things up so that packages are only loaded when they are actually
192needed (a.k.a. ``autoloading''). If you have installed a package from 192needed (a.k.a. ``autoloading''). If you have installed a package from
193@acronym{GNU ELPA} that provides it's own autoloads, it is often 193@acronym{GNU} @acronym{ELPA} that provides it's own autoloads, it is often
194enough to say: 194enough to say:
195 195
196@lisp 196@lisp
@@ -1273,7 +1273,7 @@ cells, or a string or regexp.
1273The following example reproduces the default @code{ruby-mode} 1273The following example reproduces the default @code{ruby-mode}
1274configuration, exactly as it is in Emacs out-of-the-box. That mode is 1274configuration, exactly as it is in Emacs out-of-the-box. That mode is
1275enabled automatically when a file whose name matches the regexp 1275enabled automatically when a file whose name matches the regexp
1276@code{"\\.rb\\'"} (a file with the @samp{.rb} extension), or when the 1276@code{"\\.rb\\'"} (a file with the @file{.rb} extension), or when the
1277first line of the file (known as the ``shebang'') matches the string 1277first line of the file (known as the ``shebang'') matches the string
1278@code{"ruby"}: 1278@code{"ruby"}:
1279 1279