From 6c3371d18286e139f5e1f71928aa43a6de1493ef Mon Sep 17 00:00:00 2001 From: vdhoeven Date: Wed, 25 Aug 2010 17:21:23 +0000 Subject: [PATCH] Various minor fixes git-svn-id: svn://svn.savannah.gnu.org/texmacs/trunk@3061 64cb5145-927a-446d-8aed-2fb7b4773692 --- src/TeXmacs/examples/plugins/complete/src/complete.cpp | 2 +- src/TeXmacs/langs/encoding/symbol-unicode-oneway.scm | 4 ++-- src/TeXmacs/langs/encoding/tmuniversaltounicode.scm | 2 +- src/TeXmacs/progs/dynamic/scripts-edit.scm | 2 +- src/TeXmacs/progs/dynamic/session-edit.scm | 2 +- src/TeXmacs/progs/kernel/library/tree.scm | 2 +- src/TeXmacs/progs/text/text-kbd.scm | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/TeXmacs/examples/plugins/complete/src/complete.cpp b/src/TeXmacs/examples/plugins/complete/src/complete.cpp index e222692f..4ad65f58 100644 --- a/src/TeXmacs/examples/plugins/complete/src/complete.cpp +++ b/src/TeXmacs/examples/plugins/complete/src/complete.cpp @@ -10,7 +10,7 @@ ******************************************************************************/ #include -#include +#include #define DATA_BEGIN ((char) 2) #define DATA_END ((char) 5) diff --git a/src/TeXmacs/langs/encoding/symbol-unicode-oneway.scm b/src/TeXmacs/langs/encoding/symbol-unicode-oneway.scm index 115244a9..77c70227 100644 --- a/src/TeXmacs/langs/encoding/symbol-unicode-oneway.scm +++ b/src/TeXmacs/langs/encoding/symbol-unicode-oneway.scm @@ -12,7 +12,7 @@ ;;; Synonyms for other symbols -;; Alternate symbol names. There use the same glyph and are converted to the +;; Alternate symbol names. They use the same glyph and are converted to the ;; same unicode character as another symbol. ("" "#2020") ; see @@ -93,7 +93,7 @@ ;;; Big delimiters ;; These symbols should only be used internally by TeXmacs in the -;; LEFT, RIGHT, MID and BIG primitive. If they are explicitely +;; LEFT, RIGHT, MID and BIG primitive. If they are explicitly ;; present, they are exported as a regular-sized character. ("" "<") diff --git a/src/TeXmacs/langs/encoding/tmuniversaltounicode.scm b/src/TeXmacs/langs/encoding/tmuniversaltounicode.scm index 2ad851b7..e1ba1f85 100644 --- a/src/TeXmacs/langs/encoding/tmuniversaltounicode.scm +++ b/src/TeXmacs/langs/encoding/tmuniversaltounicode.scm @@ -18,7 +18,7 @@ ;; General Remark about Unicode symbols ;; -;; Most Unicode symbols are intentionnaly defined as shape-based +;; Most Unicode symbols are intentionally defined as shape-based ;; instead of meaning based. For example U+22C8 (bowtie) maps to ;; symbol and U+2A1D (join, large bowtie) maps to symbol ;; because is the small variant of . diff --git a/src/TeXmacs/progs/dynamic/scripts-edit.scm b/src/TeXmacs/progs/dynamic/scripts-edit.scm index 484ef3a9..f3f34e14 100644 --- a/src/TeXmacs/progs/dynamic/scripts-edit.scm +++ b/src/TeXmacs/progs/dynamic/scripts-edit.scm @@ -55,7 +55,7 @@ (tm-in? t '(script-eval script-result script-approx))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; In place asynchroneous plug-in evaluations +;; In place asynchronous plug-in evaluations ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (tm-define (script-feed lan ses in out opts) diff --git a/src/TeXmacs/progs/dynamic/session-edit.scm b/src/TeXmacs/progs/dynamic/session-edit.scm index 4bd9d327..61c73219 100644 --- a/src/TeXmacs/progs/dynamic/session-edit.scm +++ b/src/TeXmacs/progs/dynamic/session-edit.scm @@ -60,7 +60,7 @@ session-scheme-math) (tm-define (toggle-session-scheme-math) - (:synopsis "Toggle pretty tree output in scheme sessions.") + (:synopsis "Toggle pretty math output in scheme sessions.") (:check-mark "v" session-scheme-math?) (set! session-scheme-math (not session-scheme-math))) diff --git a/src/TeXmacs/progs/kernel/library/tree.scm b/src/TeXmacs/progs/kernel/library/tree.scm index 0cedf007..5fe35b14 100644 --- a/src/TeXmacs/progs/kernel/library/tree.scm +++ b/src/TeXmacs/progs/kernel/library/tree.scm @@ -69,7 +69,7 @@ (and (pair? p) (cAr p)))) (define-public (tree-down-index t) - "Get the number the child where the cursor is." + "Get the number of the child where the cursor is." (let ((p (tree->path t)) (q (cDr (cursor-path)))) (and (list-starts? (cDr q) p) diff --git a/src/TeXmacs/progs/text/text-kbd.scm b/src/TeXmacs/progs/text/text-kbd.scm index db3c47c5..f55a6139 100644 --- a/src/TeXmacs/progs/text/text-kbd.scm +++ b/src/TeXmacs/progs/text/text-kbd.scm @@ -106,7 +106,7 @@ ("accent:acute E" "É") ("accent:acute I" "Í") ("accent:acute L" "ˆ") - ("accent:acute N" "Œ") + ("accent:acute N" "‹") ("accent:acute O" "Ó") ("accent:acute R" "�") ("accent:acute S" "‘") @@ -118,7 +118,7 @@ ("accent:acute e" "é") ("accent:acute i" "í") ("accent:acute l" "¨") - ("accent:acute n" "¬") + ("accent:acute n" "«") ("accent:acute o" "ó") ("accent:acute r" "¯") ("accent:acute s" "±") -- 2.11.4.GIT