aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2020-12-25 10:36:48 -0800
committerGlenn Morris2020-12-25 10:36:48 -0800
commit90ec81f5b243b6b7b3ebe2de394b20e8078ebc96 (patch)
tree2ab6edb67d2b73c27684399166765257e242d7c8
parent47799cc02b887c82ac386391fcf6c522f13943d0 (diff)
parentb242bbb073b501f7a4d4569c2d70cde522abbea3 (diff)
downloademacs-90ec81f5b243b6b7b3ebe2de394b20e8078ebc96.tar.gz
emacs-90ec81f5b243b6b7b3ebe2de394b20e8078ebc96.zip
Merge from origin/emacs-27
b242bbb073 (origin/emacs-27) ; lisp/org/org.el: Fix Version header. e0fc939c5f Add more details to the "word processor" section fda9b3e83a * src/Makefile.in (DO_CODESIGN): Fix expected architecture...
-rw-r--r--etc/TODO30
-rw-r--r--lisp/org/org.el2
-rw-r--r--src/Makefile.in2
3 files changed, 32 insertions, 2 deletions
diff --git a/etc/TODO b/etc/TODO
index 08f851076cf..2a9fd8869e0 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -242,6 +242,36 @@ https://lists.gnu.org/r/emacs-devel/2013-11/msg00515.html
242 processing. That is why we added text properties and variable 242 processing. That is why we added text properties and variable
243 width fonts. However, more features are still needed to achieve this. 243 width fonts. However, more features are still needed to achieve this.
244 244
245Specifically, a major mode with the following features and abilities
246should be added to Emacs:
247
248 . import / export MS Office documents
249 . import / export Open Document Format (.odt) files
250 . import / export RTF files
251 . export to a PDF file
252 . select a font and its size
253 . apply a bold / italic / underline / strikethrough effect
254 . superscripts / subscripts
255 . apply a left / center / right / justified effect
256 . change the font color and the background color
257 . pixel-level text fill, justification, and indentation (so that
258 variable-pitch fonts could be freely used)
259 . create a list
260 . insert and change a table
261 . insert a picture
262 . define / use / modify styles
263 . print preview / print, in a way that is similar to what's on screen
264 (e.g., wrt the place where lines wrap)
265 . use footnotes
266 . support for "track changes" markings, including those which come
267 from Office documents
268 . multiple columns
269 . change page headers and footers
270 . save all the properties and settings mentioned above with the text
271 to a file, so that they are restored when later visiting that file
272
273The existing Enriched mode can be used as a starting point.
274
245** Support ligatures out of the box 275** Support ligatures out of the box
246For the list of frequently-used typographical ligatures, see 276For the list of frequently-used typographical ligatures, see
247 277
diff --git a/lisp/org/org.el b/lisp/org/org.el
index 0d7c6c87fdc..0473caef9bc 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -8,7 +8,7 @@
8;; Keywords: outlines, hypermedia, calendar, wp 8;; Keywords: outlines, hypermedia, calendar, wp
9;; Homepage: https://orgmode.org 9;; Homepage: https://orgmode.org
10 10
11;; Version: 9.4.3 11;; Version: 9.4.4
12 12
13;; This file is part of GNU Emacs. 13;; This file is part of GNU Emacs.
14;; 14;;
diff --git a/src/Makefile.in b/src/Makefile.in
index 39c0f12fe6c..19304cca040 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -338,7 +338,7 @@ HAVE_PDUMPER = @HAVE_PDUMPER@
338 338
339## ARM Macs require that all code have a valid signature. Since pump 339## ARM Macs require that all code have a valid signature. Since pump
340## invalidates the signature, we must re-sign to fix it. 340## invalidates the signature, we must re-sign to fix it.
341DO_CODESIGN=$(patsubst aarch64-apple-darwin%,yes,@configuration@) 341DO_CODESIGN=$(patsubst arm-apple-darwin%,yes,@configuration@)
342 342
343# 'make' verbosity. 343# 'make' verbosity.
344AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ 344AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@