git: 9front

Download patch

ref: 09d4ca5248e694dacda55dbef0c3aaae1d3fd00d
parent: 81ecbb5e98cd7b156eb6b9880388979d168f4120
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Fri Apr 19 12:17:41 EDT 2024

keyboard(6): use >> instead of > for caps example (thanks moody)

Using > causes the kbmap file to get truncated,
which resets to the default keymap and *THEN*
applies the new change. Which is probably not
what was intended.

--- a/sys/man/6/keyboard
+++ b/sys/man/6/keyboard
@@ -32,7 +32,7 @@
 .PP
 .RS
 .L
-cat /sys/lib/kbmap/caps >/dev/kbmap
+cat /sys/lib/kbmap/caps >> /dev/kbmap
 .RE
 .PP
 The delete character
--