diff options
| author | Eli Zaretskii | 2023-04-15 12:43:37 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2023-04-15 12:43:37 -0400 |
| commit | 5fecdbcd81db3d4a06277400c458d8ca7dcf7462 (patch) | |
| tree | e8a6e1cca4f6f7642a268575ecf5243347a87ee8 /doc/misc | |
| parent | 4c086bf2951596d04677c343eb49fb32a3831e18 (diff) | |
| parent | 5ef7ff05736b9d1b4d806cfe04ec5d99c090e748 (diff) | |
| download | emacs-5fecdbcd81db3d4a06277400c458d8ca7dcf7462.tar.gz emacs-5fecdbcd81db3d4a06277400c458d8ca7dcf7462.zip | |
Merge from origin/emacs-29
5ef7ff05736 ; Start a new ChangeLog.4 file.
11126c6d30a Fix 'C-h k' for "Paste from Kill Menu" in context menus
74ddfe811f9 ; * doc/misc/calc.texi (Rewrites Tutorial): Fix a typo (b...
08cda286c3f Improve the documentation of the XDS support
14d1c00e806 Allow reindentation of images inserted by 'mm-inline-image'
b63a9eda01c Fix "C-h k" and "C-h c" with Paste from Kill Menu
b36c21e27dc Change cursor color on NS port when it matches the face b...
96714c106b7 Improve documentation of image-related commands
6a2863ca016 Fix handling of sliced images
5be79fd05a5 ; * etc/NEWS: Announce 'cyrillic-mongolian' IM.
ca1a0fda98a ; Fix last change.
ce63462dbda Add cyrillic-mongolian input method
58801792706 ; Minor addition to the Emacs FAQ
88847dee125 Jsonrpc: don't bind inhibit-read-only to t so early
cb8c87a423a Allow active region when IM is used
# Conflicts:
# etc/NEWS
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/calc.texi | 2 | ||||
| -rw-r--r-- | doc/misc/efaq.texi | 20 |
2 files changed, 16 insertions, 6 deletions
diff --git a/doc/misc/calc.texi b/doc/misc/calc.texi index 044c018080c..aacc0d0b0ec 100644 --- a/doc/misc/calc.texi +++ b/doc/misc/calc.texi | |||
| @@ -5394,7 +5394,7 @@ a variable containing a vector of rules. | |||
| 5394 | 1: [merge, secsqr] 1: [a/x + b/x := (a + b)/x, ... ] | 5394 | 1: [merge, secsqr] 1: [a/x + b/x := (a + b)/x, ... ] |
| 5395 | . . | 5395 | . . |
| 5396 | 5396 | ||
| 5397 | ' [merge,sinsqr] @key{RET} = | 5397 | ' [merge,secsqr] @key{RET} = |
| 5398 | 5398 | ||
| 5399 | @end group | 5399 | @end group |
| 5400 | @end smallexample | 5400 | @end smallexample |
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi index 4a8c863230f..0a0c375d273 100644 --- a/doc/misc/efaq.texi +++ b/doc/misc/efaq.texi | |||
| @@ -3133,13 +3133,23 @@ example, you can put the following in your init file: | |||
| 3133 | 3133 | ||
| 3134 | To avoid the slightly distracting visual effect of Emacs starting with | 3134 | To avoid the slightly distracting visual effect of Emacs starting with |
| 3135 | its default frame size and then growing to fullscreen, you can add an | 3135 | its default frame size and then growing to fullscreen, you can add an |
| 3136 | @samp{Emacs.Geometry} entry to the Windows registry settings. | 3136 | @samp{Emacs.Geometry} entry to the Windows Registry settings. @xref{X |
| 3137 | @xref{X Resources,,, emacs, The GNU Emacs Manual}. | 3137 | Resources,,, emacs, The GNU Emacs Manual}. To compute the correct |
| 3138 | 3138 | values for width and height you use in the Registry settings, first | |
| 3139 | To compute the correct values for width and height, first maximize the | 3139 | maximize the Emacs frame and then evaluate @code{(frame-height)} and |
| 3140 | Emacs frame and then evaluate @code{(frame-height)} and | ||
| 3141 | @code{(frame-width)} with @kbd{M-:}. | 3140 | @code{(frame-width)} with @kbd{M-:}. |
| 3142 | 3141 | ||
| 3142 | Alternatively, you can avoid the visual effect of Emacs changing its | ||
| 3143 | frame size entirely in your init file (i.e., without using the | ||
| 3144 | Registry), like this: | ||
| 3145 | |||
| 3146 | @lisp | ||
| 3147 | (setq frame-resize-pixelwise t) | ||
| 3148 | (set-frame-position nil 0 0) | ||
| 3149 | (set-frame-size nil (display-pixel-width) (display-pixel-height) t) | ||
| 3150 | @end lisp | ||
| 3151 | |||
| 3152 | |||
| 3143 | @node Emacs in a Linux console | 3153 | @node Emacs in a Linux console |
| 3144 | @section How can I alleviate the limitations of the Linux console? | 3154 | @section How can I alleviate the limitations of the Linux console? |
| 3145 | @cindex Console, Linux console, TTY, fbterm | 3155 | @cindex Console, Linux console, TTY, fbterm |