diff options
| author | Stefan Kangas | 2023-08-02 23:26:52 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2023-08-02 23:32:28 +0200 |
| commit | 0910230be6ee858d8d8849a1fc9559bfd163dc38 (patch) | |
| tree | 488cd08e66816afc74341e00b3516eaf3a8b0367 /src | |
| parent | dbd3c030bb90a38d4d5aed5e13f8d698f7960321 (diff) | |
| download | emacs-0910230be6ee858d8d8849a1fc9559bfd163dc38.tar.gz emacs-0910230be6ee858d8d8849a1fc9559bfd163dc38.zip | |
; Prefer HTTPS to HTTP in more links
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog.12 | 2 | ||||
| -rw-r--r-- | src/w32fns.c | 4 | ||||
| -rw-r--r-- | src/w32term.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/ChangeLog.12 b/src/ChangeLog.12 index 74df9809261..fdb7a2e659b 100644 --- a/src/ChangeLog.12 +++ b/src/ChangeLog.12 | |||
| @@ -7077,7 +7077,7 @@ | |||
| 7077 | 7077 | ||
| 7078 | * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5 | 7078 | * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5 |
| 7079 | and later about non-assignments with no effect. See discussion at | 7079 | and later about non-assignments with no effect. See discussion at |
| 7080 | http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for | 7080 | https://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for |
| 7081 | details. | 7081 | details. |
| 7082 | 7082 | ||
| 7083 | 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru> | 7083 | 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru> |
diff --git a/src/w32fns.c b/src/w32fns.c index dcf9a212bdd..07b389df84a 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -3852,7 +3852,7 @@ deliver_wm_chars (int do_translate, HWND hwnd, UINT msg, UINT wParam, | |||
| 3852 | 3852 | ||
| 3853 | /* What follows is just heuristics; the correct treatment requires | 3853 | /* What follows is just heuristics; the correct treatment requires |
| 3854 | non-destructive ToUnicode(): | 3854 | non-destructive ToUnicode(): |
| 3855 | http://search.cpan.org/~ilyaz/UI-KeyboardLayout/lib/UI/KeyboardLayout.pm#Can_an_application_on_Windows_accept_keyboard_events?_Part_IV:_application-specific_modifiers | 3855 | https://metacpan.org/dist/UI-KeyboardLayout/view/lib/UI/KeyboardLayout.pm#Can-an-application-on-Windows-accept-keyboard-events?-Part-IV:-application-specific-modifiers |
| 3856 | 3856 | ||
| 3857 | What one needs to find is: | 3857 | What one needs to find is: |
| 3858 | * which of the present modifiers AFFECT the resulting char(s) | 3858 | * which of the present modifiers AFFECT the resulting char(s) |
| @@ -3914,7 +3914,7 @@ deliver_wm_chars (int do_translate, HWND hwnd, UINT msg, UINT wParam, | |||
| 3914 | character is the same for AltGr-* (=rAlt-*) and Ctrl-Alt-* (in any | 3914 | character is the same for AltGr-* (=rAlt-*) and Ctrl-Alt-* (in any |
| 3915 | combination of handedness). For description of masks, see | 3915 | combination of handedness). For description of masks, see |
| 3916 | 3916 | ||
| 3917 | http://search.cpan.org/~ilyaz/UI-KeyboardLayout/lib/UI/KeyboardLayout.pm#Keyboard_input_on_Windows,_Part_I:_what_is_the_kernel_doing? | 3917 | https://metacpan.org/dist/UI-KeyboardLayout/view/lib/UI/KeyboardLayout.pm#Keyboard-input-on-Windows,-Part-I:-what-is-the-kernel-doing? |
| 3918 | 3918 | ||
| 3919 | By default, Emacs was using these coincidences via the following | 3919 | By default, Emacs was using these coincidences via the following |
| 3920 | heuristics: it was treating: | 3920 | heuristics: it was treating: |
diff --git a/src/w32term.h b/src/w32term.h index 69ef297cbcc..68237bfff1d 100644 --- a/src/w32term.h +++ b/src/w32term.h | |||
| @@ -29,7 +29,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 29 | calls us. The ALIGN_STACK attribute forces GCC to emit a preamble | 29 | calls us. The ALIGN_STACK attribute forces GCC to emit a preamble |
| 30 | code to re-align the stack at function entry. Further details | 30 | code to re-align the stack at function entry. Further details |
| 31 | about this can be found in | 31 | about this can be found in |
| 32 | http://www.peterstock.co.uk/games/mingw_sse/. */ | 32 | https://www.peterstock.co.uk/games/mingw_sse/. */ |
| 33 | #ifdef __GNUC__ | 33 | #ifdef __GNUC__ |
| 34 | # if USE_STACK_LISP_OBJECTS && !defined _WIN64 && !defined __x86_64__ \ | 34 | # if USE_STACK_LISP_OBJECTS && !defined _WIN64 && !defined __x86_64__ \ |
| 35 | && __GNUC__ + (__GNUC_MINOR__ > 1) >= 5 | 35 | && __GNUC__ + (__GNUC_MINOR__ > 1) >= 5 |