(require 'menu-bar)
(require 'fontset)
(require 'dnd)
-(require 'ucs-normalize)
(defgroup ns nil
"GNUstep/Mac OS X specific features."
(setq ns-working-overlay nil))
-;; OS X file system Unicode UTF-8 NFD (decomposed form) support.
-(when (eq system-type 'darwin)
- ;; Used prior to Emacs 25.
- (define-coding-system-alias 'utf-8-nfd 'utf-8-hfs)
+(declare-function ns-convert-utf8-nfd-to-nfc "nsfns.m" (str))
- (set-file-name-coding-system 'utf-8-hfs))
+;;;; OS X file system Unicode UTF-8 NFD (decomposed form) support
+;; Lisp code based on utf-8m.el, by Seiji Zenitani, Eiji Honjoh, and
+;; Carsten Bormann.
+(when (eq system-type 'darwin)
+ (defun ns-utf8-nfd-post-read-conversion (length)
+ "Calls `ns-convert-utf8-nfd-to-nfc' to compose char sequences."
+ (save-excursion
+ (save-restriction
+ (narrow-to-region (point) (+ (point) length))
+ (let ((str (buffer-string)))
+ (delete-region (point-min) (point-max))
+ (insert (ns-convert-utf8-nfd-to-nfc str))
+ (- (point-max) (point-min))))))
+
+ (define-coding-system 'utf-8-nfd
+ "UTF-8 NFD (decomposed) encoding."
+ :coding-type 'utf-8
+ :mnemonic ?U
+ :charset-list '(unicode)
+ :post-read-conversion 'ns-utf8-nfd-post-read-conversion)
+ (set-file-name-coding-system 'utf-8-nfd))
;;;; Inter-app communications support.
}
+DEFUN ("ns-convert-utf8-nfd-to-nfc", Fns_convert_utf8_nfd_to_nfc,
+ Sns_convert_utf8_nfd_to_nfc, 1, 1, 0,
+ doc: /* Return an NFC string that matches the UTF-8 NFD string STR. */)
+ (Lisp_Object str)
+{
+/* TODO: If GNUstep ever implements precomposedStringWithCanonicalMapping,
+ remove this. */
+ NSString *utfStr;
+ Lisp_Object ret = Qnil;
+ NSAutoreleasePool *pool;
+
+ CHECK_STRING (str);
+ pool = [[NSAutoreleasePool alloc] init];
+ utfStr = [NSString stringWithUTF8String: SSDATA (str)];
+#ifdef NS_IMPL_COCOA
+ if (utfStr)
+ utfStr = [utfStr precomposedStringWithCanonicalMapping];
+#endif
+ if (utfStr)
+ {
+ const char *cstr = [utfStr UTF8String];
+ if (cstr)
+ ret = build_string (cstr);
+ }
+
+ [pool release];
+ if (NILP (ret))
+ error ("Invalid UTF-8");
+
+ return ret;
+}
+
+
#ifdef NS_IMPL_COCOA
/* Compile and execute the AppleScript SCRIPT and return the error
defsubr (&Sns_emacs_info_panel);
defsubr (&Sns_list_services);
defsubr (&Sns_perform_service);
+ defsubr (&Sns_convert_utf8_nfd_to_nfc);
defsubr (&Sns_popup_font_panel);
defsubr (&Sns_popup_color_panel);