diff options
| author | Stefan Kangas | 2022-09-19 06:31:49 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2022-09-19 06:31:49 +0200 |
| commit | 731c453b035c1c61af9a76d44680a7e4c660eaaf (patch) | |
| tree | 92c1fdde08aeb629b1694a1bb9e460abefc85db1 /src | |
| parent | 5b3c4004a9647aa2068e54c358e202f57d0ece3c (diff) | |
| parent | a2f9788cbc5f514da5f11d9f875fd7482bb00732 (diff) | |
| download | emacs-731c453b035c1c61af9a76d44680a7e4c660eaaf.tar.gz emacs-731c453b035c1c61af9a76d44680a7e4c660eaaf.zip | |
Merge from origin/emacs-28
a2f9788cbc ; Minor copyedits of *-frame-alist doc strings
c200098dde ; * src/intervals.c (get_local_map): Fix commentary.
69cc3d38bc Fix Tramp error with eshell integration
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 2 | ||||
| -rw-r--r-- | src/intervals.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/frame.c b/src/frame.c index 25d71e0769f..91b9bec82c3 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -6243,7 +6243,7 @@ You can also use a floating number between 0.0 and 1.0. */); | |||
| 6243 | #endif | 6243 | #endif |
| 6244 | 6244 | ||
| 6245 | DEFVAR_LISP ("default-frame-alist", Vdefault_frame_alist, | 6245 | DEFVAR_LISP ("default-frame-alist", Vdefault_frame_alist, |
| 6246 | doc: /* Alist of default values for frame creation. | 6246 | doc: /* Alist of default values of frame parameters for frame creation. |
| 6247 | These may be set in your init file, like this: | 6247 | These may be set in your init file, like this: |
| 6248 | (setq default-frame-alist \\='((width . 80) (height . 55) (menu-bar-lines . 1))) | 6248 | (setq default-frame-alist \\='((width . 80) (height . 55) (menu-bar-lines . 1))) |
| 6249 | 6249 | ||
diff --git a/src/intervals.c b/src/intervals.c index 85152c58a5d..7f119815570 100644 --- a/src/intervals.c +++ b/src/intervals.c | |||
| @@ -2171,8 +2171,8 @@ get_property_and_range (ptrdiff_t pos, Lisp_Object prop, Lisp_Object *val, | |||
| 2171 | 2171 | ||
| 2172 | /* Return the proper local keymap TYPE for position POSITION in | 2172 | /* Return the proper local keymap TYPE for position POSITION in |
| 2173 | BUFFER; TYPE should be one of `keymap' or `local-map'. Use the map | 2173 | BUFFER; TYPE should be one of `keymap' or `local-map'. Use the map |
| 2174 | specified by the PROP property, if any. Otherwise, if TYPE is | 2174 | specified by the TYPE property, if any. Otherwise, if TYPE is |
| 2175 | `local-map' use BUFFER's local map. */ | 2175 | `local-map', use BUFFER's local map. */ |
| 2176 | 2176 | ||
| 2177 | Lisp_Object | 2177 | Lisp_Object |
| 2178 | get_local_map (ptrdiff_t position, struct buffer *buffer, Lisp_Object type) | 2178 | get_local_map (ptrdiff_t position, struct buffer *buffer, Lisp_Object type) |