Skip to content

Commit b25cfbd

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 9582910 + 2f52904 commit b25cfbd

File tree

4 files changed

+30
-8
lines changed

4 files changed

+30
-8
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ computer. To do this you will need:
7474
- Rakudo (the Rakudo Perl 6 implementation)
7575
- Panda (the installer for third party Perl 6 modules)
7676
- `Pod::To::HTML` (Perl 6 module for converting Pod objects to HTML)
77+
- [graphviz](http://www.graphviz.org/)
7778
- Mojolicious (optional; a Perl 5 web framework; it allows you to run a web
7879
app locally to display the docs)
7980
- pygmentize (optional; a program to add syntax highlighting to code
@@ -113,7 +114,7 @@ Exit the REPL by pressing `Ctrl-d` or typing `exit` at the prompt.
113114

114115
After `rakudobrew` is installed, installing `panda` is very easy:
115116

116-
$ rakudobrew build-panda
117+
$ rakudobrew build panda
117118

118119
Now the `panda` command should be available.
119120

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ To build the documentation web pages, simply run
2525

2626
$ make html
2727

28+
In addition to the Perl 6 dependencies, you need to have `graphviz` installed.
29+
2830
After the pages have been generated, you can view them on your local
2931
computer by starting the included `app.pl` program:
3032

doc/Language/unicode_entry.pod

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,19 +60,36 @@ characters|http://vim.wikia.com/wiki/Entering_special_characters>.
6060
=head2 Emacs
6161
6262
In L<Emacs|http://www.gnu.org/software/emacs/>, unicode characters are
63-
entered by first entering the chord C<Ctrl-x 8 Enter> at which point the
64-
text C<Unicode (name or hex):> appears in the mode line. One then enters
63+
entered by first entering the chord C<C-x 8 RET> at which point the
64+
text C<Unicode (name or hex):> appears in the minibuffer. One then enters
6565
the unicode code point hexadecimal number followed by the enter key. The
6666
unicode character will now appear in the document. Thus, to enter the Greek
67-
letter λ (lambda), one uses the following key combination (whitespace has
68-
been added between the commands for clarity):
67+
letter λ (lambda), one uses the following key combination:
6968
70-
Ctrl-x 8 Enter 3bb Enter
69+
C-x 8 RET 3bb RET
7170
7271
Further information about unicode and its entry into Emacs can be found on
7372
the L<Unicode Encoding Emacs wiki
7473
page|http://www.emacswiki.org/emacs/UnicodeEncoding>.
7574
75+
You can also use L<RFC 1345|https://tools.ietf.org/html/rfc1345> character
76+
mnemonics by typing:
77+
78+
C-x RET C-\ rfc1345 RET
79+
80+
Or C<C-u C-\ rfc1345 RET>.
81+
82+
To type special characters, type C<&> followed by a mnemonic.
83+
Emacs will show the possible characters in the echo area.
84+
For example, Greek letter λ (lambda) can be entered by typing:
85+
86+
&l*
87+
88+
You can use C<C-\> to toggle L<input method|https://www.gnu.org/software/
89+
emacs/manual/html_node/emacs/Select-Input-Method.html>.
90+
91+
L<List of unicode characters and their mnemonics|http://quae.nl/rfc1345.html>
92+
7693
=head2 Unix shell
7794
7895
At the bash shell, one enters unicode characters by using entering

doc/Language/unicode_texas.pod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ if it is different from C<6.c>.
2424
2525
≅ U+2245 =~=
2626
27-
π U+03C0 pi
27+
π U+03C0 pi 3.14159_26535_89793_238e0
2828
29-
τ U+03C4 tau
29+
τ U+03C4 tau 6.28318_53071_79586_476e0
30+
31+
𝑒 U+1D452 e 2.71828_18284_59045_235e0
3032
3133
∞ U+221E Inf
3234

0 commit comments

Comments
 (0)