From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Jan D." Newsgroups: gmane.emacs.bugs Subject: bug#20537: 25.0.50; `compose-string-internal` does not work properly on OSX. Date: Sun, 10 May 2015 19:34:01 +0200 Message-ID: <53AB0F03-E66D-4082-98D9-720B2B6E2213@swipnet.se> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1431279326 17733 80.91.229.3 (10 May 2015 17:35:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 10 May 2015 17:35:26 +0000 (UTC) Cc: 20537-done@debbugs.gnu.org To: Keith David Bershatsky Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sun May 10 19:35:16 2015 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YrV8E-0005RJ-4H for geb-bug-gnu-emacs@m.gmane.org; Sun, 10 May 2015 19:35:14 +0200 Original-Received: from localhost ([::1]:34161 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YrV8D-0003K1-Kg for geb-bug-gnu-emacs@m.gmane.org; Sun, 10 May 2015 13:35:13 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:55237) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YrV89-0003HX-1s for bug-gnu-emacs@gnu.org; Sun, 10 May 2015 13:35:10 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YrV83-00085D-Re for bug-gnu-emacs@gnu.org; Sun, 10 May 2015 13:35:09 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:58483) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YrV83-00084k-Od for bug-gnu-emacs@gnu.org; Sun, 10 May 2015 13:35:03 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1YrV83-0006Pb-BW for bug-gnu-emacs@gnu.org; Sun, 10 May 2015 13:35:03 -0400 Resent-From: "Jan D." Original-Sender: "Debbugs-submit" Resent-To: bug-gnu-emacs@gnu.org Resent-Date: Sun, 10 May 2015 17:35:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 20537 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Mail-Followup-To: 20537@debbugs.gnu.org, jan.h.d@swipnet.se, esq@lawlist.com Original-Received: via spool by 20537-done@debbugs.gnu.org id=D20537.143127925924586 (code D ref 20537); Sun, 10 May 2015 17:35:02 +0000 Original-Received: (at 20537-done) by debbugs.gnu.org; 10 May 2015 17:34:19 +0000 Original-Received: from localhost ([127.0.0.1]:40223 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YrV7G-0006ON-RF for submit@debbugs.gnu.org; Sun, 10 May 2015 13:34:18 -0400 Original-Received: from mailfe07.swip.net ([212.247.154.193]:35667 helo=swip.net) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YrV7D-0006O8-C1 for 20537-done@debbugs.gnu.org; Sun, 10 May 2015 13:34:13 -0400 X-T2-Spam-Status: No, hits=-1.9 required=5.0 tests=BAYES_00 Original-Received: from hosdjarv.se (account mj138573@tele2.se [46.59.42.57] verified) by mailfe07.swip.net (CommuniGate Pro SMTP 5.4.4) with ESMTPA id 593951251; Sun, 10 May 2015 19:34:02 +0200 In-Reply-To: X-Mailer: Apple Mail (2.2098) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:102638 Archived-At: Fixed in trunk. Jan D. > 9 maj 2015 kl. 20:27 skrev Keith David Bershatsky : >=20 > The function `compose-string-internal` does not work properly when = running Emacs built on OSX. The following example works on Windows, but = not OSX -- it "should be" the letter A with a pipe running through the = center of the letter A. Depending upon the arguments passed to = `compose-string-internal` when using Emacs on OSX, the pipe is either = displayed to the right (at various distances) or is not visible at all = -- it never displays "on top of" the target character. >=20 > (defun test-fn () > (interactive) > (message (compose-string-internal "A|" 0 (length "A|")))) >=20 > And here is another version of the same concept using `compose-chars`, = which uses `compose-string-internal`. >=20 > (defun test-fn () > (interactive) > (message (compose-chars (string-to-char "A") '(tc . tc) = (string-to-char "|")))) >=20 > Thanks, >=20 > Keith >=20 > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; >=20 > In GNU Emacs 25.0.50.1 (x86_64-apple-darwin10.8.0, NS appkit-1038.36 = Version 10.6.8 (Build 10K549)) > of 2014-10-01 on MP.local > Repository revision: 117996 = dmantipov@yandex.ru-20141001132108-zdsxru2390mqyjlu > Windowing system distributor `Apple', version 10.3.1038 > Configured using: > `configure --with-ns' >=20 > Configured features: > ACL LIBXML2 ZLIB >=20 > Important settings: > locale-coding-system: utf-8-unix >=20 > Major mode: FM >=20 > Minor modes in effect: > tb-mode: t > sb-mode: t > ml-mode: t > ds-mode: t > sd-mode: t > cm-mode: t > bc-mode: t >=20 > Recent input: > =20 > s-c C-g x r e p o r t -=20 > e m a c s >=20 > Recent messages: > Wrote /Users/HOME/.0.data/.0.emacs/.lock > Emacs: (global-set-key [f5] 'test-fn) >=20 > (defun tes . . . > *beep* > ESC C-g is undefined >=20 > Load-path shadows: > None found. >=20 > Features: > (shadow emacsbug sendmail lawlist-ztree lawlist-yas lawlist-ws > lawlist-wl elmo-imap4 elmo-localdir modb-standard modb-legacy > elmo-internal elmo-flag mmelmo-imap mmelmo-buffer elsp-generic > disp-table enriched ps-print ps-def lpr parse-time lawlist-w3m > browse-url doc-view ccl lawlist-window lawlist-vl lawlist-undo > lawlist-txt lawlist-tm lawlist-tex skeleton compare-w lawlist-tabbar > lawlist-sb lawlist-ruler mule-util lawlist-replace lawlist-re-builder > lawlist-print lawlist-parens lawlist-org lawlist-calendar org > org-macro org-footnote org-pcomplete org-list org-faces org-entities > noutline outline org-version ob-emacs-lisp ob ob-tangle org-src ob-ref > ob-lob ob-table ob-keys ob-exp ob-comint ob-core ob-eval org-compat > org-macs org-loaddefs holidays hol-loaddefs cal-menu calendar > cal-loaddefs lawlist-movement lawlist-ml lawlist-misc lawlist-mc rect > lawlist-lorem lawlist-ln lawlist-keymap lawlist-jit-lock > lawlist-ispell lawlist-isearch help-macro lawlist-hl lawlist-help-fns > lawlist-help lawlist-grep lawlist-git ido view vc-git vc vc-dispatcher > url-http tls url url-proxy url-privacy url-expand url-methods > url-history mailcap url-auth url-cookie url-domsuf url-gw thingatpt > time-stamp log-view log-edit message mml mml-sec mm-decode mm-bodies > mm-encode gmm-utils mailheader pcvs-util add-log json grep compile > find-lisp epa epg epg-config ediff-merg ediff-wind ediff-diff > ediff-mult ediff-help ediff-init ediff-util ediff ert find-func ewoc > debug eieio-base diff-mode conf-mode autorevert filenotify > lawlist-frame lawlist-frame-bufs lawlist-font-lock lawlist-fm > lawlist-find-func lawlist-files-tramp zeroconf url-util url-parse > url-vars dbus xml dired lawlist-elscreen lawlist-elisp lawlist-dv > jka-compr image-mode lawlist-ds lawlist-dired tramp-sh tramp > tramp-compat auth-source eieio byte-opt bytecomp byte-compile cconv > eieio-core password-cache tramp-loaddefs trampver format-spec > lawlist-desktop frameset lawlist-descr-text lawlist-help-mode quail > help-mode lawlist-compile rx lawlist-colors lawlist-cm pcase > lawlist-calc easymenu lawlist-button lawlist-bk derived edmacro kmacro > lawlist-bc lawlist-bbdb gnus gnus-ems nnheader gnus-util mail-utils > wid-edit mail-parse rfc2231 rfc2047 rfc2045 ietf-drums mm-util > mail-prsvr mailabbrev cl-macs mail-extr rfc822 cl cl-loaddefs cl-lib > timezone lawlist-as lawlist-arc lawlist-+ easy-mmode savehist shell > pcomplete comint ansi-color ring saveplace advice help-fns server gv > time-date tooltip electric uniquify ediff-hook vc-hooks > lisp-float-type mwheel ns-win tool-bar dnd fontset image regexp-opt > fringe tabulated-list newcomment elisp-mode lisp-mode prog-mode > register page menu-bar rfn-eshadow timer select scroll-bar mouse > jit-lock font-lock syntax facemenu font-core frame cham georgian > utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean > japanese hebrew greek romanian slovak czech european ethiopic indian > cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev > minibuffer nadvice loaddefs button faces cus-face macroexp files > text-properties overlay sha1 md5 base64 format env code-pages mule > custom widget hashtable-print-readable backquote make-network-process > cocoa ns multi-tty emacs) >=20 > Memory information: > ((conses 16 1392036 113091) > (symbols 48 65272 0) > (miscs 40 103 152) > (strings 32 144125 15463) > (string-bytes 1 5147780) > (vectors 16 33975) > (vector-slots 8 890440 30007) > (floats 8 1484 154) > (intervals 56 253 0) > (buffers 976 11)) >=20 >=20