The patch titled kernel-doc: don't use XML escapes in text or man output mode has been removed from the -mm tree. Its filename is kernel-doc-dont-use-xml-escapes-in-text-or-man-output.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: kernel-doc: don't use XML escapes in text or man output mode From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> For kernel-doc output modes of text and man, do not use XML escapes for less-than, greater-than, and ampersand characters. I.e., leave the text and man output clean and readable. Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- scripts/kernel-doc | 3 +++ 1 file changed, 3 insertions(+) diff -puN scripts/kernel-doc~kernel-doc-dont-use-xml-escapes-in-text-or-man-output scripts/kernel-doc --- a/scripts/kernel-doc~kernel-doc-dont-use-xml-escapes-in-text-or-man-output +++ a/scripts/kernel-doc @@ -1674,6 +1674,9 @@ sub process_state3_type($$) { # replace <, >, and & sub xml_escape($) { my $text = shift; + if (($output_mode eq "text") || ($output_mode eq "man")) { + return $text; + } $text =~ s/\&/\\\\\\amp;/g; $text =~ s/\</\\\\\\lt;/g; $text =~ s/\>/\\\\\\gt;/g; _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxx are origin.patch git-kbuild.patch git-pcmcia.patch lpfc-sparse-null-warnings.patch aic7-cleanup-module_parm_desc-strings.patch qla1280-fix-section-mismatch-warnings.patch areca-raid-linux-scsi-driver.patch git-watchdog.patch add-poisonh-and-patch-primary-users.patch update-2-drivers-for-poisonh.patch poison-add-use-more-constants.patch pi-futex-rt-mutex-docs-update.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html