aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorEli Zaretskii2024-09-07 06:25:15 -0400
committerEli Zaretskii2024-09-07 06:25:15 -0400
commit6dcd3d24045113fb0afec0d7f43e322c9baa06ab (patch)
tree4c14a10f8c558b2086c53ae822109c7da127078e /doc/misc
parent358208dfaa374cc71c4a1c081c2d5bff9127c55a (diff)
parentb420e149b1ebc41dd183ab460930d78321e2e339 (diff)
downloademacs-6dcd3d24045113fb0afec0d7f43e322c9baa06ab.tar.gz
emacs-6dcd3d24045113fb0afec0d7f43e322c9baa06ab.zip
Merge from origin/emacs-30
b420e149b1e Fix a typo in ediff-init.el e1304e9b1bb Fix 'chart-space-usage' on MS-Windows 04c44405bf6 Fix alignment and documentation of vtable.el 4d6fadb8d21 ; * lisp/which-key.el: Fix ':package-version' (bug#73072). 54071b9cef2 ; Improve doc strings of 'tab-bar-mode' and 'tab-line-mode' 87a8b12a0c4 Fix test failure in erc-networks-tests dad0935cfcb ; * doc/emacs/building.texi (Lisp Libraries): Update (bug... e4dc6711b02 Fix :hook in 'use-package' c1cd036d27a ; * doc/lispref/modes.texi (Mode Line Data): Fox wording. ae2463796f2 ; Caveats about using :eval in 'mode-line-format' 4047072c7d8 Update FSF's address 24f12bdd77e Support the new option in ruby-ts-mode too 6c15b7710d4 Add new option ruby-bracketed-args-indent 7799ef43354 Fix Rmail base64 and qp decoding of MIME payloads 0def396fa8f Update to Org 9.7.11 8c044bd9726 ; Fix recent changes in documentation e0d8879bcd5 * test/lisp/emacs-lisp/tabulated-list-tests.el: Add missi... 4ff4b78f922 ; Small doc fixes da980ad838e ; Reword some "allows Xing" 2ca7d5649c6 ; More accurate text about how `equal` compares various o... # Conflicts: # etc/NEWS
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/efaq.texi2
-rw-r--r--doc/misc/org.org4
-rw-r--r--doc/misc/vtable.texi19
3 files changed, 16 insertions, 9 deletions
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi
index 521361250b8..c0e78966d45 100644
--- a/doc/misc/efaq.texi
+++ b/doc/misc/efaq.texi
@@ -954,7 +954,7 @@ used.
954@item 954@item
955New major modes based on the 955New major modes based on the
956@uref{https://tree-sitter.github.io/tree-sitter/, tree-sitter library} 956@uref{https://tree-sitter.github.io/tree-sitter/, tree-sitter library}
957library for editing Elixir, HTML, Lua, HEEx, and PHP. 957library for editing Elixir, HEEx, HTML, Lua, and PHP.
958 958
959@item 959@item
960Support for the EditorConfig standard has been added, an editor-neutral 960Support for the EditorConfig standard has been added, an editor-neutral
diff --git a/doc/misc/org.org b/doc/misc/org.org
index dcc1ddc7f44..e595d0be195 100644
--- a/doc/misc/org.org
+++ b/doc/misc/org.org
@@ -3788,8 +3788,8 @@ argument.
3788 3788
3789With the above setting, you could link to a specific bug with 3789With the above setting, you could link to a specific bug with
3790=[[bugzilla:129]]=, search the web for =OrgMode= with =[[duckduckgo:OrgMode]]=, 3790=[[bugzilla:129]]=, search the web for =OrgMode= with =[[duckduckgo:OrgMode]]=,
3791show the map location of the Free Software Foundation =[[gmap:51 3791show the map location of the Free Software Foundation =[[omap:31
3792Franklin Street, Boston]]= or of Carsten office =[[omap:Science Park 904, 3792Milk Street, Boston]]= or of Carsten's office =[[omap:Science Park 904,
3793Amsterdam, The Netherlands]]= and find out what the Org author is doing 3793Amsterdam, The Netherlands]]= and find out what the Org author is doing
3794besides Emacs hacking with =[[ads:Dominik,C]]=. 3794besides Emacs hacking with =[[ads:Dominik,C]]=.
3795 3795
diff --git a/doc/misc/vtable.texi b/doc/misc/vtable.texi
index 2e0adfb235a..795d7fad037 100644
--- a/doc/misc/vtable.texi
+++ b/doc/misc/vtable.texi
@@ -337,7 +337,9 @@ width (in pixels), and @var{table} is the table.
337@end defun 337@end defun
338 338
339@item align 339@item align
340Should be either @code{right} or @code{left}. 340Should be either @code{right} or @code{left}. If not specified,
341numerical values will be flushed to the right, and all other values will
342be flushed to the left.
341@end table 343@end table
342 344
343@item :getter 345@item :getter
@@ -426,14 +428,19 @@ current line, they can use the @code{vtable-current-object} function
426(@pxref{Interface Functions}) to determine what that object is. 428(@pxref{Interface Functions}) to determine what that object is.
427 429
428@item :separator-width 430@item :separator-width
429The width of the blank space between columns. 431The width of the blank space between columns. If not specified, it
432defaults to 1.
430 433
431@item :divider-width 434@item :divider-width
432@itemx :divider 435@itemx :divider
433You can have a divider inserted between the columns. This can either 436You can have a divider inserted between the columns. This can either be
434be specified by using @code{:divider}, which should be a string to be 437specified by using @code{:divider}, which should be a string to be
435displayed between the columns, or @code{:divider-width}, which 438displayed between the columns, or @code{:divider-width}, which specifies
436specifies the width of the space to be used as the divider. 439the width of the space to be used as the divider, in units of characters
440of the face used to display the table. If not specified,
441@code{:divider} defaults to @code{nil}, but specifying
442@code{:divider-width} effectively sets the divider to a whitespace
443string of that width.
437 444
438@item :sort-by 445@item :sort-by
439This should be a list of tuples, and specifies how the table is to be 446This should be a list of tuples, and specifies how the table is to be